rabbit.html
Class Tag.pair

java.lang.Object
  extended byrabbit.html.Tag.pair
Enclosing class:
Tag

public class Tag.pair
extends java.lang.Object

This class is a key value pair.


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

Field Detail

key

public java.lang.String key
The key of this pair.


lcKey

public java.lang.String lcKey
The lowercase key..


value

public java.lang.String value
The value of this pair.

Constructor Detail

Tag.pair

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

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

toString

public java.lang.String toString()
Get a String representation of this pair.

Returns:
a string representation of this pair.

getLowerCaseKey

public java.lang.String getLowerCaseKey()