public static enum JsonParserOptions.JsonDuplicates extends Enum<JsonParserOptions.JsonDuplicates>
Enum Constant and Description |
---|
REJECT
Reject.
|
USE_FIRST
Use first.
|
USE_LAST
Use last.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static JsonParserOptions.JsonDuplicates |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonParserOptions.JsonDuplicates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonParserOptions.JsonDuplicates REJECT
public static final JsonParserOptions.JsonDuplicates USE_FIRST
public static final JsonParserOptions.JsonDuplicates USE_LAST
public static JsonParserOptions.JsonDuplicates[] values()
for (JsonParserOptions.JsonDuplicates c : JsonParserOptions.JsonDuplicates.values()) System.out.println(c);
public static JsonParserOptions.JsonDuplicates valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<JsonParserOptions.JsonDuplicates>
Copyright © 2005–2015 BaseX Team. All rights reserved.