bibliothek.gui.dock.station.support
Enum PlaceholderList.Level

java.lang.Object
  extended by java.lang.Enum<PlaceholderList.Level>
      extended by bibliothek.gui.dock.station.support.PlaceholderList.Level
All Implemented Interfaces:
Serializable, Comparable<PlaceholderList.Level>
Enclosing class:
PlaceholderList<D,S,P extends PlaceholderListItem<D>>

public static enum PlaceholderList.Level
extends Enum<PlaceholderList.Level>

identifiers for the various sublists this list consists of


Enum Constant Summary
BASE
           
DOCKABLE
           
PLACEHOLDER
           
 
Method Summary
static PlaceholderList.Level valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PlaceholderList.Level[] 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

BASE

public static final PlaceholderList.Level BASE

DOCKABLE

public static final PlaceholderList.Level DOCKABLE

PLACEHOLDER

public static final PlaceholderList.Level PLACEHOLDER
Method Detail

values

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

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

valueOf

public static PlaceholderList.Level 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