Package net.webpdf.wsclient.openapi
Enum OperationXslTransformationFile.FormatEnum
- java.lang.Object
-
- java.lang.Enum<OperationXslTransformationFile.FormatEnum>
-
- net.webpdf.wsclient.openapi.OperationXslTransformationFile.FormatEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationXslTransformationFile.FormatEnum>
- Enclosing class:
- OperationXslTransformationFile
public static enum OperationXslTransformationFile.FormatEnum extends Enum<OperationXslTransformationFile.FormatEnum>
The type of the resource passed * xlst = An XSLT stylesheet to be used for the transformation. * other = Any other resource that is needed for the transformation. For example, this can be a CSS stylesheet, which is used by an output file of a transformation if it results in HTML output. **Important:** The order of the resources can be important if multiple transformations are to be performed, i.e. multiple resources of the format \"xlst\" are passed. The transformations are performed in the order in which they are passed, in which case each transformation uses the output of the previous transformation as the starting point for its own transformation.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationXslTransformationFile.FormatEnumfromValue(String value)StringgetValue()StringtoString()static OperationXslTransformationFile.FormatEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationXslTransformationFile.FormatEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XSLT
public static final OperationXslTransformationFile.FormatEnum XSLT
-
OTHER
public static final OperationXslTransformationFile.FormatEnum OTHER
-
-
Method Detail
-
values
public static OperationXslTransformationFile.FormatEnum[] 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 (OperationXslTransformationFile.FormatEnum c : OperationXslTransformationFile.FormatEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationXslTransformationFile.FormatEnum 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<OperationXslTransformationFile.FormatEnum>
-
fromValue
public static OperationXslTransformationFile.FormatEnum fromValue(String value)
-
-