org.qi4j.entitystore.map
Enum MapEntityStore.JSONKeys

java.lang.Object
  extended by java.lang.Enum<MapEntityStore.JSONKeys>
      extended by org.qi4j.entitystore.map.MapEntityStore.JSONKeys
All Implemented Interfaces:
Serializable, Comparable<MapEntityStore.JSONKeys>
Enclosing interface:
MapEntityStore

public static enum MapEntityStore.JSONKeys
extends Enum<MapEntityStore.JSONKeys>


Enum Constant Summary
application_version
           
associations
           
identity
           
manyassociations
           
modified
           
properties
           
type
           
version
           
 
Method Summary
static MapEntityStore.JSONKeys valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MapEntityStore.JSONKeys[] 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

identity

public static final MapEntityStore.JSONKeys identity

application_version

public static final MapEntityStore.JSONKeys application_version

type

public static final MapEntityStore.JSONKeys type

version

public static final MapEntityStore.JSONKeys version

modified

public static final MapEntityStore.JSONKeys modified

properties

public static final MapEntityStore.JSONKeys properties

associations

public static final MapEntityStore.JSONKeys associations

manyassociations

public static final MapEntityStore.JSONKeys manyassociations
Method Detail

values

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

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

valueOf

public static MapEntityStore.JSONKeys 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