public static enum IndexShardSnapshotStatus.Stage extends Enum<IndexShardSnapshotStatus.Stage>
| 列挙型定数と説明 |
|---|
DONE
Snapshot completed successfully
|
FAILURE
Snapshot failed
|
FINALIZE
Snapshot metadata is being written
|
INIT
Snapshot hasn't started yet
|
STARTED
Index files are being copied
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static IndexShardSnapshotStatus.Stage |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static IndexShardSnapshotStatus.Stage[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final IndexShardSnapshotStatus.Stage INIT
public static final IndexShardSnapshotStatus.Stage STARTED
public static final IndexShardSnapshotStatus.Stage FINALIZE
public static final IndexShardSnapshotStatus.Stage DONE
public static final IndexShardSnapshotStatus.Stage FAILURE
public static IndexShardSnapshotStatus.Stage[] values()
for(IndexShardSnapshotStatus.Stage c: IndexShardSnapshotStatus.Stage.values()) System.out.println(c);
public static IndexShardSnapshotStatus.Stage valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合Copyright © 2009–2016. All rights reserved.