Uses of Class
com.blackrook.archetext.ArcheTextObject
-
Packages that use ArcheTextObject Package Description com.blackrook.archetext Contains the main classes for ArcheText object generation.com.blackrook.archetext.struct Additional helper data structures and methods. -
-
Uses of ArcheTextObject in com.blackrook.archetext
Methods in com.blackrook.archetext that return ArcheTextObject Modifier and Type Method Description static <T> ArcheTextObject
ArcheTextFactory. create(String type, String name, T value)
Creates a new ArcheTextObject using a POJO (Plain Ol' Java Object) or Map type.static <T> ArcheTextObject
ArcheTextFactory. create(String type, T value)
Creates a new default ArcheTextObject using a POJO (Plain Ol' Java Object) or Map type.static <T> ArcheTextObject
ArcheTextFactory. create(T value)
Creates a new anonymous ArcheTextObject using a POJO (Plain Ol' Java Object) or Map type.ArcheTextObject
ArcheTextRoot. get(String type)
Gets a default object by type.ArcheTextObject
ArcheTextRoot. get(String type, String name)
Gets an object by type and name.ArcheTextObject[]
ArcheTextRoot. getAllByType(String type)
Returns all ArcheTextObjects of a particular type.Methods in com.blackrook.archetext that return types with arguments of type ArcheTextObject Modifier and Type Method Description Iterable<ArcheTextObject>
ArcheTextObject. getParents()
Methods in com.blackrook.archetext with parameters of type ArcheTextObject Modifier and Type Method Description void
ArcheTextRoot. add(ArcheTextObject object)
Adds an object.void
ArcheTextObject. addParent(ArcheTextObject parent)
Adds a parent to this object.void
ArcheTextObject. cascade(ArcheTextObject addend)
Adds the fields and lineage from another object to this object.void
ArcheTextObject. pushParent(ArcheTextObject parent)
Pushes a parent onto the top of the parent stack.boolean
ArcheTextRoot. remove(ArcheTextObject object)
Removes an ArcheText object from this root.boolean
ArcheTextObject. removeParent(ArcheTextObject parent)
Removes a parent from the parent stack. -
Uses of ArcheTextObject in com.blackrook.archetext.struct
Methods in com.blackrook.archetext.struct with parameters of type ArcheTextObject Modifier and Type Method Description static <T> T
Utils. applyToObject(ArcheTextObject atObject, T object)
Applies this object to an object bean / plain ol' Java object.static <T> void
Utils. exportTo(T object, ArcheTextObject atext)
Exports the values of an object to an ArcheTextObject.
-