- java.lang.Object
-
- java.lang.Enum<Json.Profile>
-
- com.appslandia.common.cdi.Json.Profile
-
- All Implemented Interfaces:
Serializable,Comparable<Json.Profile>
- Enclosing class:
- Json
public static enum Json.Profile extends Enum<Json.Profile>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPACTCOMPACT_NULLPRETTYPRETTY_NULL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Json.ProfilevalueOf(String name)Returns the enum constant of this type with the specified name.static Json.Profile[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPACT
public static final Json.Profile COMPACT
-
COMPACT_NULL
public static final Json.Profile COMPACT_NULL
-
PRETTY
public static final Json.Profile PRETTY
-
PRETTY_NULL
public static final Json.Profile PRETTY_NULL
-
-
Method Detail
-
values
public static Json.Profile[] 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 (Json.Profile c : Json.Profile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Json.Profile 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 nameNullPointerException- if the argument is null
-
-