Package net.minecraftforge.network
Interface Channel.VersionTest
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Channel.VersionTest
static final Channel.VersionTest
-
Method Summary
Modifier and TypeMethodDescriptionboolean
accepts
(Channel.VersionTest.Status status, int version) Tests is the specified version is compatible with this channel.default Channel.VersionTest
and
(Channel.VersionTest other) Returns a composed instance that represents a short-circuiting logical AND of this instance and another.static Channel.VersionTest
exact
(int version) default Channel.VersionTest
negate()
Returns a instance that represents the logical negation of this instance.default Channel.VersionTest
or
(Channel.VersionTest other) Returns a composed instance that represents a short-circuiting logical OR of this instance and another.
-
Field Details
-
ACCEPT_MISSING
-
ACCEPT_VANILLA
-
-
Method Details
-
exact
-
accepts
Tests is the specified version is compatible with this channel. This determines if a we can communicate with a remote end. The status parameter specifies wither or not the remote knows about out channel or not. If the value isMISSING
orVANILLA
then the version parameter is meaningless. If the status isPRESSENT
then the version parameter is the version presented by the remote connection.- Returns:
- true if we should allow the connection
-
negate
Returns a instance that represents the logical negation of this instance. -
and
Returns a composed instance that represents a short-circuiting logical AND of this instance and another. When evaluating the composed instance, if this instance isfalse
, then theother
instance is not evaluated. -
or
Returns a composed instance that represents a short-circuiting logical OR of this instance and another. When evaluating the composed instance, if this instance istrue
, then theother
instance is not evaluated.
-