Serializable, Comparable<MapTypeProperty>public enum MapTypeProperty extends Enum<MapTypeProperty>
| Enum Constant | Description |
|---|---|
BOTH |
|
COLUMN_KEY |
|
KEY_VALUE |
| Modifier and Type | Method | Description |
|---|---|---|
static boolean |
isColumnKeyEnabled(Object[] properties) |
|
static boolean |
isKeyValueEnabled(Object[] properties) |
|
static MapTypeProperty |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static MapTypeProperty[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapTypeProperty KEY_VALUE
public static final MapTypeProperty COLUMN_KEY
public static final MapTypeProperty BOTH
public static MapTypeProperty[] values()
for (MapTypeProperty c : MapTypeProperty.values()) System.out.println(c);
public static MapTypeProperty 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 static boolean isKeyValueEnabled(Object[] properties)
public static boolean isColumnKeyEnabled(Object[] properties)
Copyright © 2019. All rights reserved.