blob: 22ab42e497bf4b3604d673332dafde6938b18412 [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
public interface CharValue extends PrimitiveValue, Comparable {
public boolean equals(Object arg1);
public int hashCode();
public char value();
}