|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<InstrumentationCounterPrecision>
de.uka.ipd.sdq.ByCounter.instrumentation.InstrumentationCounterPrecision
public enum InstrumentationCounterPrecision
This enum lists counter precision modes available in ByCounter.
Enum Constant Summary | |
---|---|
Integer
Counters are int values, i.e. counts up to Integer.MAX_VALUE can
be counted. |
|
Long
Counters are long values, i.e. counts up to Long.MAX_VALUE can
be counted. |
Method Summary | |
---|---|
static InstrumentationCounterPrecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static InstrumentationCounterPrecision[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 InstrumentationCounterPrecision Integer
Integer.MAX_VALUE
can
be counted.
public static final InstrumentationCounterPrecision Long
Long.MAX_VALUE
can
be counted.
Method Detail |
---|
public static InstrumentationCounterPrecision[] values()
for (InstrumentationCounterPrecision c : InstrumentationCounterPrecision.values()) System.out.println(c);
public static InstrumentationCounterPrecision 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 |