public static enum JsonFormat.InputOption extends Enum<JsonFormat.InputOption>
| Enum Constant and Description | 
|---|
| ENABLE_RECORD_INDEXRecord index tracking is whether or not enabled. | 
| ENABLE_SOURCE_POSITIONSource position tracking is whether or not enabled. | 
| Modifier and Type | Method and Description | 
|---|---|
| static JsonFormat.InputOption | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static JsonFormat.InputOption[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final JsonFormat.InputOption ENABLE_SOURCE_POSITION
public static final JsonFormat.InputOption ENABLE_RECORD_INDEX
public static JsonFormat.InputOption[] values()
for (JsonFormat.InputOption c : JsonFormat.InputOption.values()) System.out.println(c);
public static JsonFormat.InputOption 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 nullCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.