public static enum ResourceDiscoveryCallback.DiscoveryCallbackResults extends Enum<ResourceDiscoveryCallback.DiscoveryCallbackResults>
| Enum Constant and Description |
|---|
PROCESSED
If the callback recognized the discovered resource, it should return this enum value
to let the plugin container know that the details were processed by this callback and
were possibly altered from their original state.
|
UNPROCESSED
If the callback left the discovered details as-is, it should return this enum value.
|
VETO
If the callback determines that the discovered resource is invalid or for some reason should
not go into inventory, it can veto its discovery via this enum value.
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceDiscoveryCallback.DiscoveryCallbackResults |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceDiscoveryCallback.DiscoveryCallbackResults[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceDiscoveryCallback.DiscoveryCallbackResults UNPROCESSED
public static final ResourceDiscoveryCallback.DiscoveryCallbackResults PROCESSED
public static final ResourceDiscoveryCallback.DiscoveryCallbackResults VETO
public static ResourceDiscoveryCallback.DiscoveryCallbackResults[] values()
for (ResourceDiscoveryCallback.DiscoveryCallbackResults c : ResourceDiscoveryCallback.DiscoveryCallbackResults.values()) System.out.println(c);
public static ResourceDiscoveryCallback.DiscoveryCallbackResults 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 © 2008-2014 Red Hat, Inc.. All Rights Reserved.