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>
Groups of base types.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyTypeName.BaseType[]getGroup()Returns the group of base types.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
All base types.
-
BOOLEAN
public static final PropertyTypeName.BaseTypeGroup BOOLEAN
The boolean type.
-
NUMERIC
public static final PropertyTypeName.BaseTypeGroup NUMERIC
Numeric types.
-
STRING
public static final PropertyTypeName.BaseTypeGroup STRING
String types.
-
DATE
public static final PropertyTypeName.BaseTypeGroup DATE
Date types.
-
BITS
public static final PropertyTypeName.BaseTypeGroup BITS
Binary types.
-
COMPLEX
public static final PropertyTypeName.BaseTypeGroup COMPLEX
Complex types.
-
COLLECTION
public static final PropertyTypeName.BaseTypeGroup COLLECTION
Collection types.
-
MAP
public static final PropertyTypeName.BaseTypeGroup MAP
Map types.
-
-
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()
Returns the group of base types.- Returns:
- The group of base types.
-
-