public static enum ItemPath.CompareResult extends Enum<ItemPath.CompareResult>
| Enum Constant and Description |
|---|
EQUIVALENT |
NO_RELATION |
SUBPATH |
SUPERPATH |
| Modifier and Type | Method and Description |
|---|---|
static ItemPath.CompareResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemPath.CompareResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemPath.CompareResult EQUIVALENT
public static final ItemPath.CompareResult SUPERPATH
public static final ItemPath.CompareResult SUBPATH
public static final ItemPath.CompareResult NO_RELATION
public static ItemPath.CompareResult[] values()
for (ItemPath.CompareResult c : ItemPath.CompareResult.values()) System.out.println(c);
public static ItemPath.CompareResult 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 Evolveum. All rights reserved.