Package eu.bandm.tscore.base
Enum Class Translet.disj_flavour
- All Implemented Interfaces:
Serializable
,Comparable<Translet.disj_flavour>
,Constable
- Enclosing class:
- Translet
Kinds of disjunctive parser combinators.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAll matches are returned, each as an instance of the common limes class.All matches are returned, each as an instance of a co-tuple class.First match wins, a instance of the common limes class is returned.First match wins, an instance of a co-tuple class is returned. -
Method Summary
Modifier and TypeMethodDescriptionstatic Translet.disj_flavour
Returns the enum constant of this class with the specified name.static Translet.disj_flavour[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
priorN
First match wins, an instance of a co-tuple class is returned. -
prior1
First match wins, a instance of the common limes class is returned. -
orN
All matches are returned, each as an instance of a co-tuple class. -
or1
All matches are returned, each as an instance of the common limes class.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-