public enum CityGMLModuleType extends java.lang.Enum<CityGMLModuleType> implements ModuleType
Enum Constant and Description |
---|
APPEARANCE |
BRIDGE |
BUILDING |
CITY_FURNITURE |
CITY_OBJECT_GROUP |
CORE |
GENERICS |
LAND_USE |
RELIEF |
TEXTURED_SURFACE |
TRANSPORTATION |
TUNNEL |
VEGETATION |
WATER_BODY |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static CityGMLModuleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CityGMLModuleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CityGMLModuleType CORE
public static final CityGMLModuleType APPEARANCE
public static final CityGMLModuleType BRIDGE
public static final CityGMLModuleType BUILDING
public static final CityGMLModuleType CITY_FURNITURE
public static final CityGMLModuleType CITY_OBJECT_GROUP
public static final CityGMLModuleType GENERICS
public static final CityGMLModuleType LAND_USE
public static final CityGMLModuleType RELIEF
public static final CityGMLModuleType TRANSPORTATION
public static final CityGMLModuleType TUNNEL
public static final CityGMLModuleType VEGETATION
public static final CityGMLModuleType WATER_BODY
public static final CityGMLModuleType TEXTURED_SURFACE
public static CityGMLModuleType[] values()
for (CityGMLModuleType c : CityGMLModuleType.values()) System.out.println(c);
public static CityGMLModuleType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<CityGMLModuleType>