Package org.geotools.process.vector
Enum IntersectionFeatureCollection.IntersectionMode
- Object
- 
- Enum<IntersectionFeatureCollection.IntersectionMode>
- 
- IntersectionMode
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<IntersectionFeatureCollection.IntersectionMode>
 - Enclosing class:
- IntersectionFeatureCollection
 
 public static enum IntersectionFeatureCollection.IntersectionMode extends Enum<IntersectionFeatureCollection.IntersectionMode> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FIRSTINTERSECTIONSECOND
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static IntersectionFeatureCollection.IntersectionModevalueOf(String name)Returns the enum constant of this type with the specified name.static IntersectionFeatureCollection.IntersectionMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
INTERSECTIONpublic static final IntersectionFeatureCollection.IntersectionMode INTERSECTION 
 - 
FIRSTpublic static final IntersectionFeatureCollection.IntersectionMode FIRST 
 - 
SECONDpublic static final IntersectionFeatureCollection.IntersectionMode SECOND 
 
- 
 - 
Method Detail- 
valuespublic static IntersectionFeatureCollection.IntersectionMode[] 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 (IntersectionFeatureCollection.IntersectionMode c : IntersectionFeatureCollection.IntersectionMode.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IntersectionFeatureCollection.IntersectionMode 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-