public static enum CPDFWidget.CheckStyle extends java.lang.Enum<CPDFWidget.CheckStyle>
Enum Constant and Description |
---|
CK_Check
√
|
CK_Circle
Solid circle
|
CK_Cross
×
|
CK_Diamond
Solid diomond
|
CK_Square
Solid square
|
CK_Star
Solid star
|
Modifier and Type | Field and Description |
---|---|
int |
id
int value for the fill type
|
Modifier and Type | Method and Description |
---|---|
static CPDFWidget.CheckStyle |
valueOf(int id)
Gets fill type according to id value.
|
static CPDFWidget.CheckStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CPDFWidget.CheckStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CPDFWidget.CheckStyle CK_Check
public static final CPDFWidget.CheckStyle CK_Circle
public static final CPDFWidget.CheckStyle CK_Cross
public static final CPDFWidget.CheckStyle CK_Diamond
public static final CPDFWidget.CheckStyle CK_Square
public static final CPDFWidget.CheckStyle CK_Star
public static CPDFWidget.CheckStyle[] values()
for (CPDFWidget.CheckStyle c : CPDFWidget.CheckStyle.values()) System.out.println(c);
public static CPDFWidget.CheckStyle 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 nullpublic static CPDFWidget.CheckStyle valueOf(int id)
id
- int value for the fill type.