public enum ValueType extends Enum<ValueType>
| Enum Constant and Description | 
|---|
| COLLECTION_COMPLEXCollection of complex values | 
| COLLECTION_ENTITYCollection of entities | 
| COLLECTION_ENUMCollection of enum values | 
| COLLECTION_GEOSPATIALCollection of geospatial values | 
| COLLECTION_PRIMITIVECollection of primitive values | 
| COMPLEXComplex value | 
| ENTITYEntity value | 
| ENUMEnum type | 
| GEOSPATIALGeospatial value | 
| PRIMITIVEPrimitive value | 
| Modifier and Type | Method and Description | 
|---|---|
| ValueType | getBaseType()Get base type for this value type. | 
| static ValueType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ValueType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ValueType PRIMITIVE
public static final ValueType GEOSPATIAL
public static final ValueType ENUM
public static final ValueType COMPLEX
public static final ValueType ENTITY
public static final ValueType COLLECTION_PRIMITIVE
public static final ValueType COLLECTION_GEOSPATIAL
public static final ValueType COLLECTION_ENUM
public static final ValueType COLLECTION_COMPLEX
public static final ValueType COLLECTION_ENTITY
public static ValueType[] values()
for (ValueType c : ValueType.values()) System.out.println(c);
public static ValueType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic ValueType getBaseType()
Copyright © 2013–2023 The Apache Software Foundation. All rights reserved.