Package com.oracle.bmc.datasafe.model
Enum ReportSummary.MimeType
- java.lang.Object
-
- java.lang.Enum<ReportSummary.MimeType>
-
- com.oracle.bmc.datasafe.model.ReportSummary.MimeType
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<ReportSummary.MimeType>
- Enclosing class:
- ReportSummary
public static enum ReportSummary.MimeType extends Enum<ReportSummary.MimeType> implements BmcEnum
Specifies the format of report to be .xls or .pdf or .json.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JsonPdfUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Xls
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReportSummary.MimeTypecreate(String key)StringgetValue()static ReportSummary.MimeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ReportSummary.MimeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Pdf
public static final ReportSummary.MimeType Pdf
-
Xls
public static final ReportSummary.MimeType Xls
-
Json
public static final ReportSummary.MimeType Json
-
UnknownEnumValue
public static final ReportSummary.MimeType UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static ReportSummary.MimeType[] 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 (ReportSummary.MimeType c : ReportSummary.MimeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportSummary.MimeType 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
-
create
public static ReportSummary.MimeType create(String key)
-
-