public static enum Type.Scope extends Enum<Type.Scope>
| Enum Constant and Description |
|---|
ALL
Used for all scenarios.
|
DB
Used for database column value getter/setter.
|
PARSER
Used for json/xml/...
|
| Modifier and Type | Method and Description |
|---|---|
static Type.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type.Scope PARSER
public static final Type.Scope DB
public static final Type.Scope ALL
public static Type.Scope[] values()
for (Type.Scope c : Type.Scope.values()) System.out.println(c);
public static Type.Scope 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.