org.apache.karaf.features
Enum FeaturesService.Option

java.lang.Object
  extended by java.lang.Enum<FeaturesService.Option>
      extended by org.apache.karaf.features.FeaturesService.Option
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FeaturesService.Option>
Enclosing interface:
FeaturesService

public static enum FeaturesService.Option
extends java.lang.Enum<FeaturesService.Option>


Enum Constant Summary
ContinueBatchOnFailure
           
NoAutoRefreshBundles
           
NoCleanIfFailure
           
PrintBundlesToRefresh
           
Verbose
           
 
Method Summary
static FeaturesService.Option valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FeaturesService.Option[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NoCleanIfFailure

public static final FeaturesService.Option NoCleanIfFailure

PrintBundlesToRefresh

public static final FeaturesService.Option PrintBundlesToRefresh

NoAutoRefreshBundles

public static final FeaturesService.Option NoAutoRefreshBundles

ContinueBatchOnFailure

public static final FeaturesService.Option ContinueBatchOnFailure

Verbose

public static final FeaturesService.Option Verbose
Method Detail

values

public static FeaturesService.Option[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (FeaturesService.Option c : FeaturesService.Option.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FeaturesService.Option valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2007-2011 Apache Software Foundation. All Rights Reserved.