Package net.webpdf.wsclient.openapi
Enum OperationSvg.PathDrawModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationSvg.PathDrawModeEnum>
-
- net.webpdf.wsclient.openapi.OperationSvg.PathDrawModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationSvg.PathDrawModeEnum>
- Enclosing class:
- OperationSvg
public static enum OperationSvg.PathDrawModeEnum extends Enum<OperationSvg.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 OperationSvg.PathDrawModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationSvg.PathDrawModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationSvg.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 OperationSvg.PathDrawModeEnum VERBOSE
-
COMPACT
public static final OperationSvg.PathDrawModeEnum COMPACT
-
-
Method Detail
-
values
public static OperationSvg.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 (OperationSvg.PathDrawModeEnum c : OperationSvg.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 OperationSvg.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<OperationSvg.PathDrawModeEnum>
-
fromValue
public static OperationSvg.PathDrawModeEnum fromValue(String value)
-
-