@Generated public enum JobSourceDirtyState extends Enum<JobSourceDirtyState>
Possible values are: * `NOT_SYNCED`: The job is not yet synced with the remote job specification. Import the remote job specification from UI to make the job fully synced. * `DISCONNECTED`: The job is temporary disconnected from the remote job specification and is allowed for live edit. Import the remote job specification again from UI to make the job fully synced.
| Enum Constant and Description |
|---|
DISCONNECTED |
NOT_SYNCED |
| Modifier and Type | Method and Description |
|---|---|
static JobSourceDirtyState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobSourceDirtyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobSourceDirtyState DISCONNECTED
public static final JobSourceDirtyState NOT_SYNCED
public static JobSourceDirtyState[] values()
for (JobSourceDirtyState c : JobSourceDirtyState.values()) System.out.println(c);
public static JobSourceDirtyState 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.