Searched defs:CoderResult (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/nio/charset/
H A DCoderResult.java29 * <code>CoderResult.UNDERFLOW</code>.
31 * by the unique object <code>CoderResult.OVERFLOW</code>.
34 * calling <code>CoderResult.malformedForLength(int)</code> with the length of
38 * result by calling <code>CoderResult.unmappableForLength(int)</code> with
42 public class CoderResult { class
60 public static final CoderResult UNDERFLOW = new CoderResult(TYPE_UNDERFLOW,
67 public static final CoderResult OVERFLOW = new CoderResult(TYPE_OVERFLOW, 0);
73 private static WeakHashMap<Integer, CoderResult> _malformedError
95 private CoderResult(int type, int length) { method in class:CoderResult
[all...]

Completed in 50 milliseconds