|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DependencyRelationships>
com.threerings.jpkg.debian.dependency.DependencyRelationships
public enum DependencyRelationships
Holds the valid dependency relationships supported by Debian packaging system.
Enum Constant Summary | |
---|---|
EARLIER_OR_EQUAL
The strictly earlier relationship, indicating the dependency's version must be "lesser" than or equal to the declared version. |
|
EXACTLY_EQUAL
The exactly equal relationship, indicating the dependency's version must be equal to the declared version. |
|
LATER_OR_EQUAL
The later or equal relationship, indicating the dependency's version must be "greater" than or equal to the declared version. |
|
STRICTLY_EARLIER
The strictly earlier relationship, indicating the dependency's version must be "lesser" than and not equal to the declared version. |
|
STRICTLY_LATER
The strictly later relationship, indicating the dependency's version must be "greater" than and not equal to the declared version. |
Method Summary | |
---|---|
String |
getOperator()
Returns the string representation of this dependency relationship. |
static DependencyRelationships |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DependencyRelationships[] |
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 DependencyRelationships STRICTLY_EARLIER
public static final DependencyRelationships EARLIER_OR_EQUAL
public static final DependencyRelationships EXACTLY_EQUAL
public static final DependencyRelationships LATER_OR_EQUAL
public static final DependencyRelationships STRICTLY_LATER
Method Detail |
---|
public static final DependencyRelationships[] values()
for(DependencyRelationships c : DependencyRelationships.values()) System.out.println(c);
public static DependencyRelationships 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 String getOperator()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |