Enum Param.LockingMode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Param.LockingMode>, Param<Param.LockingMode>
    Enclosing interface:
    Param<P>

    public static enum Param.LockingMode
    extends java.lang.Enum<Param.LockingMode>
    implements Param<Param.LockingMode>
    Normally the cache has to acquire locks during any write operation to guarantee its correctness. If the application is sure that no concurrent operation occurs, it is possible to increase performance by setting this param to SKIP. The result of any operation without locking is undefined under presence of concurrent writes.
    • Method Detail

      • values

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

        public static Param.LockingMode 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
      • id

        public int id()
        Description copied from interface: Param
        A parameter's identifier. Each parameter must have a different id.

        A numeric id makes it flexible enough to be stored in collections that take up low resources, such as arrays.

        Specified by:
        id in interface Param<Param.LockingMode>
      • valueOf

        public static Param.LockingMode valueOf​(int ordinal)
        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:
        ordinal - 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