Package zmq
Enum Config
- java.lang.Object
-
- java.lang.Enum<Config>
-
- zmq.Config
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOCK_PRECISION
COMMAND_PIPE_GRANULARITY
IN_BATCH_SIZE
INBOUND_POLL_RATE
MAX_COMMAND_DELAY
MAX_IO_EVENTS
MAX_WM_DELTA
MESSAGE_PIPE_GRANULARITY
MSG_ALLOCATION_HEAP_THRESHOLD
OUT_BATCH_SIZE
PGM_MAX_TPDU
SIGNALER_PORT
-
Field Summary
Fields Modifier and Type Field Description private int
value
-
Constructor Summary
Constructors Modifier Constructor Description private
Config(int value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static Config
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Config[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MESSAGE_PIPE_GRANULARITY
public static final Config MESSAGE_PIPE_GRANULARITY
-
COMMAND_PIPE_GRANULARITY
public static final Config COMMAND_PIPE_GRANULARITY
-
INBOUND_POLL_RATE
public static final Config INBOUND_POLL_RATE
-
IN_BATCH_SIZE
public static final Config IN_BATCH_SIZE
-
OUT_BATCH_SIZE
public static final Config OUT_BATCH_SIZE
-
MAX_WM_DELTA
public static final Config MAX_WM_DELTA
-
MAX_IO_EVENTS
public static final Config MAX_IO_EVENTS
-
MAX_COMMAND_DELAY
public static final Config MAX_COMMAND_DELAY
-
CLOCK_PRECISION
public static final Config CLOCK_PRECISION
-
PGM_MAX_TPDU
public static final Config PGM_MAX_TPDU
-
SIGNALER_PORT
public static final Config SIGNALER_PORT
-
MSG_ALLOCATION_HEAP_THRESHOLD
public static final Config MSG_ALLOCATION_HEAP_THRESHOLD
-
-
Method Detail
-
values
public static Config[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Config c : Config.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Config valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public int getValue()
-
-