Package net.webpdf.wsclient.openapi
Enum OperationReplyStateAnnotation.ReplyStateEnum
- java.lang.Object
-
- java.lang.Enum<OperationReplyStateAnnotation.ReplyStateEnum>
-
- net.webpdf.wsclient.openapi.OperationReplyStateAnnotation.ReplyStateEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationReplyStateAnnotation.ReplyStateEnum>
- Enclosing class:
- OperationReplyStateAnnotation
public static enum OperationReplyStateAnnotation.ReplyStateEnum extends Enum<OperationReplyStateAnnotation.ReplyStateEnum>
Adds a mark for further processing suggestions/instructions to a commenting annotation. * accepted = The user agrees with the change. * rejected = The user disagrees with the change. * cancelled = The change has been cancelled. * completed = The change has been completed. * none = The user did not set a state.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationReplyStateAnnotation.ReplyStateEnumfromValue(String value)StringgetValue()StringtoString()static OperationReplyStateAnnotation.ReplyStateEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationReplyStateAnnotation.ReplyStateEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCEPTED
public static final OperationReplyStateAnnotation.ReplyStateEnum ACCEPTED
-
REJECTED
public static final OperationReplyStateAnnotation.ReplyStateEnum REJECTED
-
CANCELLED
public static final OperationReplyStateAnnotation.ReplyStateEnum CANCELLED
-
COMPLETED
public static final OperationReplyStateAnnotation.ReplyStateEnum COMPLETED
-
NONE
public static final OperationReplyStateAnnotation.ReplyStateEnum NONE
-
-
Method Detail
-
values
public static OperationReplyStateAnnotation.ReplyStateEnum[] 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 (OperationReplyStateAnnotation.ReplyStateEnum c : OperationReplyStateAnnotation.ReplyStateEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationReplyStateAnnotation.ReplyStateEnum 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<OperationReplyStateAnnotation.ReplyStateEnum>
-
fromValue
public static OperationReplyStateAnnotation.ReplyStateEnum fromValue(String value)
-
-