public enum MergeType extends Enum<MergeType>
| Enum Constant and Description |
|---|
Address |
Birthday |
Date |
Dropdown |
ImageURL |
Number |
Phone |
Radio |
Text |
URL |
Zip |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static MergeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeType Text
public static final MergeType Number
public static final MergeType Radio
public static final MergeType Birthday
public static final MergeType Date
public static final MergeType Dropdown
public static final MergeType Address
public static final MergeType Zip
public static final MergeType Phone
public static final MergeType URL
public static final MergeType ImageURL
public static MergeType[] values()
for (MergeType c : MergeType.values()) System.out.println(c);
public static MergeType 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 getValue()
Copyright © 2020. All rights reserved.