- java.lang.Object
-
- java.lang.Enum<FlowModifier>
-
- swim.io.FlowModifier
-
- All Implemented Interfaces:
Serializable,Comparable<FlowModifier>,Debug
public enum FlowModifier extends Enum<FlowModifier> implements Debug
Network channel flow delta, modifying read and write operations. Represents an atomic change to aFlowControlstate.- See Also:
FlowControl,FlowContext
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLE_READread operation should be disabled; write operation should not be modified.DISABLE_READ_ENABLE_WRITEread operation should be disabled; write operation should be enabled.DISABLE_READ_WRITEread and write operations should be disabled.DISABLE_WRITEwrite operation should be disabled; read operation should not be modified.DISABLE_WRITE_ENABLE_READwrite operation should be disabled; read operation should be enabled.ENABLE_READread operation should be enabled; write operation should not be modified.ENABLE_READ_WRITEread and write operations should be enabled.ENABLE_WRITEwrite operation should be enabled; read operation should not be modified.RESELECTread and write operations should not be modified.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FlowModifierand(FlowModifier that)Returns theFlowModifierwith all modifications applied inthisandthatapplied, with enable instructions taking precedence over conflicting disable instructions.<T> Output<T>debug(Output<T> output)Writes a developer readable, debug-formatted string representation of this object tooutput.booleanisReadDisabled()Returnstrueif the read operation should be disabled.booleanisReadEnabled()Returnstrueif the read operation should be enabled.booleanisWriteDisabled()Returnstrueif the write operation should be disabled.booleanisWriteEnabled()Returnstrueif the write operation should be enabled.FlowModifiernot()Returns theFlowModifierwith all applied modifications inthisunapplied, and all unapplied operations inthisapplied, with enable instructions taking precedence over conflicting disable instructions.FlowModifieror(FlowModifier that)Returns theFlowModifierwith all modifications applied inthisorthatapplied, with enable instructions taking precedence over conflicting disable instructions.static FlowModifiervalueOf(String name)Returns the enum constant of this type with the specified name.static FlowModifier[]values()Returns an array containing the constants of this enum type, in the order they are declared.FlowModifierxor(FlowModifier that)Returns theFlowModifierwith all modifications applied inthisorthat—but not both—applied, with enable instructions taking precedence over conflicting disable instructions.
-
-
-
Enum Constant Detail
-
RESELECT
public static final FlowModifier RESELECT
read and write operations should not be modified.
-
DISABLE_READ
public static final FlowModifier DISABLE_READ
read operation should be disabled; write operation should not be modified.
-
DISABLE_WRITE
public static final FlowModifier DISABLE_WRITE
write operation should be disabled; read operation should not be modified.
-
DISABLE_READ_WRITE
public static final FlowModifier DISABLE_READ_WRITE
read and write operations should be disabled.
-
ENABLE_READ
public static final FlowModifier ENABLE_READ
read operation should be enabled; write operation should not be modified.
-
DISABLE_WRITE_ENABLE_READ
public static final FlowModifier DISABLE_WRITE_ENABLE_READ
write operation should be disabled; read operation should be enabled.
-
ENABLE_WRITE
public static final FlowModifier ENABLE_WRITE
write operation should be enabled; read operation should not be modified.
-
DISABLE_READ_ENABLE_WRITE
public static final FlowModifier DISABLE_READ_ENABLE_WRITE
read operation should be disabled; write operation should be enabled.
-
ENABLE_READ_WRITE
public static final FlowModifier ENABLE_READ_WRITE
read and write operations should be enabled.
-
-
Method Detail
-
values
public static FlowModifier[] 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 (FlowModifier c : FlowModifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowModifier valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isReadDisabled
public boolean isReadDisabled()
Returnstrueif the read operation should be disabled.
-
isWriteDisabled
public boolean isWriteDisabled()
Returnstrueif the write operation should be disabled.
-
isReadEnabled
public boolean isReadEnabled()
Returnstrueif the read operation should be enabled.
-
isWriteEnabled
public boolean isWriteEnabled()
Returnstrueif the write operation should be enabled.
-
or
public FlowModifier or(FlowModifier that)
Returns theFlowModifierwith all modifications applied inthisorthatapplied, with enable instructions taking precedence over conflicting disable instructions.
-
xor
public FlowModifier xor(FlowModifier that)
Returns theFlowModifierwith all modifications applied inthisorthat—but not both—applied, with enable instructions taking precedence over conflicting disable instructions.
-
and
public FlowModifier and(FlowModifier that)
Returns theFlowModifierwith all modifications applied inthisandthatapplied, with enable instructions taking precedence over conflicting disable instructions.
-
not
public FlowModifier not()
Returns theFlowModifierwith all applied modifications inthisunapplied, and all unapplied operations inthisapplied, with enable instructions taking precedence over conflicting disable instructions.
-
-