Package com.oracle.bmc.jms.model
Enum JreSortBy
- java.lang.Object
-
- java.lang.Enum<JreSortBy>
-
- com.oracle.bmc.jms.model.JreSortBy
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<JreSortBy>
@Generated(value="OracleSDKGenerator", comments="API Version: 20210610") public enum JreSortBy extends Enum<JreSortBy> implements BmcEnum
The field to sort Java Runtimes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ApproximateApplicationCount
ApproximateInstallationCount
ApproximateManagedInstanceCount
Distribution
OsName
SecurityStatus
TimeFirstSeen
TimeLastSeen
Vendor
Version
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JreSortBy
create(String key)
String
getValue()
static JreSortBy
valueOf(String name)
Returns the enum constant of this type with the specified name.static JreSortBy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Distribution
public static final JreSortBy Distribution
-
TimeFirstSeen
public static final JreSortBy TimeFirstSeen
-
TimeLastSeen
public static final JreSortBy TimeLastSeen
-
Vendor
public static final JreSortBy Vendor
-
Version
public static final JreSortBy Version
-
ApproximateInstallationCount
public static final JreSortBy ApproximateInstallationCount
-
ApproximateApplicationCount
public static final JreSortBy ApproximateApplicationCount
-
ApproximateManagedInstanceCount
public static final JreSortBy ApproximateManagedInstanceCount
-
OsName
public static final JreSortBy OsName
-
SecurityStatus
public static final JreSortBy SecurityStatus
-
-
Method Detail
-
values
public static JreSortBy[] 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 (JreSortBy c : JreSortBy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JreSortBy 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
-
-