|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SerializationContext>
org.kuali.rice.krad.data.provider.annotation.SerializationContext
public enum SerializationContext
Defines different context(s) for serialization in Rice.
Enum Constant Summary | |
---|---|
ALL
Matches all the other contexts defined in SerializationContext . |
|
MAINTENANCE
The context for serializing within the maintenance document framework. |
Method Summary | |
---|---|
boolean |
matches(SerializationContext[] serializationContexts)
Does the given array of serializationContexts match this one? |
static SerializationContext |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SerializationContext[] |
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 |
---|
public static final SerializationContext ALL
SerializationContext
.
public static final SerializationContext MAINTENANCE
Method Detail |
---|
public static SerializationContext[] values()
for (SerializationContext c : SerializationContext.values()) System.out.println(c);
public static SerializationContext valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic boolean matches(SerializationContext[] serializationContexts)
Either an exact match, or SerializationContext.ALL will suffice
serializationContexts
- the serializationContexts to test against
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |