Package org.eclipse.jgit.pgm.debug
Enum BenchmarkReftable.Test
- java.lang.Object
-
- java.lang.Enum<BenchmarkReftable.Test>
-
- org.eclipse.jgit.pgm.debug.BenchmarkReftable.Test
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BenchmarkReftable.Test>
- Enclosing class:
- BenchmarkReftable
static enum BenchmarkReftable.Test extends java.lang.Enum<BenchmarkReftable.Test>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BY_ID_COLD
BY_ID_HOT
GET_REFS_EXCLUDING_REF
SCAN
SEEK_COLD
SEEK_HOT
WRITE_STACK
-
Constructor Summary
Constructors Modifier Constructor Description private
Test()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BenchmarkReftable.Test
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BenchmarkReftable.Test[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCAN
public static final BenchmarkReftable.Test SCAN
-
SEEK_COLD
public static final BenchmarkReftable.Test SEEK_COLD
-
SEEK_HOT
public static final BenchmarkReftable.Test SEEK_HOT
-
BY_ID_COLD
public static final BenchmarkReftable.Test BY_ID_COLD
-
BY_ID_HOT
public static final BenchmarkReftable.Test BY_ID_HOT
-
WRITE_STACK
public static final BenchmarkReftable.Test WRITE_STACK
-
GET_REFS_EXCLUDING_REF
public static final BenchmarkReftable.Test GET_REFS_EXCLUDING_REF
-
-
Method Detail
-
values
public static BenchmarkReftable.Test[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BenchmarkReftable.Test c : BenchmarkReftable.Test.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BenchmarkReftable.Test valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-