Enum Class JoinFeatureSet.Type

All Implemented Interfaces:
Serializable, Comparable<Join­Feature­Set​.Type>, Constable
Enclosing class:
Join­Feature­Set

public static enum JoinFeatureSet.Type extends Enum<JoinFeatureSet.Type>
Specifies whether values on both sides are required (inner join), or only one side (outer join).
  • Enum Constant Details

    • INNER

      public static final JoinFeatureSet.Type INNER
      Only records having a value on both side will be included. The Join­Feature­Set "left" and "right" properties will never be null.
    • LEFT_OUTER

      public static final JoinFeatureSet.Type LEFT_OUTER
      All records from the left side will be included. If there is no matching feature on the right side, then the Join­Feature­Set "right" property will be null.
    • RIGHT_OUTER

      public static final JoinFeatureSet.Type RIGHT_OUTER
      All records from the right side will be included. If there is no matching feature on the left side, then the Join­Feature­Set "left" property will be null.
  • Method Details

    • values

      public static JoinFeatureSet.Type[] 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

      public static JoinFeatureSet.Type valueOf(String name)
      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:
      Illegal­Argument­Exception - if this enum class has no constant with the specified name
      Null­Pointer­Exception - if the argument is null