Package org.jboss.marshalling.util
Class BooleanFieldPutter
java.lang.Object
org.jboss.marshalling.util.FieldPutter
org.jboss.marshalling.util.BooleanFieldPutter
A field putter for boolean-type fields.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Get the boolean value of this field.getKind()
Get the kind of field being written.void
setBoolean
(boolean value) Set the boolean value of this field.void
write
(Marshaller marshaller) Write the value of this field in its proper native format.
-
Field Details
-
value
private boolean value
-
-
Constructor Details
-
BooleanFieldPutter
public BooleanFieldPutter()
-
-
Method Details
-
write
Write the value of this field in its proper native format.- Specified by:
write
in classFieldPutter
- Parameters:
marshaller
- the marshaller to which to write- Throws:
IOException
- if an error occurs
-
getKind
Get the kind of field being written.- Specified by:
getKind
in classFieldPutter
- Returns:
- the kind of field
-
setBoolean
public void setBoolean(boolean value) Set the boolean value of this field.- Overrides:
setBoolean
in classFieldPutter
- Parameters:
value
- the boolean value of this field
-
getBoolean
public boolean getBoolean()Get the boolean value of this field.- Overrides:
getBoolean
in classFieldPutter
- Returns:
- the boolean value of this field
-