|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FuzzyDate.Precision>
ch.claudio.contactdb.data.FuzzyDate.Precision
public static enum FuzzyDate.Precision
The possible interval precisions that can be handled.
Enum Constant Summary | |
---|---|
day
The date defines a full day. |
|
minute
The date defines a specific minute |
|
second
The date feines a specific second |
Method Summary | |
---|---|
static FuzzyDate.Precision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FuzzyDate.Precision[] |
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 FuzzyDate.Precision day
public static final FuzzyDate.Precision minute
public static final FuzzyDate.Precision second
Method Detail |
---|
public static FuzzyDate.Precision[] values()
for (FuzzyDate.Precision c : FuzzyDate.Precision.values()) System.out.println(c);
public static FuzzyDate.Precision valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |