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