public enum ParameterName extends Enum<ParameterName>
| Enum Constant and Description |
|---|
DEFAULT |
FORCE_DEFAULT |
SIZE |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
String |
getShortName() |
static ParameterName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterName DEFAULT
public static final ParameterName SIZE
public static final ParameterName FORCE_DEFAULT
public static ParameterName[] values()
for (ParameterName c : ParameterName.values()) System.out.println(c);
public static ParameterName 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 getName()
public String getShortName()
Copyright © 2021. All Rights Reserved.