@Generated public enum BranchState extends Enum<BranchState>
| Enum Constant and Description |
|---|
ARCHIVED |
IMPORTING |
INIT |
READY |
RESETTING |
| Modifier and Type | Method and Description |
|---|---|
static BranchState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BranchState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BranchState ARCHIVED
public static final BranchState IMPORTING
public static final BranchState INIT
public static final BranchState READY
public static final BranchState RESETTING
public static BranchState[] values()
for (BranchState c : BranchState.values()) System.out.println(c);
public static BranchState 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 nullCopyright © 2025. All rights reserved.