public enum ForeignIdHashSource extends Enum<ForeignIdHashSource>
| Enum Constant and Description | 
|---|
IP_ADDRESS  | 
NODE_LABEL  | 
NODE_LABEL_AND_IP_ADDRESS  | 
| Modifier and Type | Method and Description | 
|---|---|
static ForeignIdHashSource | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ForeignIdHashSource[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ForeignIdHashSource NODE_LABEL
public static final ForeignIdHashSource IP_ADDRESS
public static final ForeignIdHashSource NODE_LABEL_AND_IP_ADDRESS
public static ForeignIdHashSource[] values()
for (ForeignIdHashSource c : ForeignIdHashSource.values()) System.out.println(c);
public static ForeignIdHashSource valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.