Enum PropertyTypeName.BaseTypeGroup
- java.lang.Object
-
- java.lang.Enum<PropertyTypeName.BaseTypeGroup>
-
- org.gcube.informationsystem.types.PropertyTypeName.BaseTypeGroup
-
- All Implemented Interfaces:
Serializable,Comparable<PropertyTypeName.BaseTypeGroup>
- Enclosing class:
- PropertyTypeName
public static enum PropertyTypeName.BaseTypeGroup extends Enum<PropertyTypeName.BaseTypeGroup>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyTypeName.BaseType[]getGroup()static PropertyTypeName.BaseTypeGroupvalueOf(String name)Returns the enum constant of this type with the specified name.static PropertyTypeName.BaseTypeGroup[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final PropertyTypeName.BaseTypeGroup ANY
-
BOOLEAN
public static final PropertyTypeName.BaseTypeGroup BOOLEAN
-
NUMERIC
public static final PropertyTypeName.BaseTypeGroup NUMERIC
-
STRING
public static final PropertyTypeName.BaseTypeGroup STRING
-
DATE
public static final PropertyTypeName.BaseTypeGroup DATE
-
BITS
public static final PropertyTypeName.BaseTypeGroup BITS
-
COMPLEX
public static final PropertyTypeName.BaseTypeGroup COMPLEX
-
COLLECTION
public static final PropertyTypeName.BaseTypeGroup COLLECTION
-
MAP
public static final PropertyTypeName.BaseTypeGroup MAP
-
-
Method Detail
-
values
public static PropertyTypeName.BaseTypeGroup[] 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 (PropertyTypeName.BaseTypeGroup c : PropertyTypeName.BaseTypeGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyTypeName.BaseTypeGroup valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getGroup
public PropertyTypeName.BaseType[] getGroup()
-
-