Enum RubberStampIconType
- java.lang.Object
-
- java.lang.Enum<RubberStampIconType>
-
- net.webpdf.wsclient.schema.operation.RubberStampIconType
-
- All Implemented Interfaces:
Serializable,Comparable<RubberStampIconType>
public enum RubberStampIconType extends Enum<RubberStampIconType>
Java class for RubberStampIconType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RubberStampIconType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="approved"/> <enumeration value="experimental"/> <enumeration value="notApproved"/> <enumeration value="asIs"/> <enumeration value="expired"/> <enumeration value="notForPublicRelease"/> <enumeration value="confidential"/> <enumeration value="final"/> <enumeration value="sold"/> <enumeration value="departmental"/> <enumeration value="forComment"/> <enumeration value="topSecret"/> <enumeration value="draft"/> <enumeration value="forPublicRelease"/> <enumeration value="unnamed"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVEDAS_ISCONFIDENTIALDEPARTMENTALDRAFTEXPERIMENTALEXPIREDFINALFOR_COMMENTFOR_PUBLIC_RELEASENOT_APPROVEDNOT_FOR_PUBLIC_RELEASESOLDTOP_SECRETUNNAMED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RubberStampIconTypefromValue(String v)Stringvalue()static RubberStampIconTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RubberStampIconType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPROVED
public static final RubberStampIconType APPROVED
-
EXPERIMENTAL
public static final RubberStampIconType EXPERIMENTAL
-
NOT_APPROVED
public static final RubberStampIconType NOT_APPROVED
-
AS_IS
public static final RubberStampIconType AS_IS
-
EXPIRED
public static final RubberStampIconType EXPIRED
-
NOT_FOR_PUBLIC_RELEASE
public static final RubberStampIconType NOT_FOR_PUBLIC_RELEASE
-
CONFIDENTIAL
public static final RubberStampIconType CONFIDENTIAL
-
FINAL
public static final RubberStampIconType FINAL
-
SOLD
public static final RubberStampIconType SOLD
-
DEPARTMENTAL
public static final RubberStampIconType DEPARTMENTAL
-
FOR_COMMENT
public static final RubberStampIconType FOR_COMMENT
-
TOP_SECRET
public static final RubberStampIconType TOP_SECRET
-
DRAFT
public static final RubberStampIconType DRAFT
-
FOR_PUBLIC_RELEASE
public static final RubberStampIconType FOR_PUBLIC_RELEASE
-
UNNAMED
public static final RubberStampIconType UNNAMED
-
-
Method Detail
-
values
public static RubberStampIconType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RubberStampIconType c : RubberStampIconType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RubberStampIconType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static RubberStampIconType fromValue(String v)
-
-