Enum FilterTarget

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<FilterTarget>

    public enum FilterTarget
    extends java.lang.Enum<FilterTarget>
    • Enum Constant Detail

      • PROJECT_TARGET

        public static final FilterTarget PROJECT_TARGET
      • PROJECT_INFO

        public static final FilterTarget PROJECT_INFO
      • LAUNCH_TARGET

        public static final FilterTarget LAUNCH_TARGET
      • TEST_ITEM_TARGET

        public static final FilterTarget TEST_ITEM_TARGET
      • ACTIVITY_TARGET

        public static final FilterTarget ACTIVITY_TARGET
      • INTEGRATION_TARGET

        public static final FilterTarget INTEGRATION_TARGET
      • DASHBOARD_TARGET

        public static final FilterTarget DASHBOARD_TARGET
      • WIDGET_TARGET

        public static final FilterTarget WIDGET_TARGET
      • USER_FILTER_TARGET

        public static final FilterTarget USER_FILTER_TARGET
    • Method Detail

      • values

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

        public static FilterTarget 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
      • selectFields

        protected abstract java.util.Collection<? extends org.jooq.SelectField> selectFields()
      • addFrom

        protected abstract void addFrom​(org.jooq.SelectQuery<? extends org.jooq.Record> query)
      • joinTables

        protected abstract void joinTables​(QuerySupplier query)
      • joinTablesForFilter

        protected void joinTablesForFilter​(QuerySupplier query)
      • idField

        protected abstract org.jooq.Field<java.lang.Long> idField()
      • wrapQuery

        public QuerySupplier wrapQuery​(org.jooq.SelectQuery<? extends org.jooq.Record> query)
      • wrapQuery

        public QuerySupplier wrapQuery​(org.jooq.SelectQuery<? extends org.jooq.Record> query,
                                       java.lang.String... excluding)
      • getClazz

        public java.lang.Class<?> getClazz()
      • getCriteriaHolders

        public java.util.List<CriteriaHolder> getCriteriaHolders()
      • getCriteriaByFilter

        public java.util.Optional<CriteriaHolder> getCriteriaByFilter​(java.lang.String filterCriteria)
      • findByClass

        public static FilterTarget findByClass​(java.lang.Class<?> clazz)