public static enum Intensities.Type extends Enum<Intensities.Type>
| Enum Constant and Description |
|---|
DIMINISHER |
INTENSIFIER |
MODAL |
| Modifier and Type | Method and Description |
|---|---|
static Intensities.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Intensities.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Intensities.Type INTENSIFIER
public static final Intensities.Type DIMINISHER
public static final Intensities.Type MODAL
public static Intensities.Type[] values()
for (Intensities.Type c : Intensities.Type.values()) System.out.println(c);
public static Intensities.Type 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 © 2016–2020 FBK. All rights reserved.