Enum KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE
- java.lang.Object
-
- java.lang.Enum<KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE>
-
- org.openapitools.codegen.languages.KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE>
- Enclosing class:
- KotlinClientCodegen
public static enum KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE extends Enum<KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description gsonjacksonkotlinx_serializationmoshi
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
moshi
public static final KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE moshi
-
gson
public static final KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE gson
-
jackson
public static final KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE jackson
-
kotlinx_serialization
public static final KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE kotlinx_serialization
-
-
Method Detail
-
values
public static KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE[] 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 (KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE c : KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KotlinClientCodegen.SERIALIZATION_LIBRARY_TYPE 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
-
-