次の方法で共有


DeploymentStatus クラス

public final class DeploymentStatus
extends ExpandableStringEnum<DeploymentStatus>

DeploymentStatus の値を定義します。

フィールドの概要

修飾子と型 フィールドと説明
static final DeploymentStatus FAILED

デプロイの状態の静的な値が失敗しました。

static final DeploymentStatus IN_PROGRESS

デプロイの状態の静的な値が進行中です。

static final DeploymentStatus NOT_STARTED

デプロイの状態の静的な値が開始されていません

static final DeploymentStatus SUCCEEDED

デプロイの状態の静的な値が成功しました。

コンストラクターの概要

コンストラクター 説明
DeploymentStatus()

非推奨

ファクトリ メソッドを使用します fromString(String name)

Deployment Status 値の新しいインスタンスを作成します

メソッドの概要

修飾子と型 メソッドと説明
static DeploymentStatus fromString(String name)

展開状態を文字列表現から作成または検索します。

static Collection<DeploymentStatus> values()

既知の展開状態の値を取得します

メソッドの継承元: ExpandableStringEnum

メソッドの継承元: java.lang.Object

フィールドの詳細

FAILED

public static final DeploymentStatus FAILED

DeploymentStatus の静的値 Failed。

IN_PROGRESS

public static final DeploymentStatus IN_PROGRESS

DeploymentStatus の静的な値 InProgress。

NOT_STARTED

public static final DeploymentStatus NOT_STARTED

DeploymentStatus の静的な値 NotStarted。

SUCCEEDED

public static final DeploymentStatus SUCCEEDED

DeploymentStatus の静的値 Succeeded。

コンストラクターの詳細

DeploymentStatus

@Deprecated
public DeploymentStatus()

非推奨

ファクトリ メソッドを使用します fromString(String name)

DeploymentStatus 値の新しいインスタンスを作成します。

メソッドの詳細

fromString

public static DeploymentStatus fromString(String name)

DeploymentStatus を文字列表現から作成または検索します。

Parameters:

name - 検索する名前。

Returns:

対応する DeploymentStatus。

values

public static Collection values()

既知の DeploymentStatus 値を取得します。

Returns:

既知の DeploymentStatus 値。

適用対象