Package org.apache.sedona.core.enums
Enum Class JoinBuildSide
- All Implemented Interfaces:
Serializable,Comparable<JoinBuildSide>,java.lang.constant.Constable
The enumerator type of JoinQuery JoinBuildSide. Each join query has two sides, left shape and
right shape. The join side decides which side the spatial index is built on. The other side will
be streamed out.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic JoinBuildSidegetBuildSide(String str) static JoinBuildSideReturns the enum constant of this class with the specified name.static JoinBuildSide[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LEFT
-
RIGHT
-
-
Method Details
-
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
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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getBuildSide
-