public enum ODataPropertyType extends Enum<ODataPropertyType>
Enum Constant and Description |
---|
COLLECTION
Collection.
|
COMPLEX
Complex.
|
EMPTY
Empty type (possibly, no type information could be retrieved).
|
ENUM
Enum.
|
PRIMITIVE
Primitive (including geospatial).
|
Modifier and Type | Method and Description |
---|---|
static ODataPropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ODataPropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ODataPropertyType PRIMITIVE
public static final ODataPropertyType ENUM
public static final ODataPropertyType COLLECTION
public static final ODataPropertyType COMPLEX
public static final ODataPropertyType EMPTY
public static ODataPropertyType[] values()
for (ODataPropertyType c : ODataPropertyType.values()) System.out.println(c);
public static ODataPropertyType 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 nullCopyright © 2013–2015 The Apache Software Foundation. All rights reserved.