Lines Matching refs:charset

28 package java.nio.charset;
36 import java.nio.charset.CoderMalfunctionError; // javadoc
116 * specific charset, which is a concrete subclass of this class, need only
138 private final Charset charset;
187 this.charset = cs;
232 * Returns the charset that created this $coder$. </p>
234 * @return This $coder$'s charset
236 public final Charset charset() {
237 return charset;
313 * bytes in this encoder's charset; that is, it must be possible to decode
328 dec = charset().newDecoder();
683 * <p> This method resets charset-independent state and also invokes the
685 * charset-specific reset actions. </p>
697 * Resets this $coder$, clearing any charset-specific internal state.
807 * Tells whether or not this decoder implements an auto-detecting charset.
814 * auto-detecting charset
822 * charset&nbsp;&nbsp;<i>(optional operation)</i>.
824 * <p> If this decoder implements an auto-detecting charset then at a
826 * <tt>true</tt> to indicate that a specific charset has been detected in
828 * detectedCharset} method may be invoked to retrieve the detected charset.
833 * a particular charset.
837 * auto-detecting decoders to return <tt>true</tt> once the input charset
841 * specific charset
844 * If this decoder does not implement an auto-detecting charset
851 * Retrieves the charset that was detected by this
854 * <p> If this decoder implements an auto-detecting charset then this
855 * method returns the actual charset once it has been detected. After that
858 * read to determine the actual charset then this method throws an {@link
865 * @return The charset detected by this auto-detecting decoder,
866 * or <tt>null</tt> if the charset has not yet been determined
869 * If insufficient bytes have been read to determine a charset
872 * If this decoder does not implement an auto-detecting charset