|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<JSONCircularReferenceMode>
com.smartgwt.client.types.JSONCircularReferenceMode
public enum JSONCircularReferenceMode
What the JSONEncoder
should do when it encounters a circular reference in an object structure.
Enum Constant Summary | |
---|---|
MARKER
leave a string marker, the JSONEncoder.setCircularReferenceMarker(java.lang.String) , wherever a circular
reference is found |
|
OMIT
circular references in Arrays will be represented as a null entry, and objects will have a property with a null value |
|
PATH
leave a string marker followed by the path to the first occurrence of the circular reference from the top of the object tree that was serialized. |
Method Summary | |
---|---|
String |
getValue()
|
static JSONCircularReferenceMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JSONCircularReferenceMode[] |
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 JSONCircularReferenceMode OMIT
public static final JSONCircularReferenceMode MARKER
JSONEncoder.setCircularReferenceMarker(java.lang.String)
, wherever a circular
reference is found
public static final JSONCircularReferenceMode PATH
Method Detail |
---|
public static JSONCircularReferenceMode[] values()
for (JSONCircularReferenceMode c : JSONCircularReferenceMode.values()) System.out.println(c);
public static JSONCircularReferenceMode 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 String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |