public enum ModuleCapability extends Enum<ModuleCapability>
Enum Constant and Description |
---|
BINARY_CONTENT_ACCESSIBLE_VIA_FILESYSTEM |
DATA_SOURCE_FILTER |
EXPAND_ARCHIVES |
HAS_BINARY_CONTENT |
SUPPORTS_INCREMENTALS |
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
static ModuleCapability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleCapability BINARY_CONTENT_ACCESSIBLE_VIA_FILESYSTEM
public static final ModuleCapability DATA_SOURCE_FILTER
public static final ModuleCapability EXPAND_ARCHIVES
public static final ModuleCapability HAS_BINARY_CONTENT
public static final ModuleCapability SUPPORTS_INCREMENTALS
public static ModuleCapability[] values()
for (ModuleCapability c : ModuleCapability.values()) System.out.println(c);
public static ModuleCapability 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 String getDescription()
Copyright © 2007, 2013, Oracle and/or its affiliates. All rights reserved.