Package org.simpleframework.xml.stream
Class CamelCaseBuilder.Element
- java.lang.Object
-
- org.simpleframework.xml.stream.Splitter
-
- org.simpleframework.xml.stream.CamelCaseBuilder.Attribute
-
- org.simpleframework.xml.stream.CamelCaseBuilder.Element
-
- Enclosing class:
- CamelCaseBuilder
private class CamelCaseBuilder.Element extends CamelCaseBuilder.Attribute
This is used to parse the style for this builder. This takes all of the words split from the original string and builds all of the processed tokens for the styles elements and attributes.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Element(java.lang.String source)
Constructor for theElement
object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
parse(char[] text, int off, int len)
This is used to parse the provided text in to the style that is required.-
Methods inherited from class org.simpleframework.xml.stream.CamelCaseBuilder.Attribute
commit
-
-
-
-
Method Detail
-
parse
protected void parse(char[] text, int off, int len)
This is used to parse the provided text in to the style that is required. Manipulation of the text before committing it ensures that the text adheres to the required style.- Overrides:
parse
in classCamelCaseBuilder.Attribute
- Parameters:
text
- this is the text buffer to acquire the token fromoff
- this is the offset in the buffer token starts atlen
- this is the length of the token to be parsed
-
-