org.odata4j.edm
Enum EdmProperty.CollectionKind

java.lang.Object
  extended by java.lang.Enum<EdmProperty.CollectionKind>
      extended by org.odata4j.edm.EdmProperty.CollectionKind
All Implemented Interfaces:
Serializable, Comparable<EdmProperty.CollectionKind>
Enclosing class:
EdmProperty

public static enum EdmProperty.CollectionKind
extends Enum<EdmProperty.CollectionKind>

Kind of collection: List, Bag, or Collection


Enum Constant Summary
Bag
           
Collection
           
List
           
NONE
           
 
Method Summary
static EdmProperty.CollectionKind valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EdmProperty.CollectionKind[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Bag

public static final EdmProperty.CollectionKind Bag

Collection

public static final EdmProperty.CollectionKind Collection

List

public static final EdmProperty.CollectionKind List

NONE

public static final EdmProperty.CollectionKind NONE
Method Detail

valueOf

public static EdmProperty.CollectionKind 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 name
NullPointerException - if the argument is null

values

public static EdmProperty.CollectionKind[] 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 (EdmProperty.CollectionKind c : EdmProperty.CollectionKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared


http://odata4j.org