public enum BoxSignRequestSignatureColor extends Enum<BoxSignRequestSignatureColor>
Enum Constant and Description |
---|
Black
Black signature color.
|
Blue
Blue signature color.
|
Red
Red signature color.
|
Modifier and Type | Method and Description |
---|---|
static BoxSignRequestSignatureColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxSignRequestSignatureColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxSignRequestSignatureColor Blue
public static final BoxSignRequestSignatureColor Black
public static final BoxSignRequestSignatureColor Red
public static BoxSignRequestSignatureColor[] values()
for (BoxSignRequestSignatureColor c : BoxSignRequestSignatureColor.values()) System.out.println(c);
public static BoxSignRequestSignatureColor 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 null