Enum Class FindResultAccessMode

java.lang.Object
java.lang.Enum<FindResultAccessMode>
de.elo.ix.client.FindResultAccessMode
All Implemented Interfaces:
Serializable, Comparable<FindResultAccessMode>, Constable

public enum FindResultAccessMode extends Enum<FindResultAccessMode>
This constants are used to control the caching of find results.
Since:
11.00.000.033
  • Enum Constant Details

    • RANDOM

      public static final FindResultAccessMode RANDOM
      Find results are cached inside Indexserver. This value allows to call a findNext-function for already delivered results. The client application has random access to all results as long as findClose has not been called.
    • SEQUENTIAL

      public static final FindResultAccessMode SEQUENTIAL
      Find results may not be cached inside Indexserver. A findNext-function can only address results that have not already been delivered. The client application has to sequentially read the results. This mode can save memory on the server.
  • Method Details

    • values

      public static FindResultAccessMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FindResultAccessMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null