@Beta public enum CopyType extends Enum<CopyType>
| Enum Constant and Description |
|---|
ADDED_BY_AUGMENTATION |
ADDED_BY_USES |
ADDED_BY_USES_AUGMENTATION |
ORIGINAL |
| Modifier and Type | Method and Description |
|---|---|
static CopyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyType ORIGINAL
public static final CopyType ADDED_BY_USES
public static final CopyType ADDED_BY_AUGMENTATION
public static final CopyType ADDED_BY_USES_AUGMENTATION
public static CopyType[] values()
for (CopyType c : CopyType.values()) System.out.println(c);
public static CopyType 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 © 2019 OpenDaylight. All rights reserved.