Package org.jsoup.nodes
Class Range.AttributeRange
- java.lang.Object
-
- org.jsoup.nodes.Range.AttributeRange
-
- Enclosing class:
- Range
public static class Range.AttributeRange extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private Range
nameRange
(package private) static Range.AttributeRange
UntrackedAttr
private Range
valueRange
-
Constructor Summary
Constructors Constructor Description AttributeRange(Range nameRange, Range valueRange)
Creates a new AttributeRange.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
Range
nameRange()
Get the source range for the attribute's name.java.lang.String
toString()
Get a String presentation of this Attribute range, in the formline,column:pos-line,column:pos=line,column:pos-line,column:pos
(name start - name end = val start - val end).Range
valueRange()
Get the source range for the attribute's value.
-
-
-
Field Detail
-
UntrackedAttr
static final Range.AttributeRange UntrackedAttr
-
nameRange
private final Range nameRange
-
valueRange
private final Range valueRange
-
-
Method Detail
-
nameRange
public Range nameRange()
Get the source range for the attribute's name.
-
valueRange
public Range valueRange()
Get the source range for the attribute's value.
-
toString
public java.lang.String toString()
Get a String presentation of this Attribute range, in the formline,column:pos-line,column:pos=line,column:pos-line,column:pos
(name start - name end = val start - val end). .- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-