Package org.apache.sis.storage.aggregate
Enum Class JoinFeatureSet.Type
- All Implemented Interfaces:
- Serializable,- Comparable<JoinFeatureSet.Type>,- Constable
- Enclosing class:
- JoinFeatureSet
Specifies whether values on both sides are required (inner join), or only one side (outer join).
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionOnly records having a value on both side will be included.All records from the left side will be included.All records from the right side will be included.
- 
Method SummaryModifier and TypeMethodDescriptionstatic JoinFeatureSet.TypeReturns the enum constant of this class with the specified name.static JoinFeatureSet.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
INNEROnly records having a value on both side will be included. TheJoinFeatureSet"left"and"right"properties will never be null.
- 
LEFT_OUTERAll records from the left side will be included. If there is no matching feature on the right side, then theJoinFeatureSet"right"property will benull.
- 
RIGHT_OUTERAll records from the right side will be included. If there is no matching feature on the left side, then theJoinFeatureSet"left"property will benull.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-