Enum SearchComparator.ValueSet

    • Enum Constant Detail

      • EQ

        public static final SearchComparator.ValueSet EQ
        Equals

        the value for the parameter in the resource is equal to the provided value.

      • NE

        public static final SearchComparator.ValueSet NE
        Not Equals

        the value for the parameter in the resource is not equal to the provided value.

      • GT

        public static final SearchComparator.ValueSet GT
        Greater Than

        the value for the parameter in the resource is greater than the provided value.

      • LT

        public static final SearchComparator.ValueSet LT
        Less Than

        the value for the parameter in the resource is less than the provided value.

      • GE

        public static final SearchComparator.ValueSet GE
        Greater or Equals

        the value for the parameter in the resource is greater or equal to the provided value.

      • LE

        public static final SearchComparator.ValueSet LE
        Less of Equal

        the value for the parameter in the resource is less or equal to the provided value.

      • SA

        public static final SearchComparator.ValueSet SA
        Starts After

        the value for the parameter in the resource starts after the provided value.

      • EB

        public static final SearchComparator.ValueSet EB
        Ends Before

        the value for the parameter in the resource ends before the provided value.

      • AP

        public static final SearchComparator.ValueSet AP
        Approximately

        the value for the parameter in the resource is approximately the same to the provided value.

    • Method Detail

      • values

        public static SearchComparator.ValueSet[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SearchComparator.ValueSet c : SearchComparator.ValueSet.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SearchComparator.ValueSet valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()
        Returns:
        The java.lang.String value of the code represented by this enum
      • from

        public static SearchComparator.ValueSet from​(String value)
        Factory method for creating SearchComparator.ValueSet values from a passed string value.
        Parameters:
        value - A string that matches one of the allowed code values
        Throws:
        IllegalArgumentException - If the passed string cannot be parsed into an allowed code value