ホーム › Networking.Clustering › CLUSTER_STORAGENODE_STATE
CLUSTER_STORAGENODE_STATE
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| ClusterStorageNodeStateUnknown | 0 | 0x0 |
| ClusterStorageNodeUp | 1 | 0x1 |
| ClusterStorageNodeDown | 2 | 0x2 |
| ClusterStorageNodePaused | 3 | 0x3 |
| ClusterStorageNodeStarting | 4 | 0x4 |
| ClusterStorageNodeStopping | 5 | 0x5 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum CLUSTER_STORAGENODE_STATE : int {
ClusterStorageNodeStateUnknown = 0,
ClusterStorageNodeUp = 1,
ClusterStorageNodeDown = 2,
ClusterStorageNodePaused = 3,
ClusterStorageNodeStarting = 4,
ClusterStorageNodeStopping = 5
} CLUSTER_STORAGENODE_STATE;public enum CLUSTER_STORAGENODE_STATE : int
{
ClusterStorageNodeStateUnknown = 0,
ClusterStorageNodeUp = 1,
ClusterStorageNodeDown = 2,
ClusterStorageNodePaused = 3,
ClusterStorageNodeStarting = 4,
ClusterStorageNodeStopping = 5,
}Public Enum CLUSTER_STORAGENODE_STATE As Integer
ClusterStorageNodeStateUnknown = 0
ClusterStorageNodeUp = 1
ClusterStorageNodeDown = 2
ClusterStorageNodePaused = 3
ClusterStorageNodeStarting = 4
ClusterStorageNodeStopping = 5
End Enumimport enum
class CLUSTER_STORAGENODE_STATE(enum.IntEnum):
ClusterStorageNodeStateUnknown = 0
ClusterStorageNodeUp = 1
ClusterStorageNodeDown = 2
ClusterStorageNodePaused = 3
ClusterStorageNodeStarting = 4
ClusterStorageNodeStopping = 5// CLUSTER_STORAGENODE_STATE
pub const ClusterStorageNodeStateUnknown: i32 = 0;
pub const ClusterStorageNodeUp: i32 = 1;
pub const ClusterStorageNodeDown: i32 = 2;
pub const ClusterStorageNodePaused: i32 = 3;
pub const ClusterStorageNodeStarting: i32 = 4;
pub const ClusterStorageNodeStopping: i32 = 5;// CLUSTER_STORAGENODE_STATE
const (
ClusterStorageNodeStateUnknown int32 = 0
ClusterStorageNodeUp int32 = 1
ClusterStorageNodeDown int32 = 2
ClusterStorageNodePaused int32 = 3
ClusterStorageNodeStarting int32 = 4
ClusterStorageNodeStopping int32 = 5
)const
ClusterStorageNodeStateUnknown = 0;
ClusterStorageNodeUp = 1;
ClusterStorageNodeDown = 2;
ClusterStorageNodePaused = 3;
ClusterStorageNodeStarting = 4;
ClusterStorageNodeStopping = 5;// CLUSTER_STORAGENODE_STATE
pub const ClusterStorageNodeStateUnknown: i32 = 0;
pub const ClusterStorageNodeUp: i32 = 1;
pub const ClusterStorageNodeDown: i32 = 2;
pub const ClusterStorageNodePaused: i32 = 3;
pub const ClusterStorageNodeStarting: i32 = 4;
pub const ClusterStorageNodeStopping: i32 = 5;const
ClusterStorageNodeStateUnknown* = 0
ClusterStorageNodeUp* = 1
ClusterStorageNodeDown* = 2
ClusterStorageNodePaused* = 3
ClusterStorageNodeStarting* = 4
ClusterStorageNodeStopping* = 5enum CLUSTER_STORAGENODE_STATE : int {
ClusterStorageNodeStateUnknown = 0,
ClusterStorageNodeUp = 1,
ClusterStorageNodeDown = 2,
ClusterStorageNodePaused = 3,
ClusterStorageNodeStarting = 4,
ClusterStorageNodeStopping = 5,
}#define global ClusterStorageNodeStateUnknown 0x0
#define global ClusterStorageNodeUp 0x1
#define global ClusterStorageNodeDown 0x2
#define global ClusterStorageNodePaused 0x3
#define global ClusterStorageNodeStarting 0x4
#define global ClusterStorageNodeStopping 0x5