org.mule.devkit.generation.studio.packaging
Enum Placeholder

java.lang.Object
  extended by java.lang.Enum<Placeholder>
      extended by org.mule.devkit.generation.studio.packaging.Placeholder
All Implemented Interfaces:
Serializable, Comparable<Placeholder>

public enum Placeholder
extends Enum<Placeholder>


Nested Class Summary
static interface Placeholder.PlaceholderMap<T>
           
 
Enum Constant Summary
CLASSES_DIRECTORY
           
FEATURES_DIRECTORY
           
GENERATED_SOURCES_DIRECTORY
           
OUTPUT_DIRECTORY
           
PLUGINS_DIRECTORY
           
ROOT_DIRECTORY
           
UPDATE_SITE_DIRECTORY
           
 
Method Summary
static Placeholder valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Placeholder[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
abstract
<T> T
visit(Placeholder.PlaceholderMap<T> placeholderMap)
           
 
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

PLUGINS_DIRECTORY

public static final Placeholder PLUGINS_DIRECTORY

FEATURES_DIRECTORY

public static final Placeholder FEATURES_DIRECTORY

CLASSES_DIRECTORY

public static final Placeholder CLASSES_DIRECTORY

UPDATE_SITE_DIRECTORY

public static final Placeholder UPDATE_SITE_DIRECTORY

OUTPUT_DIRECTORY

public static final Placeholder OUTPUT_DIRECTORY

GENERATED_SOURCES_DIRECTORY

public static final Placeholder GENERATED_SOURCES_DIRECTORY

ROOT_DIRECTORY

public static final Placeholder ROOT_DIRECTORY
Method Detail

values

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

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

valueOf

public static Placeholder 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

visit

public abstract <T> T visit(Placeholder.PlaceholderMap<T> placeholderMap)


Copyright © 2010–2014 MuleSoft, Inc.. All rights reserved.