Package banner.types
Enum Sentence.OverlapOption
- java.lang.Object
-
- java.lang.Enum<Sentence.OverlapOption>
-
- banner.types.Sentence.OverlapOption
-
- All Implemented Interfaces:
Serializable,Comparable<Sentence.OverlapOption>
- Enclosing class:
- Sentence
public static enum Sentence.OverlapOption extends Enum<Sentence.OverlapOption>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AsSetExceptionIntersectionLayerInsideOutLayerOutsideInLeftToRightRawUnion
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Sentence.OverlapOptionvalueOf(String name)Returns the enum constant of this type with the specified name.static Sentence.OverlapOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Exception
public static final Sentence.OverlapOption Exception
-
Union
public static final Sentence.OverlapOption Union
-
Intersection
public static final Sentence.OverlapOption Intersection
-
LayerInsideOut
public static final Sentence.OverlapOption LayerInsideOut
-
LayerOutsideIn
public static final Sentence.OverlapOption LayerOutsideIn
-
LeftToRight
public static final Sentence.OverlapOption LeftToRight
-
AsSet
public static final Sentence.OverlapOption AsSet
-
Raw
public static final Sentence.OverlapOption Raw
-
-
Method Detail
-
values
public static Sentence.OverlapOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Sentence.OverlapOption c : Sentence.OverlapOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Sentence.OverlapOption valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-