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> ArcheTextObjectArcheTextFactory. create(String type, String name, T value)Creates a new ArcheTextObject using a POJO (Plain Ol' Java Object) or Map type.static <T> ArcheTextObjectArcheTextFactory. create(String type, T value)Creates a new default ArcheTextObject using a POJO (Plain Ol' Java Object) or Map type.static <T> ArcheTextObjectArcheTextFactory. create(T value)Creates a new anonymous ArcheTextObject using a POJO (Plain Ol' Java Object) or Map type.ArcheTextObjectArcheTextRoot. get(String type)Gets a default object by type.ArcheTextObjectArcheTextRoot. 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 voidArcheTextRoot. add(ArcheTextObject object)Adds an object.voidArcheTextObject. addParent(ArcheTextObject parent)Adds a parent to this object.voidArcheTextObject. cascade(ArcheTextObject addend)Adds the fields and lineage from another object to this object.voidArcheTextObject. pushParent(ArcheTextObject parent)Pushes a parent onto the top of the parent stack.booleanArcheTextRoot. remove(ArcheTextObject object)Removes an ArcheText object from this root.booleanArcheTextObject. 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> TUtils. applyToObject(ArcheTextObject atObject, T object)Applies this object to an object bean / plain ol' Java object.static <T> voidUtils. exportTo(T object, ArcheTextObject atext)Exports the values of an object to an ArcheTextObject. 
 -