Uses of Class
org.opengis.geometry.PrecisionType
-
Packages that use PrecisionType Package Description org.opengis.geometry Root package for geometries. -
-
Uses of PrecisionType in org.opengis.geometry
Fields in org.opengis.geometry declared as PrecisionType Modifier and Type Field Description static PrecisionType
PrecisionType. DOUBLE
Floating precision corresponds to the standard Java double-precision floating-point representation, which is based on the IEEE-754 standard.static PrecisionType
PrecisionType. FIXED
Fixed precision indicates that coordinates have a fixed number of decimal places.static PrecisionType
PrecisionType. FLOAT
Floating single precision corresponds to the standard Java single-precision floating-point representation, which is based on the IEEE-754 standard.Methods in org.opengis.geometry that return PrecisionType Modifier and Type Method Description PrecisionType[]
PrecisionType. family()
Returns the list of enumerations of the same kind than this enum.PrecisionType
Precision. getType()
Returns the type of this precision model.static PrecisionType
PrecisionType. valueOf(String code)
Returns the precision type that matches the given string, or returns a new one if none match it.static PrecisionType[]
PrecisionType. values()
Returns the list ofPrecisionModelType
s.Methods in org.opengis.geometry with parameters of type PrecisionType Modifier and Type Method Description Precision
PrecisionFactory. createFixedPrecision(PrecisionType code, double scale)
Creates a Precision of the provided type, scale is used for PrecisionType.FIXED.
-