Uses of Class
org.simpleframework.xml.core.Session
-
Packages that use Session Package Description org.simpleframework.xml.core -
-
Uses of Session in org.simpleframework.xml.core
Fields in org.simpleframework.xml.core declared as Session Modifier and Type Field Description private SessionSessionManager.Reference. sessionThis is the session object that is maintained by this.private SessionSource. sessionThis is used to store the source context attribute values.Methods in org.simpleframework.xml.core that return Session Modifier and Type Method Description private SessionSessionManager. create(boolean strict)This is used to create a newSessionobject.SessionSessionManager.Reference. get()This is used to acquire the session and increase the count of references to the session.SessionContext. getSession()This is used to acquire theSessionobject that is used to store the values used within the serialization process.SessionSource. getSession()This is used to acquire theSessionobject that is used to store the values used within the serialization process.SessionSessionManager. open()This is used to open a newSessionobject.SessionSessionManager. open(boolean strict)This is used to open a newSessionobject.Methods in org.simpleframework.xml.core with parameters of type Session Modifier and Type Method Description private <T> TPersister. read(java.lang.Class<? extends T> type, InputNode node, Session session)Thisreadmethod will read the contents of the XML document provided and convert it to an object of the specified type.private <T> TPersister. read(T value, InputNode node, Session session)Thisreadmethod will read the contents of the XML document from the provided source and populate the object with the values deserialized.private booleanPersister. validate(java.lang.Class type, InputNode node, Session session)Thisvalidatemethod will validate the contents of the XML document against the specified XML class schema.private voidPersister. write(java.lang.Object source, OutputNode root, Session session)Thiswritemethod will traverse the provided object checking for field annotations in order to compose the XML data.Constructors in org.simpleframework.xml.core with parameters of type Session Constructor Description Source(Strategy strategy, Support support, Session session)Constructor for theSourceobject.
-