Enum ThematicModelType
- java.lang.Object
-
- java.lang.Enum<ThematicModelType>
-
- org.citygml4j.binding.cityjson.metadata.ThematicModelType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ThematicModelType>
public enum ThematicModelType extends java.lang.Enum<ThematicModelType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRIDGE
BUILDING
CITY_FURNITURE
CITY_OBJECT_GROUP
GENERIC_CITY_OBJECT
LAND_USE
PLANT_COVER
RAILWAY
ROAD
SOLITARY_VEGETATION_OBJECT
TIN_RELIEF
TRANSPORT_SQUARE
TUNNEL
WATER_BODY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThematicModelType
fromValue(java.lang.String value)
java.lang.Class<? extends AbstractFeatureDataType>
getMetadataClass()
java.lang.String
getValue()
java.lang.String
toString()
static ThematicModelType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ThematicModelType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUILDING
@SerializedName("Building") public static final ThematicModelType BUILDING
-
ROAD
@SerializedName("Road") public static final ThematicModelType ROAD
-
RAILWAY
@SerializedName("Railway") public static final ThematicModelType RAILWAY
-
TRANSPORT_SQUARE
@SerializedName("TransportSquare") public static final ThematicModelType TRANSPORT_SQUARE
-
TIN_RELIEF
@SerializedName("TINRelief") public static final ThematicModelType TIN_RELIEF
-
WATER_BODY
@SerializedName("WaterBody") public static final ThematicModelType WATER_BODY
-
PLANT_COVER
@SerializedName("PlantCover") public static final ThematicModelType PLANT_COVER
-
SOLITARY_VEGETATION_OBJECT
@SerializedName("SolitaryVegetationObject") public static final ThematicModelType SOLITARY_VEGETATION_OBJECT
-
LAND_USE
@SerializedName("LandUse") public static final ThematicModelType LAND_USE
-
CITY_FURNITURE
@SerializedName("CityFurniture") public static final ThematicModelType CITY_FURNITURE
-
GENERIC_CITY_OBJECT
@SerializedName("GenericCityObject") public static final ThematicModelType GENERIC_CITY_OBJECT
-
BRIDGE
@SerializedName("Bridge") public static final ThematicModelType BRIDGE
-
TUNNEL
@SerializedName("Tunnel") public static final ThematicModelType TUNNEL
-
CITY_OBJECT_GROUP
@SerializedName("CityObjectGroup") public static final ThematicModelType CITY_OBJECT_GROUP
-
-
Method Detail
-
values
public static ThematicModelType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ThematicModelType c : ThematicModelType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThematicModelType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
-
getMetadataClass
public java.lang.Class<? extends AbstractFeatureDataType> getMetadataClass()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<ThematicModelType>
-
fromValue
public static ThematicModelType fromValue(java.lang.String value)
-
-