public enum AuthorizationType extends java.lang.Enum<AuthorizationType>
| Enum Constant and Description |
|---|
ESTIMATED |
FINAL |
INCREMENTAL |
| Modifier and Type | Method and Description |
|---|---|
static AuthorizationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Final") public static final AuthorizationType FINAL
@SerializedName(value="Estimated") public static final AuthorizationType ESTIMATED
@SerializedName(value="Incremental") public static final AuthorizationType INCREMENTAL
public static AuthorizationType[] values()
for (AuthorizationType c : AuthorizationType.values()) System.out.println(c);
public static AuthorizationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null