Package org.jboss.marshalling.util
Class BooleanReadField
- java.lang.Object
-
- org.jboss.marshalling.util.ReadField
-
- org.jboss.marshalling.util.BooleanReadField
-
- All Implemented Interfaces:
Comparable<ReadField>
public class BooleanReadField extends ReadField
A read field whose value is a boolean type.
-
-
Constructor Summary
Constructors Constructor Description BooleanReadField(SerializableField field)Construct a new instance with the default value.BooleanReadField(SerializableField field, boolean value)Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetBoolean()Get the boolean value of this field.KindgetKind()Get the kind of field represented by this object.
-
-
-
Constructor Detail
-
BooleanReadField
public BooleanReadField(SerializableField field, boolean value)
Construct a new instance.- Parameters:
field- the serializable fieldvalue- the value
-
BooleanReadField
public BooleanReadField(SerializableField field)
Construct a new instance with the default value.- Parameters:
field- the serializable field
-
-
Method Detail
-
getKind
public Kind getKind()
Get the kind of field represented by this object.
-
getBoolean
public boolean getBoolean() throws IOExceptionGet the boolean value of this field.- Overrides:
getBooleanin classReadField- Returns:
- the boolean value of this field
- Throws:
IOException- if the value cannot be read
-
-