public class PropertiesConverter extends Object implements Converter
Because all entries of a Properties instance are Strings, a single element is used for each property with two attributes; one for key and one for value.
Additionally, default properties are also serialized, if they are present or if a SecurityManager is set, and it has permissions for SecurityManager.checkPackageAccess, SecurityManager.checkMemberAccess(this, EnumSet.MEMBER) and ReflectPermission("suppressAccessChecks").
Constructor and Description |
---|
PropertiesConverter() |
PropertiesConverter(boolean sort) |
Modifier and Type | Method and Description |
---|---|
boolean |
canConvert(Class type)
Determines whether the converter can marshall a particular type.
|
void |
marshal(Object source,
HierarchicalStreamWriter writer,
MarshallingContext context)
Convert an object to textual data.
|
Object |
unmarshal(HierarchicalStreamReader reader,
UnmarshallingContext context)
Convert textual data back into an object.
|
public PropertiesConverter()
public PropertiesConverter(boolean sort)
public boolean canConvert(Class type)
ConverterMatcher
canConvert
in interface ConverterMatcher
type
- the Class representing the object type to be convertedpublic void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context)
Converter
public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context)
Converter
Copyright © 2004–2017 XStream. All rights reserved.