|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FeatureUtil.JoinType>
schmitzm.geotools.feature.FeatureUtil.JoinType
public static enum FeatureUtil.JoinType
Join-Types.
Enum Constant Summary | |
---|---|
FULL
Only features with a join feature in the other collection are taken into the result (Default). |
|
LEFT_OUTER
The feature of the left collection is taken into the result, even there is no join feature in the right collection. |
|
RIGHT_OUTER
The feature of the right collection is taken into the result, even there is no join feature in the left collection. |
Method Summary | |
---|---|
static FeatureUtil.JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FeatureUtil.JoinType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FeatureUtil.JoinType LEFT_OUTER
public static final FeatureUtil.JoinType RIGHT_OUTER
public static final FeatureUtil.JoinType FULL
Method Detail |
---|
public static FeatureUtil.JoinType[] values()
for (FeatureUtil.JoinType c : FeatureUtil.JoinType.values()) System.out.println(c);
public static FeatureUtil.JoinType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |