Uses of Interface
org.kordamp.json.util.PropertyFilter
-
Packages that use PropertyFilter Package Description org.kordamp.json The core of the libraryorg.kordamp.json.filters Support for custom serialization -
-
Uses of PropertyFilter in org.kordamp.json
Fields in org.kordamp.json declared as PropertyFilter Modifier and Type Field Description private PropertyFilter
JsonConfig. javaPropertyFilter
private PropertyFilter
JsonConfig. jsonPropertyFilter
Methods in org.kordamp.json that return PropertyFilter Modifier and Type Method Description PropertyFilter
JsonConfig. getJavaPropertyFilter()
Returns the configured property filter when serializing to Java.
[JSON -> Java]PropertyFilter
JsonConfig. getJsonPropertyFilter()
Returns the configured property filter when serializing to JSON.
[Java -> JSON]Methods in org.kordamp.json with parameters of type PropertyFilter Modifier and Type Method Description void
JsonConfig. setJavaPropertyFilter(PropertyFilter javaPropertyFilter)
Sets a property filter used when serializing to Java.
[JSON -> Java]void
JsonConfig. setJsonPropertyFilter(PropertyFilter jsonPropertyFilter)
Sets a property filter used when serializing to JSON.
[Java -> JSON] -
Uses of PropertyFilter in org.kordamp.json.filters
Classes in org.kordamp.json.filters that implement PropertyFilter Modifier and Type Class Description class
AndPropertyFilter
class
CompositePropertyFilter
class
FalsePropertyFilter
class
MappingPropertyFilter
class
NotPropertyFilter
class
OrPropertyFilter
class
TruePropertyFilter
Fields in org.kordamp.json.filters declared as PropertyFilter Modifier and Type Field Description private PropertyFilter
NotPropertyFilter. filter
private PropertyFilter
AndPropertyFilter. filter1
private PropertyFilter
OrPropertyFilter. filter1
private PropertyFilter
AndPropertyFilter. filter2
private PropertyFilter
OrPropertyFilter. filter2
Methods in org.kordamp.json.filters with parameters of type PropertyFilter Modifier and Type Method Description void
CompositePropertyFilter. addPropertyFilter(PropertyFilter filter)
void
MappingPropertyFilter. addPropertyFilter(java.lang.Object target, PropertyFilter filter)
void
CompositePropertyFilter. removePropertyFilter(PropertyFilter filter)
Constructors in org.kordamp.json.filters with parameters of type PropertyFilter Constructor Description AndPropertyFilter(PropertyFilter filter1, PropertyFilter filter2)
NotPropertyFilter(PropertyFilter filter)
OrPropertyFilter(PropertyFilter filter1, PropertyFilter filter2)
-