Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

juju.reattore.util
Class CharUtil  view CharUtil download CharUtil.java

java.lang.Object
  extended byjuju.reattore.util.CharUtil

public class CharUtil
extends java.lang.Object

Shared character utility methods.


Field Summary
private static int[] NIBBLES
           
 
Constructor Summary
CharUtil()
           
 
Method Summary
static int fromNibble(int val)
          Turns the given character into it's hex value using the HTTP HEX rules.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NIBBLES

private static final int[] NIBBLES
Constructor Detail

CharUtil

public CharUtil()
Method Detail

fromNibble

public static final int fromNibble(int val)
Turns the given character into it's hex value using the HTTP HEX rules. Basically 0-9, a-f, A-F.