Enum WriteConfig.ConvertJson
- java.lang.Object
-
- java.lang.Enum<WriteConfig.ConvertJson>
-
- com.mongodb.spark.sql.connector.config.WriteConfig.ConvertJson
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WriteConfig.ConvertJson>
- Enclosing class:
- WriteConfig
public static enum WriteConfig.ConvertJson extends java.lang.Enum<WriteConfig.ConvertJson>
The convert json configuration.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANY
Try to parse any string as a json valueFALSE
No conversion of string typesOBJECT_OR_ARRAY_ONLY
Only try to parse strings are potentially json objects or arrays
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static WriteConfig.ConvertJson
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WriteConfig.ConvertJson[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FALSE
public static final WriteConfig.ConvertJson FALSE
No conversion of string types
-
ANY
public static final WriteConfig.ConvertJson ANY
Try to parse any string as a json value
-
OBJECT_OR_ARRAY_ONLY
public static final WriteConfig.ConvertJson OBJECT_OR_ARRAY_ONLY
Only try to parse strings are potentially json objects or arrays
-
-
Method Detail
-
values
public static WriteConfig.ConvertJson[] 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 (WriteConfig.ConvertJson c : WriteConfig.ConvertJson.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WriteConfig.ConvertJson 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()
- Overrides:
toString
in classjava.lang.Enum<WriteConfig.ConvertJson>
-
-