public enum BusAction extends Enum<BusAction>
Enum Constant and Description |
---|
DELETE |
DOWNLOAD |
FIND |
GET |
MANAGE |
STATUS |
UPLOAD |
WARNINGS |
Modifier and Type | Method and Description |
---|---|
static BusAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusAction GET
public static final BusAction FIND
public static final BusAction UPLOAD
public static final BusAction DOWNLOAD
public static final BusAction DELETE
public static final BusAction MANAGE
public static final BusAction STATUS
public static final BusAction WARNINGS
public static BusAction[] values()
for (BusAction c : BusAction.values()) System.out.println(c);
public static BusAction 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 © 2023 Frank!Framework. All rights reserved.