|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Todo.Compatibility>
bibliothek.util.Todo.Compatibility
public static enum Todo.Compatibility
Tells whether a Todo is backwards compatible
| Enum Constant Summary | |
|---|---|
BREAK_MAJOR
Clients will need to be updated as well |
|
BREAK_MINOR
Some internal classes are affected, clients should not notice the change |
|
COMPATIBLE
The modification affects only a method or class, noone will notice the change |
|
| Method Summary | |
|---|---|
static Todo.Compatibility |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Todo.Compatibility[] |
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 |
|---|
public static final Todo.Compatibility COMPATIBLE
public static final Todo.Compatibility BREAK_MINOR
public static final Todo.Compatibility BREAK_MAJOR
| Method Detail |
|---|
public static Todo.Compatibility[] values()
for (Todo.Compatibility c : Todo.Compatibility.values()) System.out.println(c);
public static Todo.Compatibility valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||