Package net.webpdf.wsclient.openapi
Enum MetadataReplyStateRelation.StateEnum
- java.lang.Object
-
- java.lang.Enum<MetadataReplyStateRelation.StateEnum>
-
- net.webpdf.wsclient.openapi.MetadataReplyStateRelation.StateEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataReplyStateRelation.StateEnum>
- Enclosing class:
- MetadataReplyStateRelation
public static enum MetadataReplyStateRelation.StateEnum extends Enum<MetadataReplyStateRelation.StateEnum>
The set reply state of a commented 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 MetadataReplyStateRelation.StateEnumfromValue(String value)StringgetValue()StringtoString()static MetadataReplyStateRelation.StateEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataReplyStateRelation.StateEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCEPTED
public static final MetadataReplyStateRelation.StateEnum ACCEPTED
-
REJECTED
public static final MetadataReplyStateRelation.StateEnum REJECTED
-
CANCELLED
public static final MetadataReplyStateRelation.StateEnum CANCELLED
-
COMPLETED
public static final MetadataReplyStateRelation.StateEnum COMPLETED
-
NONE
public static final MetadataReplyStateRelation.StateEnum NONE
-
-
Method Detail
-
values
public static MetadataReplyStateRelation.StateEnum[] 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 (MetadataReplyStateRelation.StateEnum c : MetadataReplyStateRelation.StateEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataReplyStateRelation.StateEnum 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<MetadataReplyStateRelation.StateEnum>
-
fromValue
public static MetadataReplyStateRelation.StateEnum fromValue(String value)
-
-