Package io.swagger.v3.oas.models.media
Enum Schema.BynaryStringConversion
- java.lang.Object
-
- java.lang.Enum<Schema.BynaryStringConversion>
-
- io.swagger.v3.oas.models.media.Schema.BynaryStringConversion
-
- All Implemented Interfaces:
Serializable,Comparable<Schema.BynaryStringConversion>
public static enum Schema.BynaryStringConversion extends Enum<Schema.BynaryStringConversion>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINARY_STRING_CONVERSION_BASE64BINARY_STRING_CONVERSION_DEFAULT_CHARSETBINARY_STRING_CONVERSION_STRING_SCHEMA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static Schema.BynaryStringConversionvalueOf(String name)Returns the enum constant of this type with the specified name.static Schema.BynaryStringConversion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BINARY_STRING_CONVERSION_BASE64
public static final Schema.BynaryStringConversion BINARY_STRING_CONVERSION_BASE64
-
BINARY_STRING_CONVERSION_DEFAULT_CHARSET
public static final Schema.BynaryStringConversion BINARY_STRING_CONVERSION_DEFAULT_CHARSET
-
BINARY_STRING_CONVERSION_STRING_SCHEMA
public static final Schema.BynaryStringConversion BINARY_STRING_CONVERSION_STRING_SCHEMA
-
-
Method Detail
-
values
public static Schema.BynaryStringConversion[] 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 (Schema.BynaryStringConversion c : Schema.BynaryStringConversion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Schema.BynaryStringConversion 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<Schema.BynaryStringConversion>
-
-