org.pentaho.di.trans.steps.getrepositorynames
Enum ObjectTypeSelection

java.lang.Object
  extended by java.lang.Enum<ObjectTypeSelection>
      extended by org.pentaho.di.trans.steps.getrepositorynames.ObjectTypeSelection
All Implemented Interfaces:
Serializable, Comparable<ObjectTypeSelection>

public enum ObjectTypeSelection
extends Enum<ObjectTypeSelection>


Enum Constant Summary
All
           
Jobs
           
Transformations
           
 
Method Summary
 boolean areJobsSelected()
           
 boolean areTransformationsSelected()
           
 String getDescription()
           
static ObjectTypeSelection getObjectTypeSelectionByDescription(String description)
           
static ObjectTypeSelection valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ObjectTypeSelection[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Transformations

public static final ObjectTypeSelection Transformations

Jobs

public static final ObjectTypeSelection Jobs

All

public static final ObjectTypeSelection All
Method Detail

values

public static ObjectTypeSelection[] 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 (ObjectTypeSelection c : ObjectTypeSelection.values())
    System.out.println(c);

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

valueOf

public static ObjectTypeSelection valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getDescription

public String getDescription()

areTransformationsSelected

public boolean areTransformationsSelected()

areJobsSelected

public boolean areJobsSelected()

getObjectTypeSelectionByDescription

public static ObjectTypeSelection getObjectTypeSelectionByDescription(String description)