public enum FrameworkOptions extends Enum<FrameworkOptions>
Enum Constant and Description |
---|
BOOT_DELEGATION
Boot delegation string passed on to the OSGi framework.
|
IGNORE_BUNDLE_VERSIONS
Ignore exact bundle versions and use whatever version is available.
|
PRINT_OSGI_INFO
Print debug information related to the OSGi framework's boot/shutdown
process.
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
String |
getOptString() |
static FrameworkOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameworkOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameworkOptions PRINT_OSGI_INFO
public static final FrameworkOptions IGNORE_BUNDLE_VERSIONS
public static final FrameworkOptions BOOT_DELEGATION
public static FrameworkOptions[] values()
for (FrameworkOptions c : FrameworkOptions.values()) System.out.println(c);
public static FrameworkOptions 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 getOptString()
public String getDescription()
Copyright © 2017. All rights reserved.