
public static enum KeyValueBag.Flags extends Enum<KeyValueBag.Flags>
| Enum Constant and Description |
|---|
KVB_APPEND
For #setValue(String,String,Flags) append to the existing value in a key (string append).
|
KVB_DONT_OVERWRITE
For #setValue(String,String,Flags) do not overwrite existing value -- append another key/value pair.
|
KVB_MATCH_CASE
For #getValue(String) case-sensitive match of key.
|
KVB_NONE
For #getValue(String) case-insensitive match of key.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyValueBag.Flags |
swigToEnum(int swigValue) |
int |
swigValue() |
static KeyValueBag.Flags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyValueBag.Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyValueBag.Flags KVB_NONE
public static final KeyValueBag.Flags KVB_MATCH_CASE
public static final KeyValueBag.Flags KVB_DONT_OVERWRITE
public static final KeyValueBag.Flags KVB_APPEND
public static KeyValueBag.Flags[] values()
for (KeyValueBag.Flags c : KeyValueBag.Flags.values()) System.out.println(c);
public static KeyValueBag.Flags 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 final int swigValue()
public static KeyValueBag.Flags swigToEnum(int swigValue)
Copyright © 2018 Humble Software. All rights reserved.