public enum ConverterInstantiationMethod extends Enum<ConverterInstantiationMethod> implements UnaryOperator<String>
| Modifier and Type | Method and Description |
|---|---|
String |
apply(String s) |
static ConverterInstantiationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConverterInstantiationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfidentitypublic static final ConverterInstantiationMethod NEW
public static final ConverterInstantiationMethod SINGLETON
public static ConverterInstantiationMethod[] values()
for (ConverterInstantiationMethod c : ConverterInstantiationMethod.values()) System.out.println(c);
public static ConverterInstantiationMethod 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 © 2020. All rights reserved.