Package org.apache.iceberg.types
Enum Class EdgeAlgorithm
- All Implemented Interfaces:
Serializable,Comparable<EdgeAlgorithm>,Constable
The algorithm for interpolating edges.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThomas, Paul D.Edges are interpolated as geodesics on a sphere.Thomas, Paul D. -
Method Summary
Modifier and TypeMethodDescriptionstatic EdgeAlgorithmtoString()static EdgeAlgorithmReturns the enum constant of this class with the specified name.static EdgeAlgorithm[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SPHERICAL
Edges are interpolated as geodesics on a sphere. -
VINCENTY
-
THOMAS
Thomas, Paul D. Spheroidal geodesics, reference systems, & local geometry. US Naval Oceanographic Office, 1970. -
ANDOYER
Thomas, Paul D. Mathematical models for navigation systems. US Naval Oceanographic Office, 1965. -
KARNEY
-
-
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
-
fromName
-
toString
- Overrides:
toStringin classEnum<EdgeAlgorithm>
-