public enum DepthStep extends Enum<DepthStep>
| Enum Constant and Description |
|---|
STEP0
step0,step1,step2,step3,step4,step5
|
STEP1 |
STEP2 |
STEP3 |
STEP4 |
STEP5 |
| Modifier and Type | Method and Description |
|---|---|
String |
getStep() |
static DepthStep |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DepthStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DepthStep STEP0
public static final DepthStep STEP1
public static final DepthStep STEP2
public static final DepthStep STEP3
public static final DepthStep STEP4
public static final DepthStep STEP5
public static DepthStep[] values()
for (DepthStep c : DepthStep.values()) System.out.println(c);
public static DepthStep valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getStep()
Copyright © 2021. All rights reserved.