Enum RankingMeasure
- java.lang.Object
- 
- java.lang.Enum<RankingMeasure>
- 
- com.oracle.bmc.databasemanagement.model.RankingMeasure
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<RankingMeasure>
 
 @Generated(value="OracleSDKGenerator", comments="API Version: 20201101") public enum RankingMeasure extends Enum<RankingMeasure> implements BmcEnumDefines an ORDER BY clause on the selected SQL represented by SQLSET_ROW object.Possible values are defined in the enum structure below. 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BufferGetsCpuTimeDirectWritesDiskReadsElapsedTimeOptimizerCost
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RankingMeasurecreate(String key)StringgetValue()static RankingMeasurevalueOf(String name)Returns the enum constant of this type with the specified name.static RankingMeasure[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ElapsedTimepublic static final RankingMeasure ElapsedTime 
 - 
CpuTimepublic static final RankingMeasure CpuTime 
 - 
OptimizerCostpublic static final RankingMeasure OptimizerCost 
 - 
BufferGetspublic static final RankingMeasure BufferGets 
 - 
DiskReadspublic static final RankingMeasure DiskReads 
 - 
DirectWritespublic static final RankingMeasure DirectWrites 
 
- 
 - 
Method Detail- 
valuespublic static RankingMeasure[] 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 (RankingMeasure c : RankingMeasure.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static RankingMeasure 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static RankingMeasure create(String key) 
 
- 
 
-