public enum UnmatchingRule extends Enum<UnmatchingRule>
| Enum Constant and Description |
|---|
ASSIGN
Link the resource and create entity.
|
IGNORE
Do not perform any action.
|
PROVISION
Create entity without linking the resource.
|
UNLINK
Just unlink resource without performing any (de-)provisioning operation.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
toEventName(UnmatchingRule rule) |
static UnmatchingRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnmatchingRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnmatchingRule IGNORE
public static final UnmatchingRule ASSIGN
public static final UnmatchingRule PROVISION
public static final UnmatchingRule UNLINK
public static UnmatchingRule[] values()
for (UnmatchingRule c : UnmatchingRule.values()) System.out.println(c);
public static UnmatchingRule 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 nullpublic static String toEventName(UnmatchingRule rule)
Copyright © 2010–2018 The Apache Software Foundation. All rights reserved.