Enum GenericAttributeType
- java.lang.Object
-
- java.lang.Enum<GenericAttributeType>
-
- org.citydb.config.project.query.filter.projection.GenericAttributeType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GenericAttributeType>
public enum GenericAttributeType extends java.lang.Enum<GenericAttributeType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATE_ATTRIBUTE
DOUBLE_ATTRIBUTE
GENERIC_ATTRIBUTE_SET
INT_ATTRIBUTE
MEASURE_ATTRIBUTE
STRING_ATTRIBUTE
URI_ATTRIBUTE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GenericAttributeType
fromValue(java.lang.String v)
org.citygml4j.model.citygml.CityGMLClass
getCityGMLClass()
java.lang.String
value()
static GenericAttributeType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GenericAttributeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING_ATTRIBUTE
public static final GenericAttributeType STRING_ATTRIBUTE
-
INT_ATTRIBUTE
public static final GenericAttributeType INT_ATTRIBUTE
-
DOUBLE_ATTRIBUTE
public static final GenericAttributeType DOUBLE_ATTRIBUTE
-
DATE_ATTRIBUTE
public static final GenericAttributeType DATE_ATTRIBUTE
-
URI_ATTRIBUTE
public static final GenericAttributeType URI_ATTRIBUTE
-
MEASURE_ATTRIBUTE
public static final GenericAttributeType MEASURE_ATTRIBUTE
-
GENERIC_ATTRIBUTE_SET
public static final GenericAttributeType GENERIC_ATTRIBUTE_SET
-
-
Method Detail
-
values
public static GenericAttributeType[] 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 (GenericAttributeType c : GenericAttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GenericAttributeType 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()
-
getCityGMLClass
public org.citygml4j.model.citygml.CityGMLClass getCityGMLClass()
-
fromValue
public static GenericAttributeType fromValue(java.lang.String v)
-
-