ObjectDB ObjectDB

javax.jdo.annotations.PersistenceModifier - JDO enum

javax.jdo.annotations
Enum PersistenceModifier

java.lang.Object
    java.lang.Enum<javax.jdo.annotations.PersistenceModifier>
        javax.jdo.annotations.PersistenceModifier
Implemented Interfaces:
Serializable, Comparable<PersistenceModifier>
Enumeration of the persistence-modifier values for a field or property. This corresponds to the "persistence-modifier" attribute of the "field" and "property" elements.
Since:
JDO 2.1
Since:
JDO 2.1

Returns the enum constant of this type with the specified 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.

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Returns an array containing the constants of this enum type.

Returns an array containing the constants of this enum type.

This method may be used to iterate over the constants as follows:

for (PersistenceModifier c : PersistenceModifier.values())
    System.out.println(c)
Returns:
an array containing the constants of this enum type, in the order they are declared