Enum GoraAttribute

    • Enum Constant Detail

      • GORA_KEY

        @Metadata(label="producer",
                  description="Used in order to define the datum key for the operations need it.",
                  javaType="Object")
        public static final GoraAttribute GORA_KEY
        Gora KEY attribute
      • GORA_OPERATION

        @Metadata(label="producer",
                  description="Used in order to define the operation to execute.",
                  javaType="String")
        public static final GoraAttribute GORA_OPERATION
        Gora operation header name
      • GORA_QUERY_START_TIME

        public static final GoraAttribute GORA_QUERY_START_TIME
        Gora Query Start Time attribute
      • GORA_QUERY_END_TIME

        public static final GoraAttribute GORA_QUERY_END_TIME
        Gora Query End Time attribute
      • GORA_QUERY_START_KEY

        public static final GoraAttribute GORA_QUERY_START_KEY
        Gora Query Start Key attribute
      • GORA_QUERY_END_KEY

        public static final GoraAttribute GORA_QUERY_END_KEY
        Gora Query End Key attribute
      • GORA_QUERY_KEY_RANGE_FROM

        public static final GoraAttribute GORA_QUERY_KEY_RANGE_FROM
        Gora Query Key Range From attribute
      • GORA_QUERY_KEY_RANGE_TO

        public static final GoraAttribute GORA_QUERY_KEY_RANGE_TO
        Gora Query Key Range To attribute
      • GORA_QUERY_TIME_RANGE_FROM

        public static final GoraAttribute GORA_QUERY_TIME_RANGE_FROM
        Gora Query Time Range From attribute
      • GORA_QUERY_TIME_RANGE_TO

        public static final GoraAttribute GORA_QUERY_TIME_RANGE_TO
        Gora Query Key Range To attribute
      • GORA_QUERY_LIMIT

        public static final GoraAttribute GORA_QUERY_LIMIT
        Gora Query Limit attribute
      • GORA_QUERY_TIMESTAMP

        public static final GoraAttribute GORA_QUERY_TIMESTAMP
        Gora Query Timestamp attribute
      • GORA_QUERY_FIELDS

        public static final GoraAttribute GORA_QUERY_FIELDS
        Gora Query Fields attribute
    • Field Detail

      • value

        public final String value
        Enum value
    • Method Detail

      • values

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

        public static GoraAttribute 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