public enum SynthesisMention extends Enum<SynthesisMention>
| Enum Constant and Description |
|---|
ACCEPTABLE |
CONFORM |
NOT_ACCEPTABLE |
| Modifier and Type | Method and Description |
|---|---|
static SynthesisMention |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynthesisMention[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynthesisMention CONFORM
public static final SynthesisMention ACCEPTABLE
public static final SynthesisMention NOT_ACCEPTABLE
public static SynthesisMention[] values()
for (SynthesisMention c : SynthesisMention.values()) System.out.println(c);
public static SynthesisMention 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 © 2012-2013 Herboristerie Cailleau. All Rights Reserved.