Enum CacheRebalanceMode

    • Enum Constant Detail

      • SYNC

        public static final CacheRebalanceMode SYNC
        Synchronous rebalance mode. Distributed caches will not start until all necessary data is loaded from other available grid nodes.
      • ASYNC

        public static final CacheRebalanceMode ASYNC
        Asynchronous rebalance mode. Distributed caches will start immediately and will load all necessary data from other available grid nodes in the background.
      • NONE

        public static final CacheRebalanceMode NONE
        In this mode no rebalancing will take place which means that caches will be either loaded on demand from persistent store whenever data is accessed, or will be populated explicitly.
    • Method Detail

      • values

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

        public static CacheRebalanceMode 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
      • fromOrdinal

        @Nullable
        public static @Nullable CacheRebalanceMode fromOrdinal​(int ord)
        Efficiently gets enumerated value from its ordinal.
        Parameters:
        ord - Ordinal value.
        Returns:
        Enumerated value or null if ordinal out of range.