Package org.jboss.marshalling.util
Class CharFieldPutter
- java.lang.Object
-
- org.jboss.marshalling.util.FieldPutter
-
- org.jboss.marshalling.util.CharFieldPutter
-
public class CharFieldPutter extends FieldPutter
A field putter for char-type fields.
-
-
Constructor Summary
Constructors Constructor Description CharFieldPutter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description chargetChar()Get the character value of this field.KindgetKind()Get the kind of field being written.voidsetChar(char value)Set the character value of this field.voidwrite(Marshaller marshaller)Write the value of this field in its proper native format.
-
-
-
Method Detail
-
write
public void write(Marshaller marshaller) throws IOException
Write the value of this field in its proper native format.- Specified by:
writein classFieldPutter- Parameters:
marshaller- the marshaller to which to write- Throws:
IOException- if an error occurs
-
getKind
public Kind getKind()
Get the kind of field being written.- Specified by:
getKindin classFieldPutter- Returns:
- the kind of field
-
getChar
public char getChar()
Get the character value of this field.- Overrides:
getCharin classFieldPutter- Returns:
- the character value of this field
-
setChar
public void setChar(char value)
Set the character value of this field.- Overrides:
setCharin classFieldPutter- Parameters:
value- the character value of this field
-
-