Enum GeoValidationMethod

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<GeoValidationMethod>, java.lang.constant.Constable, Writeable

    public enum GeoValidationMethod
    extends java.lang.Enum<GeoValidationMethod>
    implements Writeable
    This enum is used to determine how to deal with invalid geo coordinates in geo related queries: On STRICT validation invalid coordinates cause an exception to be thrown. On IGNORE_MALFORMED invalid coordinates are being accepted. On COERCE invalid coordinates are being corrected to the most likely valid coordinate.
    • Field Detail

      • DEFAULT_LENIENT_PARSING

        public static final boolean DEFAULT_LENIENT_PARSING
    • Method Detail

      • values

        public static GeoValidationMethod[] values()
        Returns an array containing the constants of this enum type, in the order they are declared.
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GeoValidationMethod valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • isIgnoreMalformed

        public static boolean isIgnoreMalformed​(GeoValidationMethod method)
        Returns whether or not to skip bounding box validation.
      • isCoerce

        public static boolean isCoerce​(GeoValidationMethod method)
        Returns whether or not to try and fix broken/wrapping bounding boxes.
      • infer

        public static GeoValidationMethod infer​(boolean coerce,
                                                boolean ignoreMalformed)
        Returns validation method corresponding to given coerce and ignoreMalformed values.