Enum CacheTableModel
- java.lang.Object
-
- java.lang.Enum<CacheTableModel>
-
- org.citydb.citygml.common.cache.model.CacheTableModel
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CacheTableModel>
public enum CacheTableModel extends java.lang.Enum<CacheTableModel>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
value()
static CacheTableModel
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CacheTableModel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OBJECT_GMLID
public static final CacheTableModel OBJECT_GMLID
-
GEOMETRY_GMLID
public static final CacheTableModel GEOMETRY_GMLID
-
SURFACE_GEOMETRY
public static final CacheTableModel SURFACE_GEOMETRY
-
SOLID_GEOMETRY
public static final CacheTableModel SOLID_GEOMETRY
-
BASIC
public static final CacheTableModel BASIC
-
LINEAR_RING
public static final CacheTableModel LINEAR_RING
-
TEXTURE_COORD_LIST
public static final CacheTableModel TEXTURE_COORD_LIST
-
TEXTUREPARAM
public static final CacheTableModel TEXTUREPARAM
-
TEXTUREASSOCIATION
public static final CacheTableModel TEXTUREASSOCIATION
-
TEXTUREASSOCIATION_TARGET
public static final CacheTableModel TEXTUREASSOCIATION_TARGET
-
TEXTURE_FILE_ID
public static final CacheTableModel TEXTURE_FILE_ID
-
TEXTURE_FILE
public static final CacheTableModel TEXTURE_FILE
-
SURFACE_DATA_TO_TEX_IMAGE
public static final CacheTableModel SURFACE_DATA_TO_TEX_IMAGE
-
LIBRARY_OBJECT
public static final CacheTableModel LIBRARY_OBJECT
-
DEPRECATED_MATERIAL
public static final CacheTableModel DEPRECATED_MATERIAL
-
GROUP_TO_CITYOBJECT
public static final CacheTableModel GROUP_TO_CITYOBJECT
-
GLOBAL_APPEARANCE
public static final CacheTableModel GLOBAL_APPEARANCE
-
-
Method Detail
-
values
public static CacheTableModel[] 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 (CacheTableModel c : CacheTableModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheTableModel 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
-
value
public java.lang.String value()
-
-