Enum Selector.Kind

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Selector.Kind>
    Enclosing class:
    Selector

    public static enum Selector.Kind
    extends java.lang.Enum<Selector.Kind>
    The Selector kinds.
    • Enum Constant Detail

      • SIMPLE_SELECTOR

        public static final Selector.Kind SIMPLE_SELECTOR
      • WRITETIME_OR_TTL_SELECTOR

        public static final Selector.Kind WRITETIME_OR_TTL_SELECTOR
      • TUPLE_SELECTOR

        public static final Selector.Kind TUPLE_SELECTOR
      • USER_TYPE_SELECTOR

        public static final Selector.Kind USER_TYPE_SELECTOR
      • FIELD_SELECTOR

        public static final Selector.Kind FIELD_SELECTOR
      • SCALAR_FUNCTION_SELECTOR

        public static final Selector.Kind SCALAR_FUNCTION_SELECTOR
      • AGGREGATE_FUNCTION_SELECTOR

        public static final Selector.Kind AGGREGATE_FUNCTION_SELECTOR
      • ELEMENT_SELECTOR

        public static final Selector.Kind ELEMENT_SELECTOR
      • SLICE_SELECTOR

        public static final Selector.Kind SLICE_SELECTOR
      • VECTOR_SELECTOR

        public static final Selector.Kind VECTOR_SELECTOR
    • Method Detail

      • values

        public static Selector.Kind[] 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 (Selector.Kind c : Selector.Kind.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Selector.Kind 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