Enum PathElementType
- java.lang.Object
-
- java.lang.Enum<PathElementType>
-
- org.citydb.database.schema.mapping.PathElementType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PathElementType>
public enum PathElementType extends java.lang.Enum<PathElementType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLEX_ATTRIBUTE
COMPLEX_PROPERTY
COMPLEX_TYPE
FEATURE_PROPERTY
FEATURE_TYPE
GEOMETRY_PROPERTY
IMPLICIT_GEOMETRY_PROPERTY
OBJECT_PROPERTY
OBJECT_TYPE
SIMPLE_ATTRIBUTE
-
Field Summary
Fields Modifier and Type Field Description static java.util.EnumSet<PathElementType>
GEOMETRY_PROPERTIES
static java.util.EnumSet<PathElementType>
OBJECT_TYPES
static java.util.EnumSet<PathElementType>
TYPE_PROPERTIES
static java.util.EnumSet<PathElementType>
TYPES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PathElementType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PathElementType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FEATURE_TYPE
public static final PathElementType FEATURE_TYPE
-
FEATURE_PROPERTY
public static final PathElementType FEATURE_PROPERTY
-
SIMPLE_ATTRIBUTE
public static final PathElementType SIMPLE_ATTRIBUTE
-
COMPLEX_ATTRIBUTE
public static final PathElementType COMPLEX_ATTRIBUTE
-
GEOMETRY_PROPERTY
public static final PathElementType GEOMETRY_PROPERTY
-
COMPLEX_TYPE
public static final PathElementType COMPLEX_TYPE
-
COMPLEX_PROPERTY
public static final PathElementType COMPLEX_PROPERTY
-
OBJECT_TYPE
public static final PathElementType OBJECT_TYPE
-
OBJECT_PROPERTY
public static final PathElementType OBJECT_PROPERTY
-
IMPLICIT_GEOMETRY_PROPERTY
public static final PathElementType IMPLICIT_GEOMETRY_PROPERTY
-
-
Field Detail
-
TYPES
public static final java.util.EnumSet<PathElementType> TYPES
-
OBJECT_TYPES
public static final java.util.EnumSet<PathElementType> OBJECT_TYPES
-
TYPE_PROPERTIES
public static final java.util.EnumSet<PathElementType> TYPE_PROPERTIES
-
GEOMETRY_PROPERTIES
public static final java.util.EnumSet<PathElementType> GEOMETRY_PROPERTIES
-
-
Method Detail
-
values
public static PathElementType[] 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 (PathElementType c : PathElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathElementType 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
-
-