Enum Class CoherenceInstanceType

java.lang.Object
java.lang.Enum<CoherenceInstanceType>
com.oracle.coherence.spring.configuration.support.CoherenceInstanceType
All Implemented Interfaces:
Serializable, Comparable<CoherenceInstanceType>, Constable

public enum CoherenceInstanceType extends Enum<CoherenceInstanceType>
An enum representing the type of the Coherence instance.
Since:
3.0
Author:
Gunnar Hillert
See Also:
  • Coherence
  • Enum Constant Details

    • CLIENT

      public static final CoherenceInstanceType CLIENT
      Represents a Coherence client instance e.g. used when configuring Coherence*Extend or gRPC clients.
    • CLUSTER

      public static final CoherenceInstanceType CLUSTER
      The instance is a cluster member.
  • Method Details

    • values

      public static CoherenceInstanceType[] 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 CoherenceInstanceType 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