Package net.webpdf.wsclient.openapi
Enum DocumentMetadataImageOrientation
- java.lang.Object
-
- java.lang.Enum<DocumentMetadataImageOrientation>
-
- net.webpdf.wsclient.openapi.DocumentMetadataImageOrientation
-
- All Implemented Interfaces:
Serializable,Comparable<DocumentMetadataImageOrientation>
public enum DocumentMetadataImageOrientation extends Enum<DocumentMetadataImageOrientation>
Defines the image orientation (EXIF orientation) for an image entry in the metadata of an image document.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOM_LEFTBOTTOM_RIGHTLEFT_BOTTOMLEFT_TOPRIGHT_BOTTOMRIGHT_TOPTOP_LEFTTOP_RIGHT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DocumentMetadataImageOrientationfromValue(String value)StringgetValue()StringtoString()StringtoUrlQueryString(String prefix)Convert the instance into URL query string.static DocumentMetadataImageOrientationvalueOf(String name)Returns the enum constant of this type with the specified name.static DocumentMetadataImageOrientation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_LEFT
public static final DocumentMetadataImageOrientation TOP_LEFT
-
TOP_RIGHT
public static final DocumentMetadataImageOrientation TOP_RIGHT
-
BOTTOM_RIGHT
public static final DocumentMetadataImageOrientation BOTTOM_RIGHT
-
BOTTOM_LEFT
public static final DocumentMetadataImageOrientation BOTTOM_LEFT
-
LEFT_TOP
public static final DocumentMetadataImageOrientation LEFT_TOP
-
RIGHT_TOP
public static final DocumentMetadataImageOrientation RIGHT_TOP
-
RIGHT_BOTTOM
public static final DocumentMetadataImageOrientation RIGHT_BOTTOM
-
LEFT_BOTTOM
public static final DocumentMetadataImageOrientation LEFT_BOTTOM
-
-
Method Detail
-
values
public static DocumentMetadataImageOrientation[] 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 (DocumentMetadataImageOrientation c : DocumentMetadataImageOrientation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentMetadataImageOrientation 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<DocumentMetadataImageOrientation>
-
fromValue
public static DocumentMetadataImageOrientation fromValue(String value)
-
-