net.sourceforge.basher.impl
Enum AbstractFileCollector.Type

java.lang.Object
  extended by java.lang.Enum<AbstractFileCollector.Type>
      extended by net.sourceforge.basher.impl.AbstractFileCollector.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AbstractFileCollector.Type>
Enclosing class:
AbstractFileCollector

public static enum AbstractFileCollector.Type
extends java.lang.Enum<AbstractFileCollector.Type>


Enum Constant Summary
FAILURE
           
NOT_RUN
           
SUCCESS
           
 
Method Summary
static AbstractFileCollector.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AbstractFileCollector.Type[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUCCESS

public static final AbstractFileCollector.Type SUCCESS

FAILURE

public static final AbstractFileCollector.Type FAILURE

NOT_RUN

public static final AbstractFileCollector.Type NOT_RUN
Method Detail

values

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

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

valueOf

public static AbstractFileCollector.Type 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


Copyright © 2006-2010 Basher Team. All Rights Reserved.