public class BooleanConverter extends AbstractSingleValueConverter
Modifier and Type | Field and Description |
---|---|
static BooleanConverter |
BINARY |
static BooleanConverter |
TRUE_FALSE |
static BooleanConverter |
YES_NO |
Constructor and Description |
---|
BooleanConverter() |
BooleanConverter(String positive,
String negative,
boolean caseSensitive) |
Modifier and Type | Method and Description |
---|---|
boolean |
canConvert(Class type)
Determines whether the converter can marshall a particular type.
|
Object |
fromString(String str)
Unmarshals an Object from its single value representation.
|
boolean |
shouldConvert(Class type,
Object value)
Deprecated.
As of 1.4.8 use
canConvert(Class) |
String |
toString(Object obj)
Marshals an Object into a single value representation.
|
public static final BooleanConverter TRUE_FALSE
public static final BooleanConverter YES_NO
public static final BooleanConverter BINARY
public boolean shouldConvert(Class type, Object value)
canConvert(Class)
public boolean canConvert(Class type)
ConverterMatcher
canConvert
in interface ConverterMatcher
canConvert
in class AbstractSingleValueConverter
type
- the Class representing the object type to be convertedpublic Object fromString(String str)
SingleValueConverter
fromString
in interface SingleValueConverter
fromString
in class AbstractSingleValueConverter
str
- the String with the single value of the Objectpublic String toString(Object obj)
SingleValueConverter
toString
in interface SingleValueConverter
toString
in class AbstractSingleValueConverter
obj
- the Object to be convertednull
Copyright © 2004–2017 XStream. All rights reserved.