public enum O365JobStatus extends Enum<O365JobStatus>
| Enum Constant and Description | 
|---|
| Failed | 
| Running | 
| Stopped | 
| Success | 
| Warning | 
| Modifier and Type | Method and Description | 
|---|---|
| static O365JobStatus | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static O365JobStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final O365JobStatus Stopped
public static final O365JobStatus Running
public static final O365JobStatus Success
public static final O365JobStatus Warning
public static final O365JobStatus Failed
public static O365JobStatus[] values()
for (O365JobStatus c : O365JobStatus.values()) System.out.println(c);
public static O365JobStatus 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 © 2020 iland Internet Solutions, Corp. All rights reserved.