Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CoreLibConstants (0.16 sec)

  1. src/main/java/org/codelibs/core/CoreLibConstants.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core;
    
    import java.nio.charset.Charset;
    
    /**
     * Constants class.
     *
     * @author shinsuke
     *
     */
    public class CoreLibConstants {
    
        /**
         * UTF-8
         */
        public static final String UTF_8 = "UTF-8";
    
        /**
         * UTF-8 Charset.
         */
        public static final Charset CHARSET_UTF_8 = Charset.forName(UTF_8);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top