Package io.keikai.model
Enum SDependencyTracer.Type
- java.lang.Object
-
- java.lang.Enum<SDependencyTracer.Type>
-
- io.keikai.model.SDependencyTracer.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<SDependencyTracer.Type>
- Enclosing interface:
- SDependencyTracer
public static enum SDependencyTracer.Type extends Enum<SDependencyTracer.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SDependencyTracer.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static SDependencyTracer.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRECEDENT
public static final SDependencyTracer.Type PRECEDENT
-
DEPENDENT
public static final SDependencyTracer.Type DEPENDENT
-
-
Method Detail
-
values
public static SDependencyTracer.Type[] 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 (SDependencyTracer.Type c : SDependencyTracer.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SDependencyTracer.Type valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-