Package org.pkl.core
Enum OutputFormat
- java.lang.Object
-
- java.lang.Enum<OutputFormat>
-
- org.pkl.core.OutputFormat
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OutputFormat>
public enum OutputFormat extends java.lang.Enum<OutputFormat>
The output formats that Pkl supports out-of-the-box.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()The argument for CLI option--formatthat selects this output format.static OutputFormatvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OutputFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JSON
public static final OutputFormat JSON
-
JSONNET
public static final OutputFormat JSONNET
-
PCF
public static final OutputFormat PCF
-
PROPERTIES
public static final OutputFormat PROPERTIES
-
PLIST
public static final OutputFormat PLIST
-
TEXTPROTO
public static final OutputFormat TEXTPROTO
-
XML
public static final OutputFormat XML
-
YAML
public static final OutputFormat YAML
-
-
Method Detail
-
values
public static OutputFormat[] 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 (OutputFormat c : OutputFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OutputFormat valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
The argument for CLI option--formatthat selects this output format.- Overrides:
toStringin classjava.lang.Enum<OutputFormat>
-
-