@Generated(value="OracleSDKGenerator", comments="API Version: 20190506") public final class SkillParameter extends Object
Metadata for a Skill Parameter.
Note: Objects should always be created or deserialized using the SkillParameter.Builder
. This model distinguishes fields
that are null
because they are unset from fields that are explicitly set to null
. This is done in
the setter methods of the SkillParameter.Builder
, which maintain a set of all explicitly set fields called
__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take
__explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
SkillParameter.Builder |
Constructor and Description |
---|
SkillParameter(String name,
String displayName,
String description,
ParameterType type,
String value,
LifecycleState lifecycleState)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static SkillParameter.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
String |
getDescription()
A description of the Parameter.
|
String |
getDisplayName()
The display name for the Parameter.
|
LifecycleState |
getLifecycleState()
The Parameter’s current state.
|
String |
getName()
The Parameter name.
|
ParameterType |
getType()
The value type.
|
String |
getValue()
The current value.
|
int |
hashCode() |
SkillParameter.Builder |
toBuilder() |
String |
toString() |
@Deprecated @ConstructorProperties(value={"name","displayName","description","type","value","lifecycleState"}) public SkillParameter(String name, String displayName, String description, ParameterType type, String value, LifecycleState lifecycleState)
public static SkillParameter.Builder builder()
Create a new builder.
public SkillParameter.Builder toBuilder()
public String getName()
The Parameter name. This must be unique within the parent resource.
public String getDisplayName()
The display name for the Parameter.
public String getDescription()
A description of the Parameter.
public ParameterType getType()
The value type.
public String getValue()
The current value. The value will be interpreted based on the type
.
public LifecycleState getLifecycleState()
The Parameter’s current state.
Copyright © 2016–2022. All rights reserved.