Package odata.msgraph.client.enums
Enum DriveItemSourceApplication
- java.lang.Object
-
- java.lang.Enum<DriveItemSourceApplication>
-
- odata.msgraph.client.enums.DriveItemSourceApplication
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<DriveItemSourceApplication>
public enum DriveItemSourceApplication extends Enum<DriveItemSourceApplication> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOKILOOPOFFICEONE_DRIVEOTHERPOWER_POINTSHARE_POINTSTREAMTEAMSUNKNOWN_FUTURE_VALUEYAMMER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static DriveItemSourceApplicationvalueOf(String name)Returns the enum constant of this type with the specified name.static DriveItemSourceApplication[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEAMS
public static final DriveItemSourceApplication TEAMS
-
YAMMER
public static final DriveItemSourceApplication YAMMER
-
SHARE_POINT
public static final DriveItemSourceApplication SHARE_POINT
-
ONE_DRIVE
public static final DriveItemSourceApplication ONE_DRIVE
-
STREAM
public static final DriveItemSourceApplication STREAM
-
POWER_POINT
public static final DriveItemSourceApplication POWER_POINT
-
OFFICE
public static final DriveItemSourceApplication OFFICE
-
LOKI
public static final DriveItemSourceApplication LOKI
-
LOOP
public static final DriveItemSourceApplication LOOP
-
OTHER
public static final DriveItemSourceApplication OTHER
-
UNKNOWN_FUTURE_VALUE
public static final DriveItemSourceApplication UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static DriveItemSourceApplication[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DriveItemSourceApplication c : DriveItemSourceApplication.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DriveItemSourceApplication valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-