Package net.webpdf.wsclient.openapi
Enum AdminProviderConfigurationFormat
- java.lang.Object
-
- java.lang.Enum<AdminProviderConfigurationFormat>
-
- net.webpdf.wsclient.openapi.AdminProviderConfigurationFormat
-
- All Implemented Interfaces:
Serializable,Comparable<AdminProviderConfigurationFormat>
public enum AdminProviderConfigurationFormat extends Enum<AdminProviderConfigurationFormat>
Gets or Sets Admin_ProviderConfigurationFormat
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminProviderConfigurationFormatfromValue(String value)StringgetValue()StringtoString()StringtoUrlQueryString(String prefix)Convert the instance into URL query string.static AdminProviderConfigurationFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static AdminProviderConfigurationFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAIN
public static final AdminProviderConfigurationFormat PLAIN
-
JSON
public static final AdminProviderConfigurationFormat JSON
-
YAML
public static final AdminProviderConfigurationFormat YAML
-
XML
public static final AdminProviderConfigurationFormat XML
-
-
Method Detail
-
values
public static AdminProviderConfigurationFormat[] 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 (AdminProviderConfigurationFormat c : AdminProviderConfigurationFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdminProviderConfigurationFormat 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<AdminProviderConfigurationFormat>
-
fromValue
public static AdminProviderConfigurationFormat fromValue(String value)
-
-