Package net.webpdf.wsclient.openapi
Enum OperationFreeTextAnnotation.JustificationEnum
- java.lang.Object
-
- java.lang.Enum<OperationFreeTextAnnotation.JustificationEnum>
-
- net.webpdf.wsclient.openapi.OperationFreeTextAnnotation.JustificationEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationFreeTextAnnotation.JustificationEnum>
- Enclosing class:
- OperationFreeTextAnnotation
public static enum OperationFreeTextAnnotation.JustificationEnum extends Enum<OperationFreeTextAnnotation.JustificationEnum>
Selects the horizontal justification/alignment/orientation of elements. * leftJustified = All elements shall be oriented to the left. * centered = All elements shall be placed in the center of the container. * rightJustified = All elements shall be oriented to the right.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CENTEREDLEFTJUSTIFIEDRIGHTJUSTIFIED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationFreeTextAnnotation.JustificationEnumfromValue(String value)StringgetValue()StringtoString()static OperationFreeTextAnnotation.JustificationEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationFreeTextAnnotation.JustificationEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFTJUSTIFIED
public static final OperationFreeTextAnnotation.JustificationEnum LEFTJUSTIFIED
-
CENTERED
public static final OperationFreeTextAnnotation.JustificationEnum CENTERED
-
RIGHTJUSTIFIED
public static final OperationFreeTextAnnotation.JustificationEnum RIGHTJUSTIFIED
-
-
Method Detail
-
values
public static OperationFreeTextAnnotation.JustificationEnum[] 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 (OperationFreeTextAnnotation.JustificationEnum c : OperationFreeTextAnnotation.JustificationEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationFreeTextAnnotation.JustificationEnum 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<OperationFreeTextAnnotation.JustificationEnum>
-
fromValue
public static OperationFreeTextAnnotation.JustificationEnum fromValue(String value)
-
-