java.lang.Object
org.newsclub.net.unix.NamedInteger
org.newsclub.net.unix.tipc.AFTIPCErrInfo.ErrorCode
- All Implemented Interfaces:
Serializable
- Enclosing class:
AFTIPCErrInfo
@NonNullByDefault
public static final class AFTIPCErrInfo.ErrorCode
extends org.newsclub.net.unix.NamedInteger
Some TIPC error code.
- Author:
- Christian Kohlschütter
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.newsclub.net.unix.NamedInteger
org.newsclub.net.unix.NamedInteger.HasOfValue, org.newsclub.net.unix.NamedInteger.UndefinedValueConstructor<T extends org.newsclub.net.unix.NamedInteger>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final AFTIPCErrInfo.ErrorCode
Normal connection shutdown occurred.static final AFTIPCErrInfo.ErrorCode
Destination port name is unknown.static final AFTIPCErrInfo.ErrorCode
Destination node is unreachable.static final AFTIPCErrInfo.ErrorCode
Destination port id does not exist.static final AFTIPCErrInfo.ErrorCode
Destination is congested.static final AFTIPCErrInfo.ErrorCode
No error. -
Method Summary
Modifier and TypeMethodDescriptionstatic AFTIPCErrInfo.ErrorCode
ofValue
(int v) Returns anAFTIPCErrInfo.ErrorCode
instance given an integer.Methods inherited from class org.newsclub.net.unix.NamedInteger
equals, hashCode, init, name, ofValue, toString, value
-
Field Details
-
TIPC_OK
No error. -
TIPC_ERR_NO_NAME
Destination port name is unknown. -
TIPC_ERR_NO_PORT
Destination port id does not exist. -
TIPC_ERR_NO_NODE
Destination node is unreachable. -
TIPC_ERR_OVERLOAD
Destination is congested. -
TIPC_ERR_CONN_SHUTDOWN
Normal connection shutdown occurred.
-
-
Method Details
-
ofValue
Returns anAFTIPCErrInfo.ErrorCode
instance given an integer.- Parameters:
v
- The value.- Returns:
- The instance.
-