Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.base.jmod - Base Module
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module.
JDK 11 Base module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.base.jmod.
JDK 11 Base module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Base module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/nio/StringCharBuffer.java
/* * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.nio; // ## If the sequence is a string, use reflection to share its array class StringCharBuffer // package-private extends CharBuffer { CharSequence str; StringCharBuffer(CharSequence s, int start, int end) { // package-private super(-1, start, end, s.length()); int n = s.length(); if ((start < 0) || (start > n) || (end < start) || (end > n)) throw new IndexOutOfBoundsException(); str = s; this.isReadOnly = true; } public CharBuffer slice() { return new StringCharBuffer(str, -1, 0, this.remaining(), this.remaining(), offset + this.position()); } private StringCharBuffer(CharSequence s, int mark, int pos, int limit, int cap, int offset) { super(mark, pos, limit, cap, null, offset); str = s; this.isReadOnly = true; } public CharBuffer duplicate() { return new StringCharBuffer(str, markValue(), position(), limit(), capacity(), offset); } public CharBuffer asReadOnlyBuffer() { return duplicate(); } public final char get() { return str.charAt(nextGetIndex() + offset); } public final char get(int index) { return str.charAt(checkIndex(index) + offset); } char getUnchecked(int index) { return str.charAt(index + offset); } // ## Override bulk get methods for better performance public final CharBuffer put(char c) { throw new ReadOnlyBufferException(); } public final CharBuffer put(int index, char c) { throw new ReadOnlyBufferException(); } public final CharBuffer compact() { throw new ReadOnlyBufferException(); } public final boolean isReadOnly() { return true; } final String toString(int start, int end) { return str.subSequence(start + offset, end + offset).toString(); } public final CharBuffer subSequence(int start, int end) { try { int pos = position(); return new StringCharBuffer(str, -1, pos + checkIndex(start, pos), pos + checkIndex(end, pos), capacity(), offset); } catch (IllegalArgumentException x) { throw new IndexOutOfBoundsException(); } } public boolean isDirect() { return false; } public ByteOrder order() { return ByteOrder.nativeOrder(); } ByteOrder charRegionOrder() { return null; } public boolean equals(Object ob) { if (this == ob) return true; if (!(ob instanceof CharBuffer)) return false; CharBuffer that = (CharBuffer)ob; if (this.remaining() != that.remaining()) return false; return BufferMismatch.mismatch(this, this.position(), that, that.position(), this.remaining()) < 0; } public int compareTo(CharBuffer that) { int i = BufferMismatch.mismatch(this, this.position(), that, that.position(), Math.min(this.remaining(), that.remaining())); if (i >= 0) { return Character.compare(this.get(this.position() + i), that.get(that.position() + i)); } return this.remaining() - that.remaining(); } }
⏎ java/nio/StringCharBuffer.java
Or download all of them as a single archive file:
File name: java.base-11.0.1-src.zip File size: 8740354 bytes Release date: 2018-11-04 Download
2020-05-29, 242188👍, 0💬
Popular Posts:
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
JDK 11 jdk.xml.dom.jmod is the JMOD file for JDK 11 XML DOM module. JDK 11 XML DOM module compiled c...
io.jar is a component in iText Java library to provide input/output functionalities. iText Java libr...
JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module. JDK 11 Hotspot Agent...
ZooKeeper is a centralized service for maintaining configuration information, naming, providing dist...