Package net.webpdf.wsclient.openapi
Enum OperationSvgFormat.PathDrawModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationSvgFormat.PathDrawModeEnum>
-
- net.webpdf.wsclient.openapi.OperationSvgFormat.PathDrawModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationSvgFormat.PathDrawModeEnum>
- Enclosing class:
- OperationSvgFormat
public static enum OperationSvgFormat.PathDrawModeEnum extends Enum<OperationSvgFormat.PathDrawModeEnum>
Selects the SVG syntax used for formatting paths. * verbose = Writes verbose paths, containing a human readable complete and simple syntax. * compress = Compresses path draw instructions, by applying the EBNF (Extended Backus Naur Form).
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationSvgFormat.PathDrawModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationSvgFormat.PathDrawModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationSvgFormat.PathDrawModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VERBOSE
public static final OperationSvgFormat.PathDrawModeEnum VERBOSE
-
COMPACT
public static final OperationSvgFormat.PathDrawModeEnum COMPACT
-
-
Method Detail
-
values
public static OperationSvgFormat.PathDrawModeEnum[] 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 (OperationSvgFormat.PathDrawModeEnum c : OperationSvgFormat.PathDrawModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationSvgFormat.PathDrawModeEnum 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<OperationSvgFormat.PathDrawModeEnum>
-
fromValue
public static OperationSvgFormat.PathDrawModeEnum fromValue(String value)
-
-