Package org.gnome.gio
Enum Class IOStreamSpliceFlags
- All Implemented Interfaces:
Enumeration
,Serializable
,Comparable<IOStreamSpliceFlags>
,Constable
@Generated("io.github.jwharm.JavaGI")
public enum IOStreamSpliceFlags
extends Enum<IOStreamSpliceFlags>
implements Enumeration
GIOStreamSpliceFlags determine how streams should be spliced.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionClose the first stream after the splice.Close the second stream after the splice.Do not close either stream.Wait for both splice operations to finish before calling the callback. -
Method Summary
Modifier and TypeMethodDescriptionstatic Type
getType()
Get the GType of the IOStreamSpliceFlags classint
getValue()
Get the numeric value of this enumstatic IOStreamSpliceFlags
of
(int value) Create a new IOStreamSpliceFlags for the provided valuestatic IOStreamSpliceFlags
Returns the enum constant of this class with the specified name.static IOStreamSpliceFlags[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Do not close either stream. -
CLOSE_STREAM1
Close the first stream after the splice. -
CLOSE_STREAM2
Close the second stream after the splice. -
WAIT_FOR_BOTH
Wait for both splice operations to finish before calling the callback.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
of
Create a new IOStreamSpliceFlags for the provided value- Parameters:
value
- the bitfield value- Returns:
- the bitfield for the provided value
-
getValue
public int getValue()Get the numeric value of this enum- Specified by:
getValue
in interfaceEnumeration
- Returns:
- the enum value
-
getType
-