public enum PluginChannelDirection extends Enum<PluginChannelDirection>
| 列挙型定数と説明 |
|---|
INCOMING
The plugin channel is being sent to the server from a client.
|
OUTGOING
The plugin channel is being sent to a client from the server.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static PluginChannelDirection |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static PluginChannelDirection[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final PluginChannelDirection INCOMING
public static final PluginChannelDirection OUTGOING
public static PluginChannelDirection[] values()
for(PluginChannelDirection c: PluginChannelDirection.values()) System.out.println(c);
public static PluginChannelDirection valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合Copyright © 2016. All rights reserved.