public enum XPFSettingCollectionType extends Enum<XPFSettingCollectionType>
Enum Constant and Description |
---|
LIST
Collection type for list.
|
MAP
Collection type for map.
|
SET
Collection type for set.
|
SINGLE
Collection type for single element.
|
Modifier and Type | Method and Description |
---|---|
static XPFSettingCollectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XPFSettingCollectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XPFSettingCollectionType SINGLE
public static final XPFSettingCollectionType LIST
public static final XPFSettingCollectionType SET
public static final XPFSettingCollectionType MAP
public static XPFSettingCollectionType[] values()
for (XPFSettingCollectionType c : XPFSettingCollectionType.values()) System.out.println(c);
public static XPFSettingCollectionType 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 © 2023. All rights reserved.