Enum CacheModeType

    • Method Detail

      • values

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

        public static CacheModeType valueOf​(String name)
        Deprecated.
        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
      • getCacheMode

        public CacheMode getCacheMode()
        Deprecated.
      • fromCacheMode

        public static CacheModeType fromCacheMode​(CacheMode cacheMode)
        Deprecated.
        Conversion from CacheMode to CacheModeType.
        Parameters:
        cacheMode - The cache mode to convert
        Returns:
        The corresponding enum value. Will be null if the given accessType is null.