Enum AdminSearches

java.lang.Object
java.lang.Enum<AdminSearches>
com.smartgwt.client.types.AdminSearches
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<AdminSearches>, Constable

public enum AdminSearches extends Enum<AdminSearches> implements ValueEnum
Policy for choosing between admin searches fetched from the DataSource vs. those declared locally on a component.
  • Enum Constant Details

    • PREFERSAVED

      public static final AdminSearches PREFERSAVED
      Combine both sets of records, but report the search record from the DataSource if two records have the same search name.

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "preferSaved".

    • PREFERLOCAL

      public static final AdminSearches PREFERLOCAL
      Combine both sets of records, but report the search record from adminSavedSearches if two records have the same search name.

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "preferLocal".

    • LOCALONLY

      public static final AdminSearches LOCALONLY
      Only report the records from adminSavedSearches.

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "localOnly".

  • Method Details

    • values

      public static AdminSearches[] 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 AdminSearches 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
    • getValue

      public String getValue()
      Specified by:
      getValue in interface ValueEnum