Package net.webpdf.wsclient.openapi
Enum OperationRubberStampAnnotation.IconEnum
- java.lang.Object
-
- java.lang.Enum<OperationRubberStampAnnotation.IconEnum>
-
- net.webpdf.wsclient.openapi.OperationRubberStampAnnotation.IconEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationRubberStampAnnotation.IconEnum>
- Enclosing class:
- OperationRubberStampAnnotation
public static enum OperationRubberStampAnnotation.IconEnum extends Enum<OperationRubberStampAnnotation.IconEnum>
The known \"named\" icon types for rubberstamp annotations: * approved = A stamp that marks the stamped context as approved. * experimental = A stamp that marks the stamped content to be an experimental state. * notApproved = A stamp that disapproves the stamped context. * asIs = A stamp that marks the content as is. * expired = A stamp that marks the contained information as no longer valid. * notForPublicRelease = A stamp that marks something as information for internal use only. * confidential = A stamp marking the page as confidential. * final = A stamp that indicates, that the current state of the document is final. * sold = A stamp that indicates the marked contents to be sold and no longer available. * departmental = A stamp that forbids information to be shared to recipient outside of a given department. * forComment = Marks the stamped context as a comment. * topSecret = Marks the stamped content not to be shared publicly. * draft = A stamp marking the content to be a draft and therefore a work in progress. * forPublicRelease = Marks the content for public sharing. * unnamed = The rubberstamp shall not provide a predefined name.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVEDASISCONFIDENTIALDEPARTMENTALDRAFTEXPERIMENTALEXPIREDFINALFORCOMMENTFORPUBLICRELEASENOTAPPROVEDNOTFORPUBLICRELEASESOLDTOPSECRETUNNAMED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationRubberStampAnnotation.IconEnumfromValue(String value)StringgetValue()StringtoString()static OperationRubberStampAnnotation.IconEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationRubberStampAnnotation.IconEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPROVED
public static final OperationRubberStampAnnotation.IconEnum APPROVED
-
EXPERIMENTAL
public static final OperationRubberStampAnnotation.IconEnum EXPERIMENTAL
-
NOTAPPROVED
public static final OperationRubberStampAnnotation.IconEnum NOTAPPROVED
-
ASIS
public static final OperationRubberStampAnnotation.IconEnum ASIS
-
EXPIRED
public static final OperationRubberStampAnnotation.IconEnum EXPIRED
-
NOTFORPUBLICRELEASE
public static final OperationRubberStampAnnotation.IconEnum NOTFORPUBLICRELEASE
-
CONFIDENTIAL
public static final OperationRubberStampAnnotation.IconEnum CONFIDENTIAL
-
FINAL
public static final OperationRubberStampAnnotation.IconEnum FINAL
-
SOLD
public static final OperationRubberStampAnnotation.IconEnum SOLD
-
DEPARTMENTAL
public static final OperationRubberStampAnnotation.IconEnum DEPARTMENTAL
-
FORCOMMENT
public static final OperationRubberStampAnnotation.IconEnum FORCOMMENT
-
TOPSECRET
public static final OperationRubberStampAnnotation.IconEnum TOPSECRET
-
DRAFT
public static final OperationRubberStampAnnotation.IconEnum DRAFT
-
FORPUBLICRELEASE
public static final OperationRubberStampAnnotation.IconEnum FORPUBLICRELEASE
-
UNNAMED
public static final OperationRubberStampAnnotation.IconEnum UNNAMED
-
-
Method Detail
-
values
public static OperationRubberStampAnnotation.IconEnum[] 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 (OperationRubberStampAnnotation.IconEnum c : OperationRubberStampAnnotation.IconEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationRubberStampAnnotation.IconEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationRubberStampAnnotation.IconEnum>
-
fromValue
public static OperationRubberStampAnnotation.IconEnum fromValue(String value)
-
-