public static enum CPDFTextWidget.TextFiledSpecial extends java.lang.Enum<CPDFTextWidget.TextFiledSpecial>
Enum Constant and Description |
---|
TextField_Date
Date format
|
TextField_Normal
Text format
|
Modifier and Type | Field and Description |
---|---|
int |
id |
Modifier and Type | Method and Description |
---|---|
static CPDFTextWidget.TextFiledSpecial |
valueOf(int id)
Gets an enumeration of text format according to the id value.
|
static CPDFTextWidget.TextFiledSpecial |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CPDFTextWidget.TextFiledSpecial[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CPDFTextWidget.TextFiledSpecial TextField_Normal
public static final CPDFTextWidget.TextFiledSpecial TextField_Date
public static CPDFTextWidget.TextFiledSpecial[] values()
for (CPDFTextWidget.TextFiledSpecial c : CPDFTextWidget.TextFiledSpecial.values()) System.out.println(c);
public static CPDFTextWidget.TextFiledSpecial 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 CPDFTextWidget.TextFiledSpecial valueOf(int id)
id
- int value for the content format.