Package org.tribuo.interop.oci
Enum Class OCIModelCLI.OCIModelOptions.Mode
java.lang.Object
java.lang.Enum<OCIModelCLI.OCIModelOptions.Mode>
org.tribuo.interop.oci.OCIModelCLI.OCIModelOptions.Mode
- All Implemented Interfaces:
Serializable
,Comparable<OCIModelCLI.OCIModelOptions.Mode>
,Constable
- Enclosing class:
- OCIModelCLI.OCIModelOptions
Mode for the CLI.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCreate a Model artifact, upload it to OCI and create a Model Deployment.Create a Model deployment.Score a deployed model. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static OCIModelCLI.OCIModelOptions.Mode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATE_AND_DEPLOY
Create a Model artifact, upload it to OCI and create a Model Deployment. -
DEPLOY
Create a Model deployment. -
SCORE
Score a deployed model.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-