|
![]() |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DependencyOrder>
org.jtools.depend.DependencyOrder
public enum DependencyOrder
Predefined dependency orders for default target order.
Enum Constant Summary | |
---|---|
KEY
Targets are ordered in the "natural" order of their keys. |
|
ORDER
Targets are ordered in their declaration sequence. |
|
REVERSE_KEY
Targets are ordered in the reverse "natural" order of their keys. |
|
REVERSE_ORDER
Targets are ordered in their declaration sequence. |
|
REVERSE_USEROBJECT
Targets are ordered in the reverse "natural" order of their userObjects. |
|
USEROBJECT
Targets are ordered in the "natural" order of their userObjects. |
Method Summary | |
---|---|
Comparator<DependencyElement> |
getComparator()
|
static DependencyOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DependencyOrder[] |
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 |
---|
public static final DependencyOrder KEY
public static final DependencyOrder REVERSE_KEY
public static final DependencyOrder ORDER
public static final DependencyOrder REVERSE_ORDER
public static final DependencyOrder USEROBJECT
public static final DependencyOrder REVERSE_USEROBJECT
Method Detail |
---|
public static final DependencyOrder[] values()
for(DependencyOrder c : DependencyOrder.values()) System.out.println(c);
public static DependencyOrder valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic Comparator<DependencyElement> getComparator()
|
![]() |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |