static enum Translet.disj_flavour extends Enum<Translet.disj_flavour>
Enum Constant and Description |
---|
or1
All matches are returned, each as an instance of the common limes class.
|
orN
All matches are returned, each as an instance of a co-tuple class.
|
prior1
First match wins, a instance of the common limes class is returned.
|
priorN
First match wins, an instance of a co-tuple class is returned.
|
Modifier and Type | Method and Description |
---|---|
static Translet.disj_flavour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Translet.disj_flavour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Translet.disj_flavour priorN
public static final Translet.disj_flavour prior1
public static final Translet.disj_flavour orN
public static final Translet.disj_flavour or1
public static Translet.disj_flavour[] values()
for (Translet.disj_flavour c : Translet.disj_flavour.values()) System.out.println(c);
public static Translet.disj_flavour 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 null