public enum FileState extends Enum<FileState>
Java class for fileState.
The following schema fragment specifies the expected content contained within this class.
Enum Constant and Description |
---|
ABANDONNED |
CANCELED |
CONFIRMED |
IN_OPTION |
IN_RESERVATION |
NOT_SOLDED |
OPTION_RESERV |
PART_SOLDED |
RUNNING |
SOLDED |
SUSPENDED |
TECH_ERROR |
Modifier and Type | Method and Description |
---|---|
static FileState |
fromValue(String v) |
String |
value() |
static FileState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileState RUNNING
public static final FileState SUSPENDED
public static final FileState IN_OPTION
public static final FileState IN_RESERVATION
public static final FileState OPTION_RESERV
public static final FileState CONFIRMED
public static final FileState SOLDED
public static final FileState NOT_SOLDED
public static final FileState PART_SOLDED
public static final FileState CANCELED
public static final FileState ABANDONNED
public static final FileState TECH_ERROR
public static FileState[] values()
for (FileState c : FileState.values()) System.out.println(c);
public static FileState 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 value()
Copyright © 2021. All rights reserved.