public static enum JsonXmlField.Expose extends Enum<JsonXmlField.Expose>
| Enum Constant and Description |
|---|
DEFAULT
Deprecated.
don't need to set it. It's
DEFAULT by default. |
DESERIALIZE_ONLY |
SERIALIZE_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static JsonXmlField.Expose |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonXmlField.Expose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonXmlField.Expose DEFAULT
DEFAULT by default.public static final JsonXmlField.Expose SERIALIZE_ONLY
public static final JsonXmlField.Expose DESERIALIZE_ONLY
public static JsonXmlField.Expose[] values()
for (JsonXmlField.Expose c : JsonXmlField.Expose.values()) System.out.println(c);
public static JsonXmlField.Expose valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.