com.hazelcast.partition
Enum MigrationEndpoint
java.lang.Object
java.lang.Enum<MigrationEndpoint>
com.hazelcast.partition.MigrationEndpoint
- All Implemented Interfaces:
- Serializable, Comparable<MigrationEndpoint>
public enum MigrationEndpoint
- extends Enum<MigrationEndpoint>
SOURCE
public static final MigrationEndpoint SOURCE
DESTINATION
public static final MigrationEndpoint DESTINATION
values
public static MigrationEndpoint[] 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 (MigrationEndpoint c : MigrationEndpoint.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static MigrationEndpoint 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
writeTo
public static void writeTo(MigrationEndpoint endpoint,
DataOutput out)
throws IOException
- Throws:
IOException
readFrom
public static MigrationEndpoint readFrom(DataInput in)
throws IOException
- Throws:
IOException
Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.