Uses of Class
org.yaml.snakeyaml.introspector.Property
Packages that use Property
Package
Description
-
Uses of Property in org.yaml.snakeyaml
Methods in org.yaml.snakeyaml that return PropertyMethods in org.yaml.snakeyaml that return types with arguments of type Property -
Uses of Property in org.yaml.snakeyaml.constructor
Methods in org.yaml.snakeyaml.constructor that return PropertyModifier and TypeMethodDescriptionprotected PropertyConstructor.ConstructMapping.getProperty(Class<? extends Object> type, String name) -
Uses of Property in org.yaml.snakeyaml.introspector
Subclasses of Property in org.yaml.snakeyaml.introspectorModifier and TypeClassDescriptionclassAFieldPropertyis aPropertywhich is accessed as a field, without going through accessor methods (setX, getX).classShared code for all the propertiesclassAMethodPropertyis aPropertywhich is accessed through accessor methods (setX, getX).classA property that does not map to a real property; this is used whenPropertyUtils.setSkipMissingProperties(boolean) is set to true.classClasses in org.yaml.snakeyaml.introspector that implement interfaces with type arguments of type PropertyModifier and TypeClassDescriptionclassAPropertyrepresents a single member variable of a class, possibly including its accessor methods (getX, setX).Methods in org.yaml.snakeyaml.introspector that return PropertyModifier and TypeMethodDescriptionPropertyUtils.getProperty(Class<? extends Object> type, String name) PropertyUtils.getProperty(Class<? extends Object> type, String name, BeanAccess bAccess) Methods in org.yaml.snakeyaml.introspector that return types with arguments of type PropertyModifier and TypeMethodDescriptionPropertyUtils.createPropertySet(Class<? extends Object> type, BeanAccess bAccess) PropertyUtils.getProperties(Class<? extends Object> type) PropertyUtils.getProperties(Class<? extends Object> type, BeanAccess bAccess) PropertyUtils.getPropertiesMap(Class<?> type, BeanAccess bAccess) Methods in org.yaml.snakeyaml.introspector with parameters of type Property -
Uses of Property in org.yaml.snakeyaml.representer
Methods in org.yaml.snakeyaml.representer that return types with arguments of type PropertyModifier and TypeMethodDescriptionRepresenter.getProperties(Class<? extends Object> type) Get JavaBean properties to be serialised.Methods in org.yaml.snakeyaml.representer with parameters of type PropertyModifier and TypeMethodDescriptionprotected voidRepresenter.checkGlobalTag(Property property, Node node, Object object) Remove redundant global tag for a type safe (generic) collection if it is the same as defined by the JavaBean propertyprotected NodeTupleRepresenter.representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag) Represent one JavaBean property.Method parameters in org.yaml.snakeyaml.representer with type arguments of type PropertyModifier and TypeMethodDescriptionprotected MappingNodeRepresenter.representJavaBean(Set<Property> properties, Object javaBean) Tag logic: - explicit root tag is set in serializer - if there is a predefined class tag it is used - a global tag with class name is always used as tag.