rabbit.html
Class Tag.Pair

java.lang.Object
  extended by rabbit.html.Tag.Pair
Enclosing class:
Tag

public static class Tag.Pair
extends Object

This class is a key value pair.


Field Summary
 String key
          The key of this pair.
 String lcKey
          The lowercase key..
 String value
          The value of this pair.
 
Constructor Summary
Tag.Pair(String key, String value)
          Create a new pair with given key and value.
 
Method Summary
 String getLowerCaseKey()
           
 String toString()
          Get a String representation of this Pair.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

key

public String key
The key of this pair.


lcKey

public String lcKey
The lowercase key..


value

public String value
The value of this pair.

Constructor Detail

Tag.Pair

public Tag.Pair(String key,
                String value)
Create a new pair with given key and value.

Parameters:
key - the key.
value - the value.
Method Detail

toString

public String toString()
Get a String representation of this Pair.

Overrides:
toString in class Object
Returns:
a string representation of this Pair.

getLowerCaseKey

public String getLowerCaseKey()