Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 1 | // Signature format: 2.0 |
| 2 | package android.system { |
| 3 | |
| 4 | public final class ErrnoException extends java.lang.Exception { |
| 5 | ctor public ErrnoException(String, int); |
| 6 | ctor public ErrnoException(String, int, Throwable); |
| 7 | method @NonNull public java.io.IOException rethrowAsIOException() throws java.io.IOException; |
| 8 | method @NonNull public java.net.SocketException rethrowAsSocketException() throws java.net.SocketException; |
| 9 | field public final int errno; |
| 10 | } |
| 11 | |
| 12 | public class Int64Ref { |
| 13 | ctor public Int64Ref(long); |
| 14 | field public long value; |
| 15 | } |
| 16 | |
| 17 | public final class Os { |
| 18 | method public static java.io.FileDescriptor accept(java.io.FileDescriptor, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; |
| 19 | method public static boolean access(String, int) throws android.system.ErrnoException; |
| 20 | method public static void bind(java.io.FileDescriptor, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; |
| 21 | method public static void bind(@NonNull java.io.FileDescriptor, @NonNull java.net.SocketAddress) throws android.system.ErrnoException, java.net.SocketException; |
| 22 | method public static void chmod(String, int) throws android.system.ErrnoException; |
| 23 | method public static void chown(String, int, int) throws android.system.ErrnoException; |
| 24 | method public static void close(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 25 | method public static void connect(java.io.FileDescriptor, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; |
| 26 | method public static void connect(@NonNull java.io.FileDescriptor, @NonNull java.net.SocketAddress) throws android.system.ErrnoException, java.net.SocketException; |
| 27 | method public static java.io.FileDescriptor dup(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 28 | method public static java.io.FileDescriptor dup2(java.io.FileDescriptor, int) throws android.system.ErrnoException; |
| 29 | method public static String[] environ(); |
| 30 | method public static void execv(String, String[]) throws android.system.ErrnoException; |
| 31 | method public static void execve(String, String[], String[]) throws android.system.ErrnoException; |
| 32 | method public static void fchmod(java.io.FileDescriptor, int) throws android.system.ErrnoException; |
| 33 | method public static void fchown(java.io.FileDescriptor, int, int) throws android.system.ErrnoException; |
| 34 | method public static int fcntlInt(@NonNull java.io.FileDescriptor, int, int) throws android.system.ErrnoException; |
| 35 | method public static void fdatasync(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 36 | method public static android.system.StructStat fstat(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 37 | method public static android.system.StructStatVfs fstatvfs(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 38 | method public static void fsync(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 39 | method public static void ftruncate(java.io.FileDescriptor, long) throws android.system.ErrnoException; |
| 40 | method public static String gai_strerror(int); |
| 41 | method public static int getegid(); |
| 42 | method public static String getenv(String); |
| 43 | method public static int geteuid(); |
| 44 | method public static int getgid(); |
| 45 | method public static java.net.SocketAddress getpeername(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 46 | method public static int getpid(); |
| 47 | method public static int getppid(); |
| 48 | method public static java.net.SocketAddress getsockname(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 49 | method @NonNull public static android.system.StructTimeval getsockoptTimeval(@NonNull java.io.FileDescriptor, int, int) throws android.system.ErrnoException; |
| 50 | method public static int gettid(); |
| 51 | method public static int getuid(); |
| 52 | method public static byte[] getxattr(String, String) throws android.system.ErrnoException; |
| 53 | method public static String if_indextoname(int); |
| 54 | method public static int if_nametoindex(String); |
| 55 | method public static java.net.InetAddress inet_pton(int, String); |
| 56 | method public static boolean isatty(java.io.FileDescriptor); |
| 57 | method public static void kill(int, int) throws android.system.ErrnoException; |
| 58 | method public static void lchown(String, int, int) throws android.system.ErrnoException; |
| 59 | method public static void link(String, String) throws android.system.ErrnoException; |
| 60 | method public static void listen(java.io.FileDescriptor, int) throws android.system.ErrnoException; |
| 61 | method public static String[] listxattr(String) throws android.system.ErrnoException; |
| 62 | method public static long lseek(java.io.FileDescriptor, long, int) throws android.system.ErrnoException; |
| 63 | method public static android.system.StructStat lstat(String) throws android.system.ErrnoException; |
| 64 | method @NonNull public static java.io.FileDescriptor memfd_create(@NonNull String, int) throws android.system.ErrnoException; |
| 65 | method public static void mincore(long, long, byte[]) throws android.system.ErrnoException; |
| 66 | method public static void mkdir(String, int) throws android.system.ErrnoException; |
| 67 | method public static void mkfifo(String, int) throws android.system.ErrnoException; |
| 68 | method public static void mlock(long, long) throws android.system.ErrnoException; |
| 69 | method public static long mmap(long, long, int, int, java.io.FileDescriptor, long) throws android.system.ErrnoException; |
| 70 | method public static void msync(long, long, int) throws android.system.ErrnoException; |
| 71 | method public static void munlock(long, long) throws android.system.ErrnoException; |
| 72 | method public static void munmap(long, long) throws android.system.ErrnoException; |
| 73 | method public static java.io.FileDescriptor open(String, int, int) throws android.system.ErrnoException; |
| 74 | method public static java.io.FileDescriptor[] pipe() throws android.system.ErrnoException; |
| 75 | method public static int poll(android.system.StructPollfd[], int) throws android.system.ErrnoException; |
| 76 | method public static void posix_fallocate(java.io.FileDescriptor, long, long) throws android.system.ErrnoException; |
| 77 | method public static int prctl(int, long, long, long, long) throws android.system.ErrnoException; |
| 78 | method public static int pread(java.io.FileDescriptor, java.nio.ByteBuffer, long) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 79 | method public static int pread(java.io.FileDescriptor, byte[], int, int, long) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 80 | method public static int pwrite(java.io.FileDescriptor, java.nio.ByteBuffer, long) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 81 | method public static int pwrite(java.io.FileDescriptor, byte[], int, int, long) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 82 | method public static int read(java.io.FileDescriptor, java.nio.ByteBuffer) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 83 | method public static int read(java.io.FileDescriptor, byte[], int, int) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 84 | method public static String readlink(String) throws android.system.ErrnoException; |
| 85 | method public static int readv(java.io.FileDescriptor, Object[], int[], int[]) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 86 | method public static int recvfrom(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; |
| 87 | method public static int recvfrom(java.io.FileDescriptor, byte[], int, int, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; |
| 88 | method public static void remove(String) throws android.system.ErrnoException; |
| 89 | method public static void removexattr(String, String) throws android.system.ErrnoException; |
| 90 | method public static void rename(String, String) throws android.system.ErrnoException; |
| 91 | method public static long sendfile(java.io.FileDescriptor, java.io.FileDescriptor, android.system.Int64Ref, long) throws android.system.ErrnoException; |
| 92 | method public static int sendto(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; |
| 93 | method public static int sendto(java.io.FileDescriptor, byte[], int, int, int, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; |
| 94 | method public static int sendto(@NonNull java.io.FileDescriptor, @NonNull byte[], int, int, int, @Nullable java.net.SocketAddress) throws android.system.ErrnoException, java.net.SocketException; |
| 95 | method @Deprecated public static void setegid(int) throws android.system.ErrnoException; |
| 96 | method public static void setenv(String, String, boolean) throws android.system.ErrnoException; |
| 97 | method @Deprecated public static void seteuid(int) throws android.system.ErrnoException; |
| 98 | method @Deprecated public static void setgid(int) throws android.system.ErrnoException; |
| 99 | method public static int setsid() throws android.system.ErrnoException; |
| 100 | method public static void setsockoptInt(java.io.FileDescriptor, int, int, int) throws android.system.ErrnoException; |
| 101 | method public static void setsockoptTimeval(@NonNull java.io.FileDescriptor, int, int, @NonNull android.system.StructTimeval) throws android.system.ErrnoException; |
| 102 | method @Deprecated public static void setuid(int) throws android.system.ErrnoException; |
| 103 | method public static void setxattr(String, String, byte[], int) throws android.system.ErrnoException; |
| 104 | method public static void shutdown(java.io.FileDescriptor, int) throws android.system.ErrnoException; |
| 105 | method public static java.io.FileDescriptor socket(int, int, int) throws android.system.ErrnoException; |
| 106 | method public static void socketpair(int, int, int, java.io.FileDescriptor, java.io.FileDescriptor) throws android.system.ErrnoException; |
| 107 | method public static android.system.StructStat stat(String) throws android.system.ErrnoException; |
| 108 | method public static android.system.StructStatVfs statvfs(String) throws android.system.ErrnoException; |
| 109 | method public static String strerror(int); |
| 110 | method public static String strsignal(int); |
| 111 | method public static void symlink(String, String) throws android.system.ErrnoException; |
| 112 | method public static long sysconf(int); |
| 113 | method public static void tcdrain(java.io.FileDescriptor) throws android.system.ErrnoException; |
| 114 | method public static void tcsendbreak(java.io.FileDescriptor, int) throws android.system.ErrnoException; |
| 115 | method public static int umask(int); |
| 116 | method public static android.system.StructUtsname uname(); |
| 117 | method public static void unsetenv(String) throws android.system.ErrnoException; |
| 118 | method public static int write(java.io.FileDescriptor, java.nio.ByteBuffer) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 119 | method public static int write(java.io.FileDescriptor, byte[], int, int) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 120 | method public static int writev(java.io.FileDescriptor, Object[], int[], int[]) throws android.system.ErrnoException, java.io.InterruptedIOException; |
| 121 | } |
| 122 | |
| 123 | public final class OsConstants { |
| 124 | method public static boolean S_ISBLK(int); |
| 125 | method public static boolean S_ISCHR(int); |
| 126 | method public static boolean S_ISDIR(int); |
| 127 | method public static boolean S_ISFIFO(int); |
| 128 | method public static boolean S_ISLNK(int); |
| 129 | method public static boolean S_ISREG(int); |
| 130 | method public static boolean S_ISSOCK(int); |
| 131 | method public static boolean WCOREDUMP(int); |
| 132 | method public static int WEXITSTATUS(int); |
| 133 | method public static boolean WIFEXITED(int); |
| 134 | method public static boolean WIFSIGNALED(int); |
| 135 | method public static boolean WIFSTOPPED(int); |
| 136 | method public static int WSTOPSIG(int); |
| 137 | method public static int WTERMSIG(int); |
| 138 | method public static String errnoName(int); |
| 139 | method public static String gaiName(int); |
| 140 | field public static final int AF_INET; |
| 141 | field public static final int AF_INET6; |
| 142 | field public static final int AF_NETLINK; |
| 143 | field public static final int AF_PACKET; |
| 144 | field public static final int AF_UNIX; |
| 145 | field public static final int AF_UNSPEC; |
| 146 | field public static final int AI_ADDRCONFIG; |
| 147 | field public static final int AI_ALL; |
| 148 | field public static final int AI_CANONNAME; |
| 149 | field public static final int AI_NUMERICHOST; |
| 150 | field public static final int AI_NUMERICSERV; |
| 151 | field public static final int AI_PASSIVE; |
| 152 | field public static final int AI_V4MAPPED; |
| 153 | field public static final int ARPHRD_ETHER; |
| 154 | field public static final int CAP_AUDIT_CONTROL; |
| 155 | field public static final int CAP_AUDIT_WRITE; |
| 156 | field public static final int CAP_BLOCK_SUSPEND; |
| 157 | field public static final int CAP_CHOWN; |
| 158 | field public static final int CAP_DAC_OVERRIDE; |
| 159 | field public static final int CAP_DAC_READ_SEARCH; |
| 160 | field public static final int CAP_FOWNER; |
| 161 | field public static final int CAP_FSETID; |
| 162 | field public static final int CAP_IPC_LOCK; |
| 163 | field public static final int CAP_IPC_OWNER; |
| 164 | field public static final int CAP_KILL; |
| 165 | field public static final int CAP_LAST_CAP; |
| 166 | field public static final int CAP_LEASE; |
| 167 | field public static final int CAP_LINUX_IMMUTABLE; |
| 168 | field public static final int CAP_MAC_ADMIN; |
| 169 | field public static final int CAP_MAC_OVERRIDE; |
| 170 | field public static final int CAP_MKNOD; |
| 171 | field public static final int CAP_NET_ADMIN; |
| 172 | field public static final int CAP_NET_BIND_SERVICE; |
| 173 | field public static final int CAP_NET_BROADCAST; |
| 174 | field public static final int CAP_NET_RAW; |
| 175 | field public static final int CAP_SETFCAP; |
| 176 | field public static final int CAP_SETGID; |
| 177 | field public static final int CAP_SETPCAP; |
| 178 | field public static final int CAP_SETUID; |
| 179 | field public static final int CAP_SYSLOG; |
| 180 | field public static final int CAP_SYS_ADMIN; |
| 181 | field public static final int CAP_SYS_BOOT; |
| 182 | field public static final int CAP_SYS_CHROOT; |
| 183 | field public static final int CAP_SYS_MODULE; |
| 184 | field public static final int CAP_SYS_NICE; |
| 185 | field public static final int CAP_SYS_PACCT; |
| 186 | field public static final int CAP_SYS_PTRACE; |
| 187 | field public static final int CAP_SYS_RAWIO; |
| 188 | field public static final int CAP_SYS_RESOURCE; |
| 189 | field public static final int CAP_SYS_TIME; |
| 190 | field public static final int CAP_SYS_TTY_CONFIG; |
| 191 | field public static final int CAP_WAKE_ALARM; |
| 192 | field public static final int E2BIG; |
| 193 | field public static final int EACCES; |
| 194 | field public static final int EADDRINUSE; |
| 195 | field public static final int EADDRNOTAVAIL; |
| 196 | field public static final int EAFNOSUPPORT; |
| 197 | field public static final int EAGAIN; |
| 198 | field public static final int EAI_AGAIN; |
| 199 | field public static final int EAI_BADFLAGS; |
| 200 | field public static final int EAI_FAIL; |
| 201 | field public static final int EAI_FAMILY; |
| 202 | field public static final int EAI_MEMORY; |
| 203 | field public static final int EAI_NODATA; |
| 204 | field public static final int EAI_NONAME; |
| 205 | field public static final int EAI_OVERFLOW; |
| 206 | field public static final int EAI_SERVICE; |
| 207 | field public static final int EAI_SOCKTYPE; |
| 208 | field public static final int EAI_SYSTEM; |
| 209 | field public static final int EALREADY; |
| 210 | field public static final int EBADF; |
| 211 | field public static final int EBADMSG; |
| 212 | field public static final int EBUSY; |
| 213 | field public static final int ECANCELED; |
| 214 | field public static final int ECHILD; |
| 215 | field public static final int ECONNABORTED; |
| 216 | field public static final int ECONNREFUSED; |
| 217 | field public static final int ECONNRESET; |
| 218 | field public static final int EDEADLK; |
| 219 | field public static final int EDESTADDRREQ; |
| 220 | field public static final int EDOM; |
| 221 | field public static final int EDQUOT; |
| 222 | field public static final int EEXIST; |
| 223 | field public static final int EFAULT; |
| 224 | field public static final int EFBIG; |
| 225 | field public static final int EHOSTUNREACH; |
| 226 | field public static final int EIDRM; |
| 227 | field public static final int EILSEQ; |
| 228 | field public static final int EINPROGRESS; |
| 229 | field public static final int EINTR; |
| 230 | field public static final int EINVAL; |
| 231 | field public static final int EIO; |
| 232 | field public static final int EISCONN; |
| 233 | field public static final int EISDIR; |
| 234 | field public static final int ELOOP; |
| 235 | field public static final int EMFILE; |
| 236 | field public static final int EMLINK; |
| 237 | field public static final int EMSGSIZE; |
| 238 | field public static final int EMULTIHOP; |
| 239 | field public static final int ENAMETOOLONG; |
| 240 | field public static final int ENETDOWN; |
| 241 | field public static final int ENETRESET; |
| 242 | field public static final int ENETUNREACH; |
| 243 | field public static final int ENFILE; |
| 244 | field public static final int ENOBUFS; |
| 245 | field public static final int ENODATA; |
| 246 | field public static final int ENODEV; |
| 247 | field public static final int ENOENT; |
| 248 | field public static final int ENOEXEC; |
| 249 | field public static final int ENOLCK; |
| 250 | field public static final int ENOLINK; |
| 251 | field public static final int ENOMEM; |
| 252 | field public static final int ENOMSG; |
| 253 | field public static final int ENOPROTOOPT; |
| 254 | field public static final int ENOSPC; |
| 255 | field public static final int ENOSR; |
| 256 | field public static final int ENOSTR; |
| 257 | field public static final int ENOSYS; |
| 258 | field public static final int ENOTCONN; |
| 259 | field public static final int ENOTDIR; |
| 260 | field public static final int ENOTEMPTY; |
| 261 | field public static final int ENOTSOCK; |
| 262 | field public static final int ENOTSUP; |
| 263 | field public static final int ENOTTY; |
| 264 | field public static final int ENXIO; |
| 265 | field public static final int EOPNOTSUPP; |
| 266 | field public static final int EOVERFLOW; |
| 267 | field public static final int EPERM; |
| 268 | field public static final int EPIPE; |
| 269 | field public static final int EPROTO; |
| 270 | field public static final int EPROTONOSUPPORT; |
| 271 | field public static final int EPROTOTYPE; |
| 272 | field public static final int ERANGE; |
| 273 | field public static final int EROFS; |
| 274 | field public static final int ESPIPE; |
| 275 | field public static final int ESRCH; |
| 276 | field public static final int ESTALE; |
| 277 | field public static final int ETH_P_ALL; |
| 278 | field public static final int ETH_P_ARP; |
| 279 | field public static final int ETH_P_IP; |
| 280 | field public static final int ETH_P_IPV6; |
| 281 | field public static final int ETIME; |
| 282 | field public static final int ETIMEDOUT; |
| 283 | field public static final int ETXTBSY; |
| 284 | field public static final int EXDEV; |
| 285 | field public static final int EXIT_FAILURE; |
| 286 | field public static final int EXIT_SUCCESS; |
| 287 | field public static final int FD_CLOEXEC; |
| 288 | field public static final int FIONREAD; |
| 289 | field public static final int F_DUPFD; |
| 290 | field public static final int F_DUPFD_CLOEXEC; |
| 291 | field public static final int F_GETFD; |
| 292 | field public static final int F_GETFL; |
| 293 | field public static final int F_GETLK; |
| 294 | field public static final int F_GETLK64; |
| 295 | field public static final int F_GETOWN; |
| 296 | field public static final int F_OK; |
| 297 | field public static final int F_RDLCK; |
| 298 | field public static final int F_SETFD; |
| 299 | field public static final int F_SETFL; |
| 300 | field public static final int F_SETLK; |
| 301 | field public static final int F_SETLK64; |
| 302 | field public static final int F_SETLKW; |
| 303 | field public static final int F_SETLKW64; |
| 304 | field public static final int F_SETOWN; |
| 305 | field public static final int F_UNLCK; |
| 306 | field public static final int F_WRLCK; |
| 307 | field public static final int ICMP6_ECHO_REPLY; |
| 308 | field public static final int ICMP6_ECHO_REQUEST; |
| 309 | field public static final int ICMP_ECHO; |
| 310 | field public static final int ICMP_ECHOREPLY; |
| 311 | field public static final int IFA_F_DADFAILED; |
| 312 | field public static final int IFA_F_DEPRECATED; |
| 313 | field public static final int IFA_F_HOMEADDRESS; |
| 314 | field public static final int IFA_F_NODAD; |
| 315 | field public static final int IFA_F_OPTIMISTIC; |
| 316 | field public static final int IFA_F_PERMANENT; |
| 317 | field public static final int IFA_F_SECONDARY; |
| 318 | field public static final int IFA_F_TEMPORARY; |
| 319 | field public static final int IFA_F_TENTATIVE; |
| 320 | field public static final int IFF_ALLMULTI; |
| 321 | field public static final int IFF_AUTOMEDIA; |
| 322 | field public static final int IFF_BROADCAST; |
| 323 | field public static final int IFF_DEBUG; |
| 324 | field public static final int IFF_DYNAMIC; |
| 325 | field public static final int IFF_LOOPBACK; |
| 326 | field public static final int IFF_MASTER; |
| 327 | field public static final int IFF_MULTICAST; |
| 328 | field public static final int IFF_NOARP; |
| 329 | field public static final int IFF_NOTRAILERS; |
| 330 | field public static final int IFF_POINTOPOINT; |
| 331 | field public static final int IFF_PORTSEL; |
| 332 | field public static final int IFF_PROMISC; |
| 333 | field public static final int IFF_RUNNING; |
| 334 | field public static final int IFF_SLAVE; |
| 335 | field public static final int IFF_UP; |
| 336 | field public static final int IPPROTO_ICMP; |
| 337 | field public static final int IPPROTO_ICMPV6; |
| 338 | field public static final int IPPROTO_IP; |
| 339 | field public static final int IPPROTO_IPV6; |
| 340 | field public static final int IPPROTO_RAW; |
| 341 | field public static final int IPPROTO_TCP; |
| 342 | field public static final int IPPROTO_UDP; |
| 343 | field public static final int IPV6_CHECKSUM; |
| 344 | field public static final int IPV6_MULTICAST_HOPS; |
| 345 | field public static final int IPV6_MULTICAST_IF; |
| 346 | field public static final int IPV6_MULTICAST_LOOP; |
| 347 | field public static final int IPV6_RECVDSTOPTS; |
| 348 | field public static final int IPV6_RECVHOPLIMIT; |
| 349 | field public static final int IPV6_RECVHOPOPTS; |
| 350 | field public static final int IPV6_RECVPKTINFO; |
| 351 | field public static final int IPV6_RECVRTHDR; |
| 352 | field public static final int IPV6_RECVTCLASS; |
| 353 | field public static final int IPV6_TCLASS; |
| 354 | field public static final int IPV6_UNICAST_HOPS; |
| 355 | field public static final int IPV6_V6ONLY; |
| 356 | field public static final int IP_MULTICAST_IF; |
| 357 | field public static final int IP_MULTICAST_LOOP; |
| 358 | field public static final int IP_MULTICAST_TTL; |
| 359 | field public static final int IP_TOS; |
| 360 | field public static final int IP_TTL; |
| 361 | field public static final int MAP_ANONYMOUS; |
| 362 | field public static final int MAP_FIXED; |
| 363 | field public static final int MAP_PRIVATE; |
| 364 | field public static final int MAP_SHARED; |
| 365 | field public static final int MCAST_BLOCK_SOURCE; |
| 366 | field public static final int MCAST_JOIN_GROUP; |
| 367 | field public static final int MCAST_JOIN_SOURCE_GROUP; |
| 368 | field public static final int MCAST_LEAVE_GROUP; |
| 369 | field public static final int MCAST_LEAVE_SOURCE_GROUP; |
| 370 | field public static final int MCAST_UNBLOCK_SOURCE; |
| 371 | field public static final int MCL_CURRENT; |
| 372 | field public static final int MCL_FUTURE; |
| 373 | field public static final int MFD_CLOEXEC; |
| 374 | field public static final int MSG_CTRUNC; |
| 375 | field public static final int MSG_DONTROUTE; |
| 376 | field public static final int MSG_EOR; |
| 377 | field public static final int MSG_OOB; |
| 378 | field public static final int MSG_PEEK; |
| 379 | field public static final int MSG_TRUNC; |
| 380 | field public static final int MSG_WAITALL; |
| 381 | field public static final int MS_ASYNC; |
| 382 | field public static final int MS_INVALIDATE; |
| 383 | field public static final int MS_SYNC; |
| 384 | field public static final int NETLINK_INET_DIAG; |
| 385 | field public static final int NETLINK_NETFILTER; |
| 386 | field public static final int NETLINK_ROUTE; |
| 387 | field public static final int NI_DGRAM; |
| 388 | field public static final int NI_NAMEREQD; |
| 389 | field public static final int NI_NOFQDN; |
| 390 | field public static final int NI_NUMERICHOST; |
| 391 | field public static final int NI_NUMERICSERV; |
| 392 | field public static final int O_ACCMODE; |
| 393 | field public static final int O_APPEND; |
| 394 | field public static final int O_CLOEXEC; |
| 395 | field public static final int O_CREAT; |
| 396 | field public static final int O_DSYNC; |
| 397 | field public static final int O_EXCL; |
| 398 | field public static final int O_NOCTTY; |
| 399 | field public static final int O_NOFOLLOW; |
| 400 | field public static final int O_NONBLOCK; |
| 401 | field public static final int O_RDONLY; |
| 402 | field public static final int O_RDWR; |
| 403 | field public static final int O_SYNC; |
| 404 | field public static final int O_TRUNC; |
| 405 | field public static final int O_WRONLY; |
| 406 | field public static final int POLLERR; |
| 407 | field public static final int POLLHUP; |
| 408 | field public static final int POLLIN; |
| 409 | field public static final int POLLNVAL; |
| 410 | field public static final int POLLOUT; |
| 411 | field public static final int POLLPRI; |
| 412 | field public static final int POLLRDBAND; |
| 413 | field public static final int POLLRDNORM; |
| 414 | field public static final int POLLWRBAND; |
| 415 | field public static final int POLLWRNORM; |
| 416 | field public static final int PROT_EXEC; |
| 417 | field public static final int PROT_NONE; |
| 418 | field public static final int PROT_READ; |
| 419 | field public static final int PROT_WRITE; |
| 420 | field public static final int PR_GET_DUMPABLE; |
| 421 | field public static final int PR_SET_DUMPABLE; |
| 422 | field public static final int PR_SET_NO_NEW_PRIVS; |
| 423 | field public static final int RTMGRP_NEIGH; |
| 424 | field public static final int RT_SCOPE_HOST; |
| 425 | field public static final int RT_SCOPE_LINK; |
| 426 | field public static final int RT_SCOPE_NOWHERE; |
| 427 | field public static final int RT_SCOPE_SITE; |
| 428 | field public static final int RT_SCOPE_UNIVERSE; |
| 429 | field public static final int R_OK; |
| 430 | field public static final int SEEK_CUR; |
| 431 | field public static final int SEEK_END; |
| 432 | field public static final int SEEK_SET; |
| 433 | field public static final int SHUT_RD; |
| 434 | field public static final int SHUT_RDWR; |
| 435 | field public static final int SHUT_WR; |
| 436 | field public static final int SIGABRT; |
| 437 | field public static final int SIGALRM; |
| 438 | field public static final int SIGBUS; |
| 439 | field public static final int SIGCHLD; |
| 440 | field public static final int SIGCONT; |
| 441 | field public static final int SIGFPE; |
| 442 | field public static final int SIGHUP; |
| 443 | field public static final int SIGILL; |
| 444 | field public static final int SIGINT; |
| 445 | field public static final int SIGIO; |
| 446 | field public static final int SIGKILL; |
| 447 | field public static final int SIGPIPE; |
| 448 | field public static final int SIGPROF; |
| 449 | field public static final int SIGPWR; |
| 450 | field public static final int SIGQUIT; |
| 451 | field public static final int SIGRTMAX; |
| 452 | field public static final int SIGRTMIN; |
| 453 | field public static final int SIGSEGV; |
| 454 | field public static final int SIGSTKFLT; |
| 455 | field public static final int SIGSTOP; |
| 456 | field public static final int SIGSYS; |
| 457 | field public static final int SIGTERM; |
| 458 | field public static final int SIGTRAP; |
| 459 | field public static final int SIGTSTP; |
| 460 | field public static final int SIGTTIN; |
| 461 | field public static final int SIGTTOU; |
| 462 | field public static final int SIGURG; |
| 463 | field public static final int SIGUSR1; |
| 464 | field public static final int SIGUSR2; |
| 465 | field public static final int SIGVTALRM; |
| 466 | field public static final int SIGWINCH; |
| 467 | field public static final int SIGXCPU; |
| 468 | field public static final int SIGXFSZ; |
| 469 | field public static final int SIOCGIFADDR; |
| 470 | field public static final int SIOCGIFBRDADDR; |
| 471 | field public static final int SIOCGIFDSTADDR; |
| 472 | field public static final int SIOCGIFNETMASK; |
| 473 | field public static final int SOCK_CLOEXEC; |
| 474 | field public static final int SOCK_DGRAM; |
| 475 | field public static final int SOCK_NONBLOCK; |
| 476 | field public static final int SOCK_RAW; |
| 477 | field public static final int SOCK_SEQPACKET; |
| 478 | field public static final int SOCK_STREAM; |
| 479 | field public static final int SOL_SOCKET; |
| 480 | field public static final int SO_BINDTODEVICE; |
| 481 | field public static final int SO_BROADCAST; |
| 482 | field public static final int SO_DEBUG; |
| 483 | field public static final int SO_DONTROUTE; |
| 484 | field public static final int SO_ERROR; |
| 485 | field public static final int SO_KEEPALIVE; |
| 486 | field public static final int SO_LINGER; |
| 487 | field public static final int SO_OOBINLINE; |
| 488 | field public static final int SO_PASSCRED; |
| 489 | field public static final int SO_PEERCRED; |
| 490 | field public static final int SO_RCVBUF; |
| 491 | field public static final int SO_RCVLOWAT; |
| 492 | field public static final int SO_RCVTIMEO; |
| 493 | field public static final int SO_REUSEADDR; |
| 494 | field public static final int SO_SNDBUF; |
| 495 | field public static final int SO_SNDLOWAT; |
| 496 | field public static final int SO_SNDTIMEO; |
| 497 | field public static final int SO_TYPE; |
| 498 | field public static final int STDERR_FILENO; |
| 499 | field public static final int STDIN_FILENO; |
| 500 | field public static final int STDOUT_FILENO; |
| 501 | field public static final int ST_MANDLOCK; |
| 502 | field public static final int ST_NOATIME; |
| 503 | field public static final int ST_NODEV; |
| 504 | field public static final int ST_NODIRATIME; |
| 505 | field public static final int ST_NOEXEC; |
| 506 | field public static final int ST_NOSUID; |
| 507 | field public static final int ST_RDONLY; |
| 508 | field public static final int ST_RELATIME; |
| 509 | field public static final int ST_SYNCHRONOUS; |
| 510 | field public static final int S_IFBLK; |
| 511 | field public static final int S_IFCHR; |
| 512 | field public static final int S_IFDIR; |
| 513 | field public static final int S_IFIFO; |
| 514 | field public static final int S_IFLNK; |
| 515 | field public static final int S_IFMT; |
| 516 | field public static final int S_IFREG; |
| 517 | field public static final int S_IFSOCK; |
| 518 | field public static final int S_IRGRP; |
| 519 | field public static final int S_IROTH; |
| 520 | field public static final int S_IRUSR; |
| 521 | field public static final int S_IRWXG; |
| 522 | field public static final int S_IRWXO; |
| 523 | field public static final int S_IRWXU; |
| 524 | field public static final int S_ISGID; |
| 525 | field public static final int S_ISUID; |
| 526 | field public static final int S_ISVTX; |
| 527 | field public static final int S_IWGRP; |
| 528 | field public static final int S_IWOTH; |
| 529 | field public static final int S_IWUSR; |
| 530 | field public static final int S_IXGRP; |
| 531 | field public static final int S_IXOTH; |
| 532 | field public static final int S_IXUSR; |
| 533 | field public static final int TCP_NODELAY; |
| 534 | field public static final int TCP_USER_TIMEOUT; |
| 535 | field public static final int WCONTINUED; |
| 536 | field public static final int WEXITED; |
| 537 | field public static final int WNOHANG; |
| 538 | field public static final int WNOWAIT; |
| 539 | field public static final int WSTOPPED; |
| 540 | field public static final int WUNTRACED; |
| 541 | field public static final int W_OK; |
| 542 | field public static final int X_OK; |
| 543 | field public static final int _SC_2_CHAR_TERM; |
| 544 | field public static final int _SC_2_C_BIND; |
| 545 | field public static final int _SC_2_C_DEV; |
| 546 | field public static final int _SC_2_C_VERSION; |
| 547 | field public static final int _SC_2_FORT_DEV; |
| 548 | field public static final int _SC_2_FORT_RUN; |
| 549 | field public static final int _SC_2_LOCALEDEF; |
| 550 | field public static final int _SC_2_SW_DEV; |
| 551 | field public static final int _SC_2_UPE; |
| 552 | field public static final int _SC_2_VERSION; |
| 553 | field public static final int _SC_AIO_LISTIO_MAX; |
| 554 | field public static final int _SC_AIO_MAX; |
| 555 | field public static final int _SC_AIO_PRIO_DELTA_MAX; |
| 556 | field public static final int _SC_ARG_MAX; |
| 557 | field public static final int _SC_ASYNCHRONOUS_IO; |
| 558 | field public static final int _SC_ATEXIT_MAX; |
| 559 | field public static final int _SC_AVPHYS_PAGES; |
| 560 | field public static final int _SC_BC_BASE_MAX; |
| 561 | field public static final int _SC_BC_DIM_MAX; |
| 562 | field public static final int _SC_BC_SCALE_MAX; |
| 563 | field public static final int _SC_BC_STRING_MAX; |
| 564 | field public static final int _SC_CHILD_MAX; |
| 565 | field public static final int _SC_CLK_TCK; |
| 566 | field public static final int _SC_COLL_WEIGHTS_MAX; |
| 567 | field public static final int _SC_DELAYTIMER_MAX; |
| 568 | field public static final int _SC_EXPR_NEST_MAX; |
| 569 | field public static final int _SC_FSYNC; |
| 570 | field public static final int _SC_GETGR_R_SIZE_MAX; |
| 571 | field public static final int _SC_GETPW_R_SIZE_MAX; |
| 572 | field public static final int _SC_IOV_MAX; |
| 573 | field public static final int _SC_JOB_CONTROL; |
| 574 | field public static final int _SC_LINE_MAX; |
| 575 | field public static final int _SC_LOGIN_NAME_MAX; |
| 576 | field public static final int _SC_MAPPED_FILES; |
| 577 | field public static final int _SC_MEMLOCK; |
| 578 | field public static final int _SC_MEMLOCK_RANGE; |
| 579 | field public static final int _SC_MEMORY_PROTECTION; |
| 580 | field public static final int _SC_MESSAGE_PASSING; |
| 581 | field public static final int _SC_MQ_OPEN_MAX; |
| 582 | field public static final int _SC_MQ_PRIO_MAX; |
| 583 | field public static final int _SC_NGROUPS_MAX; |
| 584 | field public static final int _SC_NPROCESSORS_CONF; |
| 585 | field public static final int _SC_NPROCESSORS_ONLN; |
| 586 | field public static final int _SC_OPEN_MAX; |
| 587 | field public static final int _SC_PAGESIZE; |
| 588 | field public static final int _SC_PAGE_SIZE; |
| 589 | field public static final int _SC_PASS_MAX; |
| 590 | field public static final int _SC_PHYS_PAGES; |
| 591 | field public static final int _SC_PRIORITIZED_IO; |
| 592 | field public static final int _SC_PRIORITY_SCHEDULING; |
| 593 | field public static final int _SC_REALTIME_SIGNALS; |
| 594 | field public static final int _SC_RE_DUP_MAX; |
| 595 | field public static final int _SC_RTSIG_MAX; |
| 596 | field public static final int _SC_SAVED_IDS; |
| 597 | field public static final int _SC_SEMAPHORES; |
| 598 | field public static final int _SC_SEM_NSEMS_MAX; |
| 599 | field public static final int _SC_SEM_VALUE_MAX; |
| 600 | field public static final int _SC_SHARED_MEMORY_OBJECTS; |
| 601 | field public static final int _SC_SIGQUEUE_MAX; |
| 602 | field public static final int _SC_STREAM_MAX; |
| 603 | field public static final int _SC_SYNCHRONIZED_IO; |
| 604 | field public static final int _SC_THREADS; |
| 605 | field public static final int _SC_THREAD_ATTR_STACKADDR; |
| 606 | field public static final int _SC_THREAD_ATTR_STACKSIZE; |
| 607 | field public static final int _SC_THREAD_DESTRUCTOR_ITERATIONS; |
| 608 | field public static final int _SC_THREAD_KEYS_MAX; |
| 609 | field public static final int _SC_THREAD_PRIORITY_SCHEDULING; |
| 610 | field public static final int _SC_THREAD_PRIO_INHERIT; |
| 611 | field public static final int _SC_THREAD_PRIO_PROTECT; |
| 612 | field public static final int _SC_THREAD_SAFE_FUNCTIONS; |
| 613 | field public static final int _SC_THREAD_STACK_MIN; |
| 614 | field public static final int _SC_THREAD_THREADS_MAX; |
| 615 | field public static final int _SC_TIMERS; |
| 616 | field public static final int _SC_TIMER_MAX; |
| 617 | field public static final int _SC_TTY_NAME_MAX; |
| 618 | field public static final int _SC_TZNAME_MAX; |
| 619 | field public static final int _SC_VERSION; |
| 620 | field public static final int _SC_XBS5_ILP32_OFF32; |
| 621 | field public static final int _SC_XBS5_ILP32_OFFBIG; |
| 622 | field public static final int _SC_XBS5_LP64_OFF64; |
| 623 | field public static final int _SC_XBS5_LPBIG_OFFBIG; |
| 624 | field public static final int _SC_XOPEN_CRYPT; |
| 625 | field public static final int _SC_XOPEN_ENH_I18N; |
| 626 | field public static final int _SC_XOPEN_LEGACY; |
| 627 | field public static final int _SC_XOPEN_REALTIME; |
| 628 | field public static final int _SC_XOPEN_REALTIME_THREADS; |
| 629 | field public static final int _SC_XOPEN_SHM; |
| 630 | field public static final int _SC_XOPEN_UNIX; |
| 631 | field public static final int _SC_XOPEN_VERSION; |
| 632 | field public static final int _SC_XOPEN_XCU_VERSION; |
| 633 | } |
| 634 | |
| 635 | public final class StructPollfd { |
| 636 | ctor public StructPollfd(); |
| 637 | field public short events; |
| 638 | field public java.io.FileDescriptor fd; |
| 639 | field public short revents; |
| 640 | field public Object userData; |
| 641 | } |
| 642 | |
| 643 | public final class StructStat { |
| 644 | ctor public StructStat(long, long, int, long, int, int, long, long, long, long, long, long, long); |
| 645 | ctor public StructStat(long, long, int, long, int, int, long, long, android.system.StructTimespec, android.system.StructTimespec, android.system.StructTimespec, long, long); |
| 646 | field public final android.system.StructTimespec st_atim; |
| 647 | field public final long st_atime; |
| 648 | field public final long st_blksize; |
| 649 | field public final long st_blocks; |
| 650 | field public final android.system.StructTimespec st_ctim; |
| 651 | field public final long st_ctime; |
| 652 | field public final long st_dev; |
| 653 | field public final int st_gid; |
| 654 | field public final long st_ino; |
| 655 | field public final int st_mode; |
| 656 | field public final android.system.StructTimespec st_mtim; |
| 657 | field public final long st_mtime; |
| 658 | field public final long st_nlink; |
| 659 | field public final long st_rdev; |
| 660 | field public final long st_size; |
| 661 | field public final int st_uid; |
| 662 | } |
| 663 | |
| 664 | public final class StructStatVfs { |
| 665 | ctor public StructStatVfs(long, long, long, long, long, long, long, long, long, long, long); |
| 666 | field public final long f_bavail; |
| 667 | field public final long f_bfree; |
| 668 | field public final long f_blocks; |
| 669 | field public final long f_bsize; |
| 670 | field public final long f_favail; |
| 671 | field public final long f_ffree; |
| 672 | field public final long f_files; |
| 673 | field public final long f_flag; |
| 674 | field public final long f_frsize; |
| 675 | field public final long f_fsid; |
| 676 | field public final long f_namemax; |
| 677 | } |
| 678 | |
| 679 | public final class StructTimespec implements java.lang.Comparable<android.system.StructTimespec> { |
| 680 | ctor public StructTimespec(long, long); |
| 681 | method public int compareTo(android.system.StructTimespec); |
| 682 | field public final long tv_nsec; |
| 683 | field public final long tv_sec; |
| 684 | } |
| 685 | |
| 686 | public final class StructTimeval { |
| 687 | method @NonNull public static android.system.StructTimeval fromMillis(long); |
| 688 | method public long toMillis(); |
| 689 | field public final long tv_sec; |
| 690 | field public final long tv_usec; |
| 691 | } |
| 692 | |
| 693 | public final class StructUtsname { |
| 694 | ctor public StructUtsname(String, String, String, String, String); |
| 695 | field public final String machine; |
| 696 | field public final String nodename; |
| 697 | field public final String release; |
| 698 | field public final String sysname; |
| 699 | field public final String version; |
| 700 | } |
| 701 | |
| 702 | } |
| 703 | |
| 704 | package dalvik.annotation { |
| 705 | |
| 706 | @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.ANNOTATION_TYPE}) public @interface TestTarget { |
| 707 | method @Deprecated public abstract String conceptName() default ""; |
| 708 | method @Deprecated public abstract Class<?>[] methodArgs() default {}; |
| 709 | method @Deprecated public abstract String methodName() default ""; |
| 710 | } |
| 711 | |
| 712 | @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE}) public @interface TestTargetClass { |
| 713 | method @Deprecated public abstract Class<?> value(); |
| 714 | } |
| 715 | |
| 716 | } |
| 717 | |
| 718 | package dalvik.bytecode { |
| 719 | |
| 720 | public final class OpcodeInfo { |
| 721 | field public static final int MAXIMUM_PACKED_VALUE; |
| 722 | field public static final int MAXIMUM_VALUE; |
| 723 | } |
| 724 | |
| 725 | public interface Opcodes { |
| 726 | field public static final int OP_ADD_DOUBLE = 171; // 0xab |
| 727 | field public static final int OP_ADD_DOUBLE_2ADDR = 203; // 0xcb |
| 728 | field public static final int OP_ADD_FLOAT = 166; // 0xa6 |
| 729 | field public static final int OP_ADD_FLOAT_2ADDR = 198; // 0xc6 |
| 730 | field public static final int OP_ADD_INT = 144; // 0x90 |
| 731 | field public static final int OP_ADD_INT_2ADDR = 176; // 0xb0 |
| 732 | field public static final int OP_ADD_INT_LIT16 = 208; // 0xd0 |
| 733 | field public static final int OP_ADD_INT_LIT8 = 216; // 0xd8 |
| 734 | field public static final int OP_ADD_LONG = 155; // 0x9b |
| 735 | field public static final int OP_ADD_LONG_2ADDR = 187; // 0xbb |
| 736 | field public static final int OP_AGET = 68; // 0x44 |
| 737 | field public static final int OP_AGET_BOOLEAN = 71; // 0x47 |
| 738 | field public static final int OP_AGET_BYTE = 72; // 0x48 |
| 739 | field public static final int OP_AGET_CHAR = 73; // 0x49 |
| 740 | field public static final int OP_AGET_OBJECT = 70; // 0x46 |
| 741 | field public static final int OP_AGET_SHORT = 74; // 0x4a |
| 742 | field public static final int OP_AGET_WIDE = 69; // 0x45 |
| 743 | field public static final int OP_AND_INT = 149; // 0x95 |
| 744 | field public static final int OP_AND_INT_2ADDR = 181; // 0xb5 |
| 745 | field public static final int OP_AND_INT_LIT16 = 213; // 0xd5 |
| 746 | field public static final int OP_AND_INT_LIT8 = 221; // 0xdd |
| 747 | field public static final int OP_AND_LONG = 160; // 0xa0 |
| 748 | field public static final int OP_AND_LONG_2ADDR = 192; // 0xc0 |
| 749 | field public static final int OP_APUT = 75; // 0x4b |
| 750 | field public static final int OP_APUT_BOOLEAN = 78; // 0x4e |
| 751 | field public static final int OP_APUT_BYTE = 79; // 0x4f |
| 752 | field public static final int OP_APUT_CHAR = 80; // 0x50 |
| 753 | field public static final int OP_APUT_OBJECT = 77; // 0x4d |
| 754 | field public static final int OP_APUT_SHORT = 81; // 0x51 |
| 755 | field public static final int OP_APUT_WIDE = 76; // 0x4c |
| 756 | field public static final int OP_ARRAY_LENGTH = 33; // 0x21 |
| 757 | field @Deprecated public static final int OP_BREAKPOINT = 236; // 0xec |
| 758 | field public static final int OP_CHECK_CAST = 31; // 0x1f |
| 759 | field public static final int OP_CHECK_CAST_JUMBO = 511; // 0x1ff |
| 760 | field public static final int OP_CMPG_DOUBLE = 48; // 0x30 |
| 761 | field public static final int OP_CMPG_FLOAT = 46; // 0x2e |
| 762 | field public static final int OP_CMPL_DOUBLE = 47; // 0x2f |
| 763 | field public static final int OP_CMPL_FLOAT = 45; // 0x2d |
| 764 | field public static final int OP_CMP_LONG = 49; // 0x31 |
| 765 | field public static final int OP_CONST = 20; // 0x14 |
| 766 | field public static final int OP_CONST_16 = 19; // 0x13 |
| 767 | field public static final int OP_CONST_4 = 18; // 0x12 |
| 768 | field public static final int OP_CONST_CLASS = 28; // 0x1c |
| 769 | field public static final int OP_CONST_CLASS_JUMBO = 255; // 0xff |
| 770 | field public static final int OP_CONST_HIGH16 = 21; // 0x15 |
| 771 | field public static final int OP_CONST_METHOD_HANDLE = 254; // 0xfe |
| 772 | field public static final int OP_CONST_METHOD_TYPE = 255; // 0xff |
| 773 | field public static final int OP_CONST_STRING = 26; // 0x1a |
| 774 | field public static final int OP_CONST_STRING_JUMBO = 27; // 0x1b |
| 775 | field public static final int OP_CONST_WIDE = 24; // 0x18 |
| 776 | field public static final int OP_CONST_WIDE_16 = 22; // 0x16 |
| 777 | field public static final int OP_CONST_WIDE_32 = 23; // 0x17 |
| 778 | field public static final int OP_CONST_WIDE_HIGH16 = 25; // 0x19 |
| 779 | field public static final int OP_DIV_DOUBLE = 174; // 0xae |
| 780 | field public static final int OP_DIV_DOUBLE_2ADDR = 206; // 0xce |
| 781 | field public static final int OP_DIV_FLOAT = 169; // 0xa9 |
| 782 | field public static final int OP_DIV_FLOAT_2ADDR = 201; // 0xc9 |
| 783 | field public static final int OP_DIV_INT = 147; // 0x93 |
| 784 | field public static final int OP_DIV_INT_2ADDR = 179; // 0xb3 |
| 785 | field public static final int OP_DIV_INT_LIT16 = 211; // 0xd3 |
| 786 | field public static final int OP_DIV_INT_LIT8 = 219; // 0xdb |
| 787 | field public static final int OP_DIV_LONG = 158; // 0x9e |
| 788 | field public static final int OP_DIV_LONG_2ADDR = 190; // 0xbe |
| 789 | field public static final int OP_DOUBLE_TO_FLOAT = 140; // 0x8c |
| 790 | field public static final int OP_DOUBLE_TO_INT = 138; // 0x8a |
| 791 | field public static final int OP_DOUBLE_TO_LONG = 139; // 0x8b |
| 792 | field @Deprecated public static final int OP_EXECUTE_INLINE = 238; // 0xee |
| 793 | field @Deprecated public static final int OP_EXECUTE_INLINE_RANGE = 239; // 0xef |
| 794 | field public static final int OP_FILLED_NEW_ARRAY = 36; // 0x24 |
| 795 | field public static final int OP_FILLED_NEW_ARRAY_JUMBO = 1535; // 0x5ff |
| 796 | field public static final int OP_FILLED_NEW_ARRAY_RANGE = 37; // 0x25 |
| 797 | field public static final int OP_FILL_ARRAY_DATA = 38; // 0x26 |
| 798 | field public static final int OP_FLOAT_TO_DOUBLE = 137; // 0x89 |
| 799 | field public static final int OP_FLOAT_TO_INT = 135; // 0x87 |
| 800 | field public static final int OP_FLOAT_TO_LONG = 136; // 0x88 |
| 801 | field public static final int OP_GOTO = 40; // 0x28 |
| 802 | field public static final int OP_GOTO_16 = 41; // 0x29 |
| 803 | field public static final int OP_GOTO_32 = 42; // 0x2a |
| 804 | field public static final int OP_IF_EQ = 50; // 0x32 |
| 805 | field public static final int OP_IF_EQZ = 56; // 0x38 |
| 806 | field public static final int OP_IF_GE = 53; // 0x35 |
| 807 | field public static final int OP_IF_GEZ = 59; // 0x3b |
| 808 | field public static final int OP_IF_GT = 54; // 0x36 |
| 809 | field public static final int OP_IF_GTZ = 60; // 0x3c |
| 810 | field public static final int OP_IF_LE = 55; // 0x37 |
| 811 | field public static final int OP_IF_LEZ = 61; // 0x3d |
| 812 | field public static final int OP_IF_LT = 52; // 0x34 |
| 813 | field public static final int OP_IF_LTZ = 58; // 0x3a |
| 814 | field public static final int OP_IF_NE = 51; // 0x33 |
| 815 | field public static final int OP_IF_NEZ = 57; // 0x39 |
| 816 | field public static final int OP_IGET = 82; // 0x52 |
| 817 | field public static final int OP_IGET_BOOLEAN = 85; // 0x55 |
| 818 | field public static final int OP_IGET_BOOLEAN_JUMBO = 2559; // 0x9ff |
| 819 | field public static final int OP_IGET_BYTE = 86; // 0x56 |
| 820 | field public static final int OP_IGET_BYTE_JUMBO = 2815; // 0xaff |
| 821 | field public static final int OP_IGET_CHAR = 87; // 0x57 |
| 822 | field public static final int OP_IGET_CHAR_JUMBO = 3071; // 0xbff |
| 823 | field public static final int OP_IGET_JUMBO = 1791; // 0x6ff |
| 824 | field public static final int OP_IGET_OBJECT = 84; // 0x54 |
| 825 | field public static final int OP_IGET_OBJECT_JUMBO = 2303; // 0x8ff |
| 826 | field @Deprecated public static final int OP_IGET_OBJECT_QUICK = 244; // 0xf4 |
| 827 | field @Deprecated public static final int OP_IGET_QUICK = 242; // 0xf2 |
| 828 | field public static final int OP_IGET_SHORT = 88; // 0x58 |
| 829 | field public static final int OP_IGET_SHORT_JUMBO = 3327; // 0xcff |
| 830 | field public static final int OP_IGET_WIDE = 83; // 0x53 |
| 831 | field public static final int OP_IGET_WIDE_JUMBO = 2047; // 0x7ff |
| 832 | field @Deprecated public static final int OP_IGET_WIDE_QUICK = 243; // 0xf3 |
| 833 | field @Deprecated public static final int OP_IGET_WIDE_VOLATILE = 232; // 0xe8 |
| 834 | field public static final int OP_INSTANCE_OF = 32; // 0x20 |
| 835 | field public static final int OP_INSTANCE_OF_JUMBO = 767; // 0x2ff |
| 836 | field public static final int OP_INT_TO_BYTE = 141; // 0x8d |
| 837 | field public static final int OP_INT_TO_CHAR = 142; // 0x8e |
| 838 | field public static final int OP_INT_TO_DOUBLE = 131; // 0x83 |
| 839 | field public static final int OP_INT_TO_FLOAT = 130; // 0x82 |
| 840 | field public static final int OP_INT_TO_LONG = 129; // 0x81 |
| 841 | field public static final int OP_INT_TO_SHORT = 143; // 0x8f |
| 842 | field public static final int OP_INVOKE_CUSTOM = 252; // 0xfc |
| 843 | field public static final int OP_INVOKE_CUSTOM_RANGE = 253; // 0xfd |
| 844 | field public static final int OP_INVOKE_DIRECT = 112; // 0x70 |
| 845 | field @Deprecated public static final int OP_INVOKE_DIRECT_EMPTY = 240; // 0xf0 |
| 846 | field public static final int OP_INVOKE_DIRECT_JUMBO = 9471; // 0x24ff |
| 847 | field public static final int OP_INVOKE_DIRECT_RANGE = 118; // 0x76 |
| 848 | field public static final int OP_INVOKE_INTERFACE = 114; // 0x72 |
| 849 | field public static final int OP_INVOKE_INTERFACE_JUMBO = 9983; // 0x26ff |
| 850 | field public static final int OP_INVOKE_INTERFACE_RANGE = 120; // 0x78 |
| 851 | field public static final int OP_INVOKE_POLYMORPHIC = 250; // 0xfa |
| 852 | field public static final int OP_INVOKE_POLYMORPHIC_RANGE = 251; // 0xfb |
| 853 | field public static final int OP_INVOKE_STATIC = 113; // 0x71 |
| 854 | field public static final int OP_INVOKE_STATIC_JUMBO = 9727; // 0x25ff |
| 855 | field public static final int OP_INVOKE_STATIC_RANGE = 119; // 0x77 |
| 856 | field public static final int OP_INVOKE_SUPER = 111; // 0x6f |
| 857 | field public static final int OP_INVOKE_SUPER_JUMBO = 9215; // 0x23ff |
| 858 | field @Deprecated public static final int OP_INVOKE_SUPER_QUICK = 250; // 0xfa |
| 859 | field @Deprecated public static final int OP_INVOKE_SUPER_QUICK_RANGE = 251; // 0xfb |
| 860 | field public static final int OP_INVOKE_SUPER_RANGE = 117; // 0x75 |
| 861 | field public static final int OP_INVOKE_VIRTUAL = 110; // 0x6e |
| 862 | field public static final int OP_INVOKE_VIRTUAL_JUMBO = 8959; // 0x22ff |
| 863 | field @Deprecated public static final int OP_INVOKE_VIRTUAL_QUICK = 248; // 0xf8 |
| 864 | field @Deprecated public static final int OP_INVOKE_VIRTUAL_QUICK_RANGE = 249; // 0xf9 |
| 865 | field public static final int OP_INVOKE_VIRTUAL_RANGE = 116; // 0x74 |
| 866 | field public static final int OP_IPUT = 89; // 0x59 |
| 867 | field public static final int OP_IPUT_BOOLEAN = 92; // 0x5c |
| 868 | field public static final int OP_IPUT_BOOLEAN_JUMBO = 4351; // 0x10ff |
| 869 | field public static final int OP_IPUT_BYTE = 93; // 0x5d |
| 870 | field public static final int OP_IPUT_BYTE_JUMBO = 4607; // 0x11ff |
| 871 | field public static final int OP_IPUT_CHAR = 94; // 0x5e |
| 872 | field public static final int OP_IPUT_CHAR_JUMBO = 4863; // 0x12ff |
| 873 | field public static final int OP_IPUT_JUMBO = 3583; // 0xdff |
| 874 | field public static final int OP_IPUT_OBJECT = 91; // 0x5b |
| 875 | field public static final int OP_IPUT_OBJECT_JUMBO = 4095; // 0xfff |
| 876 | field @Deprecated public static final int OP_IPUT_OBJECT_QUICK = 247; // 0xf7 |
| 877 | field @Deprecated public static final int OP_IPUT_QUICK = 245; // 0xf5 |
| 878 | field public static final int OP_IPUT_SHORT = 95; // 0x5f |
| 879 | field public static final int OP_IPUT_SHORT_JUMBO = 5119; // 0x13ff |
| 880 | field public static final int OP_IPUT_WIDE = 90; // 0x5a |
| 881 | field public static final int OP_IPUT_WIDE_JUMBO = 3839; // 0xeff |
| 882 | field @Deprecated public static final int OP_IPUT_WIDE_QUICK = 246; // 0xf6 |
| 883 | field @Deprecated public static final int OP_IPUT_WIDE_VOLATILE = 233; // 0xe9 |
| 884 | field public static final int OP_LONG_TO_DOUBLE = 134; // 0x86 |
| 885 | field public static final int OP_LONG_TO_FLOAT = 133; // 0x85 |
| 886 | field public static final int OP_LONG_TO_INT = 132; // 0x84 |
| 887 | field public static final int OP_MONITOR_ENTER = 29; // 0x1d |
| 888 | field public static final int OP_MONITOR_EXIT = 30; // 0x1e |
| 889 | field public static final int OP_MOVE = 1; // 0x1 |
| 890 | field public static final int OP_MOVE_16 = 3; // 0x3 |
| 891 | field public static final int OP_MOVE_EXCEPTION = 13; // 0xd |
| 892 | field public static final int OP_MOVE_FROM16 = 2; // 0x2 |
| 893 | field public static final int OP_MOVE_OBJECT = 7; // 0x7 |
| 894 | field public static final int OP_MOVE_OBJECT_16 = 9; // 0x9 |
| 895 | field public static final int OP_MOVE_OBJECT_FROM16 = 8; // 0x8 |
| 896 | field public static final int OP_MOVE_RESULT = 10; // 0xa |
| 897 | field public static final int OP_MOVE_RESULT_OBJECT = 12; // 0xc |
| 898 | field public static final int OP_MOVE_RESULT_WIDE = 11; // 0xb |
| 899 | field public static final int OP_MOVE_WIDE = 4; // 0x4 |
| 900 | field public static final int OP_MOVE_WIDE_16 = 6; // 0x6 |
| 901 | field public static final int OP_MOVE_WIDE_FROM16 = 5; // 0x5 |
| 902 | field public static final int OP_MUL_DOUBLE = 173; // 0xad |
| 903 | field public static final int OP_MUL_DOUBLE_2ADDR = 205; // 0xcd |
| 904 | field public static final int OP_MUL_FLOAT = 168; // 0xa8 |
| 905 | field public static final int OP_MUL_FLOAT_2ADDR = 200; // 0xc8 |
| 906 | field public static final int OP_MUL_INT = 146; // 0x92 |
| 907 | field public static final int OP_MUL_INT_2ADDR = 178; // 0xb2 |
| 908 | field public static final int OP_MUL_INT_LIT16 = 210; // 0xd2 |
| 909 | field public static final int OP_MUL_INT_LIT8 = 218; // 0xda |
| 910 | field public static final int OP_MUL_LONG = 157; // 0x9d |
| 911 | field public static final int OP_MUL_LONG_2ADDR = 189; // 0xbd |
| 912 | field public static final int OP_NEG_DOUBLE = 128; // 0x80 |
| 913 | field public static final int OP_NEG_FLOAT = 127; // 0x7f |
| 914 | field public static final int OP_NEG_INT = 123; // 0x7b |
| 915 | field public static final int OP_NEG_LONG = 125; // 0x7d |
| 916 | field public static final int OP_NEW_ARRAY = 35; // 0x23 |
| 917 | field public static final int OP_NEW_ARRAY_JUMBO = 1279; // 0x4ff |
| 918 | field public static final int OP_NEW_INSTANCE = 34; // 0x22 |
| 919 | field public static final int OP_NEW_INSTANCE_JUMBO = 1023; // 0x3ff |
| 920 | field public static final int OP_NOP = 0; // 0x0 |
| 921 | field public static final int OP_NOT_INT = 124; // 0x7c |
| 922 | field public static final int OP_NOT_LONG = 126; // 0x7e |
| 923 | field public static final int OP_OR_INT = 150; // 0x96 |
| 924 | field public static final int OP_OR_INT_2ADDR = 182; // 0xb6 |
| 925 | field public static final int OP_OR_INT_LIT16 = 214; // 0xd6 |
| 926 | field public static final int OP_OR_INT_LIT8 = 222; // 0xde |
| 927 | field public static final int OP_OR_LONG = 161; // 0xa1 |
| 928 | field public static final int OP_OR_LONG_2ADDR = 193; // 0xc1 |
| 929 | field public static final int OP_PACKED_SWITCH = 43; // 0x2b |
| 930 | field public static final int OP_REM_DOUBLE = 175; // 0xaf |
| 931 | field public static final int OP_REM_DOUBLE_2ADDR = 207; // 0xcf |
| 932 | field public static final int OP_REM_FLOAT = 170; // 0xaa |
| 933 | field public static final int OP_REM_FLOAT_2ADDR = 202; // 0xca |
| 934 | field public static final int OP_REM_INT = 148; // 0x94 |
| 935 | field public static final int OP_REM_INT_2ADDR = 180; // 0xb4 |
| 936 | field public static final int OP_REM_INT_LIT16 = 212; // 0xd4 |
| 937 | field public static final int OP_REM_INT_LIT8 = 220; // 0xdc |
| 938 | field public static final int OP_REM_LONG = 159; // 0x9f |
| 939 | field public static final int OP_REM_LONG_2ADDR = 191; // 0xbf |
| 940 | field public static final int OP_RETURN = 15; // 0xf |
| 941 | field public static final int OP_RETURN_OBJECT = 17; // 0x11 |
| 942 | field public static final int OP_RETURN_VOID = 14; // 0xe |
| 943 | field public static final int OP_RETURN_WIDE = 16; // 0x10 |
| 944 | field public static final int OP_RSUB_INT = 209; // 0xd1 |
| 945 | field public static final int OP_RSUB_INT_LIT8 = 217; // 0xd9 |
| 946 | field public static final int OP_SGET = 96; // 0x60 |
| 947 | field public static final int OP_SGET_BOOLEAN = 99; // 0x63 |
| 948 | field public static final int OP_SGET_BOOLEAN_JUMBO = 6143; // 0x17ff |
| 949 | field public static final int OP_SGET_BYTE = 100; // 0x64 |
| 950 | field public static final int OP_SGET_BYTE_JUMBO = 6399; // 0x18ff |
| 951 | field public static final int OP_SGET_CHAR = 101; // 0x65 |
| 952 | field public static final int OP_SGET_CHAR_JUMBO = 6655; // 0x19ff |
| 953 | field public static final int OP_SGET_JUMBO = 5375; // 0x14ff |
| 954 | field public static final int OP_SGET_OBJECT = 98; // 0x62 |
| 955 | field public static final int OP_SGET_OBJECT_JUMBO = 5887; // 0x16ff |
| 956 | field public static final int OP_SGET_SHORT = 102; // 0x66 |
| 957 | field public static final int OP_SGET_SHORT_JUMBO = 6911; // 0x1aff |
| 958 | field public static final int OP_SGET_WIDE = 97; // 0x61 |
| 959 | field public static final int OP_SGET_WIDE_JUMBO = 5631; // 0x15ff |
| 960 | field @Deprecated public static final int OP_SGET_WIDE_VOLATILE = 234; // 0xea |
| 961 | field public static final int OP_SHL_INT = 152; // 0x98 |
| 962 | field public static final int OP_SHL_INT_2ADDR = 184; // 0xb8 |
| 963 | field public static final int OP_SHL_INT_LIT8 = 224; // 0xe0 |
| 964 | field public static final int OP_SHL_LONG = 163; // 0xa3 |
| 965 | field public static final int OP_SHL_LONG_2ADDR = 195; // 0xc3 |
| 966 | field public static final int OP_SHR_INT = 153; // 0x99 |
| 967 | field public static final int OP_SHR_INT_2ADDR = 185; // 0xb9 |
| 968 | field public static final int OP_SHR_INT_LIT8 = 225; // 0xe1 |
| 969 | field public static final int OP_SHR_LONG = 164; // 0xa4 |
| 970 | field public static final int OP_SHR_LONG_2ADDR = 196; // 0xc4 |
| 971 | field public static final int OP_SPARSE_SWITCH = 44; // 0x2c |
| 972 | field public static final int OP_SPUT = 103; // 0x67 |
| 973 | field public static final int OP_SPUT_BOOLEAN = 106; // 0x6a |
| 974 | field public static final int OP_SPUT_BOOLEAN_JUMBO = 7935; // 0x1eff |
| 975 | field public static final int OP_SPUT_BYTE = 107; // 0x6b |
| 976 | field public static final int OP_SPUT_BYTE_JUMBO = 8191; // 0x1fff |
| 977 | field public static final int OP_SPUT_CHAR = 108; // 0x6c |
| 978 | field public static final int OP_SPUT_CHAR_JUMBO = 8447; // 0x20ff |
| 979 | field public static final int OP_SPUT_JUMBO = 7167; // 0x1bff |
| 980 | field public static final int OP_SPUT_OBJECT = 105; // 0x69 |
| 981 | field public static final int OP_SPUT_OBJECT_JUMBO = 7679; // 0x1dff |
| 982 | field public static final int OP_SPUT_SHORT = 109; // 0x6d |
| 983 | field public static final int OP_SPUT_SHORT_JUMBO = 8703; // 0x21ff |
| 984 | field public static final int OP_SPUT_WIDE = 104; // 0x68 |
| 985 | field public static final int OP_SPUT_WIDE_JUMBO = 7423; // 0x1cff |
| 986 | field @Deprecated public static final int OP_SPUT_WIDE_VOLATILE = 235; // 0xeb |
| 987 | field public static final int OP_SUB_DOUBLE = 172; // 0xac |
| 988 | field public static final int OP_SUB_DOUBLE_2ADDR = 204; // 0xcc |
| 989 | field public static final int OP_SUB_FLOAT = 167; // 0xa7 |
| 990 | field public static final int OP_SUB_FLOAT_2ADDR = 199; // 0xc7 |
| 991 | field public static final int OP_SUB_INT = 145; // 0x91 |
| 992 | field public static final int OP_SUB_INT_2ADDR = 177; // 0xb1 |
| 993 | field public static final int OP_SUB_LONG = 156; // 0x9c |
| 994 | field public static final int OP_SUB_LONG_2ADDR = 188; // 0xbc |
| 995 | field public static final int OP_THROW = 39; // 0x27 |
| 996 | field @Deprecated public static final int OP_THROW_VERIFICATION_ERROR = 237; // 0xed |
| 997 | field public static final int OP_USHR_INT = 154; // 0x9a |
| 998 | field public static final int OP_USHR_INT_2ADDR = 186; // 0xba |
| 999 | field public static final int OP_USHR_INT_LIT8 = 226; // 0xe2 |
| 1000 | field public static final int OP_USHR_LONG = 165; // 0xa5 |
| 1001 | field public static final int OP_USHR_LONG_2ADDR = 197; // 0xc5 |
| 1002 | field public static final int OP_XOR_INT = 151; // 0x97 |
| 1003 | field public static final int OP_XOR_INT_2ADDR = 183; // 0xb7 |
| 1004 | field public static final int OP_XOR_INT_LIT16 = 215; // 0xd7 |
| 1005 | field public static final int OP_XOR_INT_LIT8 = 223; // 0xdf |
| 1006 | field public static final int OP_XOR_LONG = 162; // 0xa2 |
| 1007 | field public static final int OP_XOR_LONG_2ADDR = 194; // 0xc2 |
| 1008 | } |
| 1009 | |
| 1010 | } |
| 1011 | |
| 1012 | package dalvik.system { |
| 1013 | |
| 1014 | public class BaseDexClassLoader extends java.lang.ClassLoader { |
| 1015 | ctor public BaseDexClassLoader(String, java.io.File, String, ClassLoader); |
| 1016 | method public String findLibrary(String); |
| 1017 | method protected java.util.Enumeration<java.net.URL> findResources(String); |
| 1018 | } |
| 1019 | |
| 1020 | public final class DelegateLastClassLoader extends dalvik.system.PathClassLoader { |
| 1021 | ctor public DelegateLastClassLoader(String, ClassLoader); |
| 1022 | ctor public DelegateLastClassLoader(String, String, ClassLoader); |
| 1023 | ctor public DelegateLastClassLoader(@NonNull String, @Nullable String, @Nullable ClassLoader, boolean); |
| 1024 | } |
| 1025 | |
| 1026 | public class DexClassLoader extends dalvik.system.BaseDexClassLoader { |
| 1027 | ctor public DexClassLoader(String, String, String, ClassLoader); |
| 1028 | } |
| 1029 | |
| 1030 | @Deprecated public final class DexFile { |
| 1031 | ctor @Deprecated public DexFile(java.io.File) throws java.io.IOException; |
| 1032 | ctor @Deprecated public DexFile(String) throws java.io.IOException; |
| 1033 | method @Deprecated public void close() throws java.io.IOException; |
| 1034 | method @Deprecated public java.util.Enumeration<java.lang.String> entries(); |
| 1035 | method @Deprecated public String getName(); |
| 1036 | method @Deprecated public static boolean isDexOptNeeded(String) throws java.io.FileNotFoundException, java.io.IOException; |
| 1037 | method @Deprecated public Class loadClass(String, ClassLoader); |
| 1038 | method @Deprecated public static dalvik.system.DexFile loadDex(String, String, int) throws java.io.IOException; |
| 1039 | } |
| 1040 | |
| 1041 | public final class InMemoryDexClassLoader extends dalvik.system.BaseDexClassLoader { |
| 1042 | ctor public InMemoryDexClassLoader(@NonNull java.nio.ByteBuffer[], @Nullable String, @Nullable ClassLoader); |
| 1043 | ctor public InMemoryDexClassLoader(@NonNull java.nio.ByteBuffer[], @Nullable ClassLoader); |
| 1044 | ctor public InMemoryDexClassLoader(@NonNull java.nio.ByteBuffer, @Nullable ClassLoader); |
| 1045 | } |
| 1046 | |
| 1047 | public class PathClassLoader extends dalvik.system.BaseDexClassLoader { |
| 1048 | ctor public PathClassLoader(String, ClassLoader); |
| 1049 | ctor public PathClassLoader(String, String, ClassLoader); |
| 1050 | } |
| 1051 | |
| 1052 | } |
| 1053 | |
| 1054 | package java.awt.font { |
| 1055 | |
| 1056 | public final class NumericShaper implements java.io.Serializable { |
| 1057 | method public static java.awt.font.NumericShaper getContextualShaper(int); |
| 1058 | method public static java.awt.font.NumericShaper getContextualShaper(java.util.Set<java.awt.font.NumericShaper.Range>); |
| 1059 | method public static java.awt.font.NumericShaper getContextualShaper(int, int); |
| 1060 | method public static java.awt.font.NumericShaper getContextualShaper(java.util.Set<java.awt.font.NumericShaper.Range>, java.awt.font.NumericShaper.Range); |
| 1061 | method public java.util.Set<java.awt.font.NumericShaper.Range> getRangeSet(); |
| 1062 | method public int getRanges(); |
| 1063 | method public static java.awt.font.NumericShaper getShaper(int); |
| 1064 | method public static java.awt.font.NumericShaper getShaper(java.awt.font.NumericShaper.Range); |
| 1065 | method public boolean isContextual(); |
| 1066 | method public void shape(char[], int, int); |
| 1067 | method public void shape(char[], int, int, int); |
| 1068 | method public void shape(char[], int, int, java.awt.font.NumericShaper.Range); |
| 1069 | field public static final int ALL_RANGES = 524287; // 0x7ffff |
| 1070 | field public static final int ARABIC = 2; // 0x2 |
| 1071 | field public static final int BENGALI = 16; // 0x10 |
| 1072 | field public static final int DEVANAGARI = 8; // 0x8 |
| 1073 | field public static final int EASTERN_ARABIC = 4; // 0x4 |
| 1074 | field public static final int ETHIOPIC = 65536; // 0x10000 |
| 1075 | field public static final int EUROPEAN = 1; // 0x1 |
| 1076 | field public static final int GUJARATI = 64; // 0x40 |
| 1077 | field public static final int GURMUKHI = 32; // 0x20 |
| 1078 | field public static final int KANNADA = 1024; // 0x400 |
| 1079 | field public static final int KHMER = 131072; // 0x20000 |
| 1080 | field public static final int LAO = 8192; // 0x2000 |
| 1081 | field public static final int MALAYALAM = 2048; // 0x800 |
| 1082 | field public static final int MONGOLIAN = 262144; // 0x40000 |
| 1083 | field public static final int MYANMAR = 32768; // 0x8000 |
| 1084 | field public static final int ORIYA = 128; // 0x80 |
| 1085 | field public static final int TAMIL = 256; // 0x100 |
| 1086 | field public static final int TELUGU = 512; // 0x200 |
| 1087 | field public static final int THAI = 4096; // 0x1000 |
| 1088 | field public static final int TIBETAN = 16384; // 0x4000 |
| 1089 | } |
| 1090 | |
| 1091 | public enum NumericShaper.Range { |
| 1092 | enum_constant public static final java.awt.font.NumericShaper.Range ARABIC; |
| 1093 | enum_constant public static final java.awt.font.NumericShaper.Range BALINESE; |
| 1094 | enum_constant public static final java.awt.font.NumericShaper.Range BENGALI; |
| 1095 | enum_constant public static final java.awt.font.NumericShaper.Range CHAM; |
| 1096 | enum_constant public static final java.awt.font.NumericShaper.Range DEVANAGARI; |
| 1097 | enum_constant public static final java.awt.font.NumericShaper.Range EASTERN_ARABIC; |
| 1098 | enum_constant public static final java.awt.font.NumericShaper.Range ETHIOPIC; |
| 1099 | enum_constant public static final java.awt.font.NumericShaper.Range EUROPEAN; |
| 1100 | enum_constant public static final java.awt.font.NumericShaper.Range GUJARATI; |
| 1101 | enum_constant public static final java.awt.font.NumericShaper.Range GURMUKHI; |
| 1102 | enum_constant public static final java.awt.font.NumericShaper.Range JAVANESE; |
| 1103 | enum_constant public static final java.awt.font.NumericShaper.Range KANNADA; |
| 1104 | enum_constant public static final java.awt.font.NumericShaper.Range KAYAH_LI; |
| 1105 | enum_constant public static final java.awt.font.NumericShaper.Range KHMER; |
| 1106 | enum_constant public static final java.awt.font.NumericShaper.Range LAO; |
| 1107 | enum_constant public static final java.awt.font.NumericShaper.Range LEPCHA; |
| 1108 | enum_constant public static final java.awt.font.NumericShaper.Range LIMBU; |
| 1109 | enum_constant public static final java.awt.font.NumericShaper.Range MALAYALAM; |
| 1110 | enum_constant public static final java.awt.font.NumericShaper.Range MEETEI_MAYEK; |
| 1111 | enum_constant public static final java.awt.font.NumericShaper.Range MONGOLIAN; |
| 1112 | enum_constant public static final java.awt.font.NumericShaper.Range MYANMAR; |
| 1113 | enum_constant public static final java.awt.font.NumericShaper.Range MYANMAR_SHAN; |
| 1114 | enum_constant public static final java.awt.font.NumericShaper.Range NEW_TAI_LUE; |
| 1115 | enum_constant public static final java.awt.font.NumericShaper.Range NKO; |
| 1116 | enum_constant public static final java.awt.font.NumericShaper.Range OL_CHIKI; |
| 1117 | enum_constant public static final java.awt.font.NumericShaper.Range ORIYA; |
| 1118 | enum_constant public static final java.awt.font.NumericShaper.Range SAURASHTRA; |
| 1119 | enum_constant public static final java.awt.font.NumericShaper.Range SUNDANESE; |
| 1120 | enum_constant public static final java.awt.font.NumericShaper.Range TAI_THAM_HORA; |
| 1121 | enum_constant public static final java.awt.font.NumericShaper.Range TAI_THAM_THAM; |
| 1122 | enum_constant public static final java.awt.font.NumericShaper.Range TAMIL; |
| 1123 | enum_constant public static final java.awt.font.NumericShaper.Range TELUGU; |
| 1124 | enum_constant public static final java.awt.font.NumericShaper.Range THAI; |
| 1125 | enum_constant public static final java.awt.font.NumericShaper.Range TIBETAN; |
| 1126 | enum_constant public static final java.awt.font.NumericShaper.Range VAI; |
| 1127 | } |
| 1128 | |
| 1129 | public final class TextAttribute extends java.text.AttributedCharacterIterator.Attribute { |
| 1130 | ctor protected TextAttribute(String); |
| 1131 | field public static final java.awt.font.TextAttribute BACKGROUND; |
| 1132 | field public static final java.awt.font.TextAttribute BIDI_EMBEDDING; |
| 1133 | field public static final java.awt.font.TextAttribute CHAR_REPLACEMENT; |
| 1134 | field public static final java.awt.font.TextAttribute FAMILY; |
| 1135 | field public static final java.awt.font.TextAttribute FONT; |
| 1136 | field public static final java.awt.font.TextAttribute FOREGROUND; |
| 1137 | field public static final java.awt.font.TextAttribute INPUT_METHOD_HIGHLIGHT; |
| 1138 | field public static final java.awt.font.TextAttribute INPUT_METHOD_UNDERLINE; |
| 1139 | field public static final java.awt.font.TextAttribute JUSTIFICATION; |
| 1140 | field public static final Float JUSTIFICATION_FULL; |
| 1141 | field public static final Float JUSTIFICATION_NONE; |
| 1142 | field public static final java.awt.font.TextAttribute KERNING; |
| 1143 | field public static final Integer KERNING_ON; |
| 1144 | field public static final java.awt.font.TextAttribute LIGATURES; |
| 1145 | field public static final Integer LIGATURES_ON; |
| 1146 | field public static final java.awt.font.TextAttribute NUMERIC_SHAPING; |
| 1147 | field public static final java.awt.font.TextAttribute POSTURE; |
| 1148 | field public static final Float POSTURE_OBLIQUE; |
| 1149 | field public static final Float POSTURE_REGULAR; |
| 1150 | field public static final java.awt.font.TextAttribute RUN_DIRECTION; |
| 1151 | field public static final Boolean RUN_DIRECTION_LTR; |
| 1152 | field public static final Boolean RUN_DIRECTION_RTL; |
| 1153 | field public static final java.awt.font.TextAttribute SIZE; |
| 1154 | field public static final java.awt.font.TextAttribute STRIKETHROUGH; |
| 1155 | field public static final Boolean STRIKETHROUGH_ON; |
| 1156 | field public static final java.awt.font.TextAttribute SUPERSCRIPT; |
| 1157 | field public static final Integer SUPERSCRIPT_SUB; |
| 1158 | field public static final Integer SUPERSCRIPT_SUPER; |
| 1159 | field public static final java.awt.font.TextAttribute SWAP_COLORS; |
| 1160 | field public static final Boolean SWAP_COLORS_ON; |
| 1161 | field public static final java.awt.font.TextAttribute TRACKING; |
| 1162 | field public static final Float TRACKING_LOOSE; |
| 1163 | field public static final Float TRACKING_TIGHT; |
| 1164 | field public static final java.awt.font.TextAttribute TRANSFORM; |
| 1165 | field public static final java.awt.font.TextAttribute UNDERLINE; |
| 1166 | field public static final Integer UNDERLINE_LOW_DASHED; |
| 1167 | field public static final Integer UNDERLINE_LOW_DOTTED; |
| 1168 | field public static final Integer UNDERLINE_LOW_GRAY; |
| 1169 | field public static final Integer UNDERLINE_LOW_ONE_PIXEL; |
| 1170 | field public static final Integer UNDERLINE_LOW_TWO_PIXEL; |
| 1171 | field public static final Integer UNDERLINE_ON; |
| 1172 | field public static final java.awt.font.TextAttribute WEIGHT; |
| 1173 | field public static final Float WEIGHT_BOLD; |
| 1174 | field public static final Float WEIGHT_DEMIBOLD; |
| 1175 | field public static final Float WEIGHT_DEMILIGHT; |
| 1176 | field public static final Float WEIGHT_EXTRABOLD; |
| 1177 | field public static final Float WEIGHT_EXTRA_LIGHT; |
| 1178 | field public static final Float WEIGHT_HEAVY; |
| 1179 | field public static final Float WEIGHT_LIGHT; |
| 1180 | field public static final Float WEIGHT_MEDIUM; |
| 1181 | field public static final Float WEIGHT_REGULAR; |
| 1182 | field public static final Float WEIGHT_SEMIBOLD; |
| 1183 | field public static final Float WEIGHT_ULTRABOLD; |
| 1184 | field public static final java.awt.font.TextAttribute WIDTH; |
| 1185 | field public static final Float WIDTH_CONDENSED; |
| 1186 | field public static final Float WIDTH_EXTENDED; |
| 1187 | field public static final Float WIDTH_REGULAR; |
| 1188 | field public static final Float WIDTH_SEMI_CONDENSED; |
| 1189 | field public static final Float WIDTH_SEMI_EXTENDED; |
| 1190 | } |
| 1191 | |
| 1192 | } |
| 1193 | |
| 1194 | package java.beans { |
| 1195 | |
| 1196 | public class IndexedPropertyChangeEvent extends java.beans.PropertyChangeEvent { |
| 1197 | ctor public IndexedPropertyChangeEvent(Object, String, Object, Object, int); |
| 1198 | method public int getIndex(); |
| 1199 | } |
| 1200 | |
| 1201 | public class PropertyChangeEvent extends java.util.EventObject { |
| 1202 | ctor public PropertyChangeEvent(Object, String, Object, Object); |
| 1203 | method public Object getNewValue(); |
| 1204 | method public Object getOldValue(); |
| 1205 | method public Object getPropagationId(); |
| 1206 | method public String getPropertyName(); |
| 1207 | method public void setPropagationId(Object); |
| 1208 | } |
| 1209 | |
| 1210 | public interface PropertyChangeListener extends java.util.EventListener { |
| 1211 | method public void propertyChange(java.beans.PropertyChangeEvent); |
| 1212 | } |
| 1213 | |
| 1214 | public class PropertyChangeListenerProxy extends java.util.EventListenerProxy<java.beans.PropertyChangeListener> implements java.beans.PropertyChangeListener { |
| 1215 | ctor public PropertyChangeListenerProxy(String, java.beans.PropertyChangeListener); |
| 1216 | method public String getPropertyName(); |
| 1217 | method public void propertyChange(java.beans.PropertyChangeEvent); |
| 1218 | } |
| 1219 | |
| 1220 | public class PropertyChangeSupport implements java.io.Serializable { |
| 1221 | ctor public PropertyChangeSupport(Object); |
| 1222 | method public void addPropertyChangeListener(java.beans.PropertyChangeListener); |
| 1223 | method public void addPropertyChangeListener(String, java.beans.PropertyChangeListener); |
| 1224 | method public void fireIndexedPropertyChange(String, int, Object, Object); |
| 1225 | method public void fireIndexedPropertyChange(String, int, int, int); |
| 1226 | method public void fireIndexedPropertyChange(String, int, boolean, boolean); |
| 1227 | method public void firePropertyChange(String, Object, Object); |
| 1228 | method public void firePropertyChange(String, int, int); |
| 1229 | method public void firePropertyChange(String, boolean, boolean); |
| 1230 | method public void firePropertyChange(java.beans.PropertyChangeEvent); |
| 1231 | method public java.beans.PropertyChangeListener[] getPropertyChangeListeners(); |
| 1232 | method public java.beans.PropertyChangeListener[] getPropertyChangeListeners(String); |
| 1233 | method public boolean hasListeners(String); |
| 1234 | method public void removePropertyChangeListener(java.beans.PropertyChangeListener); |
| 1235 | method public void removePropertyChangeListener(String, java.beans.PropertyChangeListener); |
| 1236 | } |
| 1237 | |
| 1238 | } |
| 1239 | |
| 1240 | package java.io { |
| 1241 | |
| 1242 | public class BufferedInputStream extends java.io.FilterInputStream { |
| 1243 | ctor public BufferedInputStream(java.io.InputStream); |
| 1244 | ctor public BufferedInputStream(java.io.InputStream, int); |
| 1245 | field protected volatile byte[] buf; |
| 1246 | field protected int count; |
| 1247 | field protected int marklimit; |
| 1248 | field protected int markpos; |
| 1249 | field protected int pos; |
| 1250 | } |
| 1251 | |
| 1252 | public class BufferedOutputStream extends java.io.FilterOutputStream { |
| 1253 | ctor public BufferedOutputStream(java.io.OutputStream); |
| 1254 | ctor public BufferedOutputStream(java.io.OutputStream, int); |
| 1255 | field protected byte[] buf; |
| 1256 | field protected int count; |
| 1257 | } |
| 1258 | |
| 1259 | public class BufferedReader extends java.io.Reader { |
| 1260 | ctor public BufferedReader(java.io.Reader, int); |
| 1261 | ctor public BufferedReader(java.io.Reader); |
| 1262 | method public void close() throws java.io.IOException; |
| 1263 | method public java.util.stream.Stream<java.lang.String> lines(); |
| 1264 | method public int read(char[], int, int) throws java.io.IOException; |
| 1265 | method public String readLine() throws java.io.IOException; |
| 1266 | } |
| 1267 | |
| 1268 | public class BufferedWriter extends java.io.Writer { |
| 1269 | ctor public BufferedWriter(java.io.Writer); |
| 1270 | ctor public BufferedWriter(java.io.Writer, int); |
| 1271 | method public void close() throws java.io.IOException; |
| 1272 | method public void flush() throws java.io.IOException; |
| 1273 | method public void newLine() throws java.io.IOException; |
| 1274 | method public void write(char[], int, int) throws java.io.IOException; |
| 1275 | } |
| 1276 | |
| 1277 | public class ByteArrayInputStream extends java.io.InputStream { |
| 1278 | ctor public ByteArrayInputStream(byte[]); |
| 1279 | ctor public ByteArrayInputStream(byte[], int, int); |
| 1280 | method public int available(); |
| 1281 | method public int read(); |
| 1282 | method public int read(byte[], int, int); |
| 1283 | method public void reset(); |
| 1284 | method public long skip(long); |
| 1285 | field protected byte[] buf; |
| 1286 | field protected int count; |
| 1287 | field protected int mark; |
| 1288 | field protected int pos; |
| 1289 | } |
| 1290 | |
| 1291 | public class ByteArrayOutputStream extends java.io.OutputStream { |
| 1292 | ctor public ByteArrayOutputStream(); |
| 1293 | ctor public ByteArrayOutputStream(int); |
| 1294 | method public void reset(); |
| 1295 | method public int size(); |
| 1296 | method @NonNull public byte[] toByteArray(); |
| 1297 | method @NonNull public String toString(@NonNull String) throws java.io.UnsupportedEncodingException; |
| 1298 | method @Deprecated @NonNull public String toString(int); |
| 1299 | method public void write(int); |
| 1300 | method public void write(@NonNull byte[], int, int); |
| 1301 | method public void writeTo(@NonNull java.io.OutputStream) throws java.io.IOException; |
| 1302 | field @NonNull protected byte[] buf; |
| 1303 | field protected int count; |
| 1304 | } |
| 1305 | |
| 1306 | public class CharArrayReader extends java.io.Reader { |
| 1307 | ctor public CharArrayReader(char[]); |
| 1308 | ctor public CharArrayReader(char[], int, int); |
| 1309 | method public void close(); |
| 1310 | method public int read(char[], int, int) throws java.io.IOException; |
| 1311 | field protected char[] buf; |
| 1312 | field protected int count; |
| 1313 | field protected int markedPos; |
| 1314 | field protected int pos; |
| 1315 | } |
| 1316 | |
| 1317 | public class CharArrayWriter extends java.io.Writer { |
| 1318 | ctor public CharArrayWriter(); |
| 1319 | ctor public CharArrayWriter(int); |
| 1320 | method public java.io.CharArrayWriter append(CharSequence); |
| 1321 | method public java.io.CharArrayWriter append(CharSequence, int, int); |
| 1322 | method public java.io.CharArrayWriter append(char); |
| 1323 | method public void close(); |
| 1324 | method public void flush(); |
| 1325 | method public void reset(); |
| 1326 | method public int size(); |
| 1327 | method public char[] toCharArray(); |
| 1328 | method public void write(int); |
| 1329 | method public void write(char[], int, int); |
| 1330 | method public void write(String, int, int); |
| 1331 | method public void writeTo(java.io.Writer) throws java.io.IOException; |
| 1332 | field protected char[] buf; |
| 1333 | field protected int count; |
| 1334 | } |
| 1335 | |
| 1336 | public class CharConversionException extends java.io.IOException { |
| 1337 | ctor public CharConversionException(); |
| 1338 | ctor public CharConversionException(String); |
| 1339 | } |
| 1340 | |
| 1341 | public interface Closeable extends java.lang.AutoCloseable { |
| 1342 | method public void close() throws java.io.IOException; |
| 1343 | } |
| 1344 | |
| 1345 | public final class Console implements java.io.Flushable { |
| 1346 | method public void flush(); |
| 1347 | method public java.io.Console format(String, java.lang.Object...); |
| 1348 | method public java.io.Console printf(String, java.lang.Object...); |
| 1349 | method public String readLine(String, java.lang.Object...); |
| 1350 | method public String readLine(); |
| 1351 | method public char[] readPassword(String, java.lang.Object...); |
| 1352 | method public char[] readPassword(); |
| 1353 | method public java.io.Reader reader(); |
| 1354 | method public java.io.PrintWriter writer(); |
| 1355 | } |
| 1356 | |
| 1357 | public interface DataInput { |
| 1358 | method public boolean readBoolean() throws java.io.IOException; |
| 1359 | method public byte readByte() throws java.io.IOException; |
| 1360 | method public char readChar() throws java.io.IOException; |
| 1361 | method public double readDouble() throws java.io.IOException; |
| 1362 | method public float readFloat() throws java.io.IOException; |
| 1363 | method public void readFully(byte[]) throws java.io.IOException; |
| 1364 | method public void readFully(byte[], int, int) throws java.io.IOException; |
| 1365 | method public int readInt() throws java.io.IOException; |
| 1366 | method public String readLine() throws java.io.IOException; |
| 1367 | method public long readLong() throws java.io.IOException; |
| 1368 | method public short readShort() throws java.io.IOException; |
| 1369 | method public String readUTF() throws java.io.IOException; |
| 1370 | method public int readUnsignedByte() throws java.io.IOException; |
| 1371 | method public int readUnsignedShort() throws java.io.IOException; |
| 1372 | method public int skipBytes(int) throws java.io.IOException; |
| 1373 | } |
| 1374 | |
| 1375 | public class DataInputStream extends java.io.FilterInputStream implements java.io.DataInput { |
| 1376 | ctor public DataInputStream(java.io.InputStream); |
| 1377 | method public final int read(byte[]) throws java.io.IOException; |
| 1378 | method public final int read(byte[], int, int) throws java.io.IOException; |
| 1379 | method public final boolean readBoolean() throws java.io.IOException; |
| 1380 | method public final byte readByte() throws java.io.IOException; |
| 1381 | method public final char readChar() throws java.io.IOException; |
| 1382 | method public final double readDouble() throws java.io.IOException; |
| 1383 | method public final float readFloat() throws java.io.IOException; |
| 1384 | method public final void readFully(byte[]) throws java.io.IOException; |
| 1385 | method public final void readFully(byte[], int, int) throws java.io.IOException; |
| 1386 | method public final int readInt() throws java.io.IOException; |
| 1387 | method @Deprecated public final String readLine() throws java.io.IOException; |
| 1388 | method public final long readLong() throws java.io.IOException; |
| 1389 | method public final short readShort() throws java.io.IOException; |
| 1390 | method public final String readUTF() throws java.io.IOException; |
| 1391 | method public static final String readUTF(java.io.DataInput) throws java.io.IOException; |
| 1392 | method public final int readUnsignedByte() throws java.io.IOException; |
| 1393 | method public final int readUnsignedShort() throws java.io.IOException; |
| 1394 | method public final int skipBytes(int) throws java.io.IOException; |
| 1395 | } |
| 1396 | |
| 1397 | public interface DataOutput { |
| 1398 | method public void write(int) throws java.io.IOException; |
| 1399 | method public void write(byte[]) throws java.io.IOException; |
| 1400 | method public void write(byte[], int, int) throws java.io.IOException; |
| 1401 | method public void writeBoolean(boolean) throws java.io.IOException; |
| 1402 | method public void writeByte(int) throws java.io.IOException; |
| 1403 | method public void writeBytes(String) throws java.io.IOException; |
| 1404 | method public void writeChar(int) throws java.io.IOException; |
| 1405 | method public void writeChars(String) throws java.io.IOException; |
| 1406 | method public void writeDouble(double) throws java.io.IOException; |
| 1407 | method public void writeFloat(float) throws java.io.IOException; |
| 1408 | method public void writeInt(int) throws java.io.IOException; |
| 1409 | method public void writeLong(long) throws java.io.IOException; |
| 1410 | method public void writeShort(int) throws java.io.IOException; |
| 1411 | method public void writeUTF(String) throws java.io.IOException; |
| 1412 | } |
| 1413 | |
| 1414 | public class DataOutputStream extends java.io.FilterOutputStream implements java.io.DataOutput { |
| 1415 | ctor public DataOutputStream(java.io.OutputStream); |
| 1416 | method public final int size(); |
| 1417 | method public final void writeBoolean(boolean) throws java.io.IOException; |
| 1418 | method public final void writeByte(int) throws java.io.IOException; |
| 1419 | method public final void writeBytes(String) throws java.io.IOException; |
| 1420 | method public final void writeChar(int) throws java.io.IOException; |
| 1421 | method public final void writeChars(String) throws java.io.IOException; |
| 1422 | method public final void writeDouble(double) throws java.io.IOException; |
| 1423 | method public final void writeFloat(float) throws java.io.IOException; |
| 1424 | method public final void writeInt(int) throws java.io.IOException; |
| 1425 | method public final void writeLong(long) throws java.io.IOException; |
| 1426 | method public final void writeShort(int) throws java.io.IOException; |
| 1427 | method public final void writeUTF(String) throws java.io.IOException; |
| 1428 | field protected int written; |
| 1429 | } |
| 1430 | |
| 1431 | public class EOFException extends java.io.IOException { |
| 1432 | ctor public EOFException(); |
| 1433 | ctor public EOFException(String); |
| 1434 | } |
| 1435 | |
| 1436 | public interface Externalizable extends java.io.Serializable { |
| 1437 | method public void readExternal(java.io.ObjectInput) throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1438 | method public void writeExternal(java.io.ObjectOutput) throws java.io.IOException; |
| 1439 | } |
| 1440 | |
| 1441 | public class File implements java.lang.Comparable<java.io.File> java.io.Serializable { |
| 1442 | ctor public File(@NonNull String); |
| 1443 | ctor public File(@Nullable String, @NonNull String); |
| 1444 | ctor public File(@Nullable java.io.File, @NonNull String); |
| 1445 | ctor public File(@NonNull java.net.URI); |
| 1446 | method public boolean canExecute(); |
| 1447 | method public boolean canRead(); |
| 1448 | method public boolean canWrite(); |
| 1449 | method public int compareTo(@NonNull java.io.File); |
| 1450 | method public boolean createNewFile() throws java.io.IOException; |
| 1451 | method @NonNull public static java.io.File createTempFile(@NonNull String, @Nullable String, @Nullable java.io.File) throws java.io.IOException; |
| 1452 | method @NonNull public static java.io.File createTempFile(@NonNull String, @Nullable String) throws java.io.IOException; |
| 1453 | method public boolean delete(); |
| 1454 | method public void deleteOnExit(); |
| 1455 | method public boolean exists(); |
| 1456 | method @NonNull public java.io.File getAbsoluteFile(); |
| 1457 | method @NonNull public String getAbsolutePath(); |
| 1458 | method @NonNull public java.io.File getCanonicalFile() throws java.io.IOException; |
| 1459 | method @NonNull public String getCanonicalPath() throws java.io.IOException; |
| 1460 | method public long getFreeSpace(); |
| 1461 | method @NonNull public String getName(); |
| 1462 | method @Nullable public String getParent(); |
| 1463 | method @Nullable public java.io.File getParentFile(); |
| 1464 | method @NonNull public String getPath(); |
| 1465 | method public long getTotalSpace(); |
| 1466 | method public long getUsableSpace(); |
| 1467 | method public boolean isAbsolute(); |
| 1468 | method public boolean isDirectory(); |
| 1469 | method public boolean isFile(); |
| 1470 | method public boolean isHidden(); |
| 1471 | method public long lastModified(); |
| 1472 | method public long length(); |
| 1473 | method @Nullable public String[] list(); |
| 1474 | method @Nullable public String[] list(@Nullable java.io.FilenameFilter); |
| 1475 | method @Nullable public java.io.File[] listFiles(); |
| 1476 | method @Nullable public java.io.File[] listFiles(@Nullable java.io.FilenameFilter); |
| 1477 | method @Nullable public java.io.File[] listFiles(@Nullable java.io.FileFilter); |
| 1478 | method @NonNull public static java.io.File[] listRoots(); |
| 1479 | method public boolean mkdir(); |
| 1480 | method public boolean mkdirs(); |
| 1481 | method public boolean renameTo(@NonNull java.io.File); |
| 1482 | method public boolean setExecutable(boolean, boolean); |
| 1483 | method public boolean setExecutable(boolean); |
| 1484 | method public boolean setLastModified(long); |
| 1485 | method public boolean setReadOnly(); |
| 1486 | method public boolean setReadable(boolean, boolean); |
| 1487 | method public boolean setReadable(boolean); |
| 1488 | method public boolean setWritable(boolean, boolean); |
| 1489 | method public boolean setWritable(boolean); |
| 1490 | method @NonNull public java.nio.file.Path toPath(); |
| 1491 | method @NonNull public java.net.URI toURI(); |
| 1492 | method @Deprecated @NonNull public java.net.URL toURL() throws java.net.MalformedURLException; |
| 1493 | field @NonNull public static final String pathSeparator; |
| 1494 | field public static final char pathSeparatorChar; |
| 1495 | field @NonNull public static final String separator; |
| 1496 | field public static final char separatorChar; |
| 1497 | } |
| 1498 | |
| 1499 | public final class FileDescriptor { |
| 1500 | ctor public FileDescriptor(); |
| 1501 | method public void sync() throws java.io.SyncFailedException; |
| 1502 | method public boolean valid(); |
| 1503 | field public static final java.io.FileDescriptor err; |
| 1504 | field public static final java.io.FileDescriptor in; |
| 1505 | field public static final java.io.FileDescriptor out; |
| 1506 | } |
| 1507 | |
| 1508 | @java.lang.FunctionalInterface public interface FileFilter { |
| 1509 | method public boolean accept(java.io.File); |
| 1510 | } |
| 1511 | |
| 1512 | public class FileInputStream extends java.io.InputStream { |
| 1513 | ctor public FileInputStream(String) throws java.io.FileNotFoundException; |
| 1514 | ctor public FileInputStream(java.io.File) throws java.io.FileNotFoundException; |
| 1515 | ctor public FileInputStream(java.io.FileDescriptor); |
| 1516 | method protected void finalize() throws java.io.IOException; |
| 1517 | method public java.nio.channels.FileChannel getChannel(); |
| 1518 | method public final java.io.FileDescriptor getFD() throws java.io.IOException; |
| 1519 | method public int read() throws java.io.IOException; |
| 1520 | } |
| 1521 | |
| 1522 | public class FileNotFoundException extends java.io.IOException { |
| 1523 | ctor public FileNotFoundException(); |
| 1524 | ctor public FileNotFoundException(String); |
| 1525 | } |
| 1526 | |
| 1527 | public class FileOutputStream extends java.io.OutputStream { |
| 1528 | ctor public FileOutputStream(String) throws java.io.FileNotFoundException; |
| 1529 | ctor public FileOutputStream(String, boolean) throws java.io.FileNotFoundException; |
| 1530 | ctor public FileOutputStream(java.io.File) throws java.io.FileNotFoundException; |
| 1531 | ctor public FileOutputStream(java.io.File, boolean) throws java.io.FileNotFoundException; |
| 1532 | ctor public FileOutputStream(java.io.FileDescriptor); |
| 1533 | method protected void finalize() throws java.io.IOException; |
| 1534 | method public java.nio.channels.FileChannel getChannel(); |
| 1535 | method public final java.io.FileDescriptor getFD() throws java.io.IOException; |
| 1536 | method public void write(int) throws java.io.IOException; |
| 1537 | } |
| 1538 | |
| 1539 | public final class FilePermission extends java.security.Permission implements java.io.Serializable { |
| 1540 | ctor public FilePermission(String, String); |
| 1541 | method public String getActions(); |
| 1542 | method public boolean implies(java.security.Permission); |
| 1543 | } |
| 1544 | |
| 1545 | public class FileReader extends java.io.InputStreamReader { |
| 1546 | ctor public FileReader(String) throws java.io.FileNotFoundException; |
| 1547 | ctor public FileReader(java.io.File) throws java.io.FileNotFoundException; |
| 1548 | ctor public FileReader(java.io.FileDescriptor); |
| 1549 | } |
| 1550 | |
| 1551 | public class FileWriter extends java.io.OutputStreamWriter { |
| 1552 | ctor public FileWriter(String) throws java.io.IOException; |
| 1553 | ctor public FileWriter(String, boolean) throws java.io.IOException; |
| 1554 | ctor public FileWriter(java.io.File) throws java.io.IOException; |
| 1555 | ctor public FileWriter(java.io.File, boolean) throws java.io.IOException; |
| 1556 | ctor public FileWriter(java.io.FileDescriptor); |
| 1557 | } |
| 1558 | |
| 1559 | @java.lang.FunctionalInterface public interface FilenameFilter { |
| 1560 | method public boolean accept(java.io.File, String); |
| 1561 | } |
| 1562 | |
| 1563 | public class FilterInputStream extends java.io.InputStream { |
| 1564 | ctor protected FilterInputStream(java.io.InputStream); |
| 1565 | method public int read() throws java.io.IOException; |
| 1566 | field protected volatile java.io.InputStream in; |
| 1567 | } |
| 1568 | |
| 1569 | public class FilterOutputStream extends java.io.OutputStream { |
| 1570 | ctor public FilterOutputStream(java.io.OutputStream); |
| 1571 | method public void write(int) throws java.io.IOException; |
| 1572 | field protected java.io.OutputStream out; |
| 1573 | } |
| 1574 | |
| 1575 | public abstract class FilterReader extends java.io.Reader { |
| 1576 | ctor protected FilterReader(java.io.Reader); |
| 1577 | method public void close() throws java.io.IOException; |
| 1578 | method public int read(char[], int, int) throws java.io.IOException; |
| 1579 | field protected java.io.Reader in; |
| 1580 | } |
| 1581 | |
| 1582 | public abstract class FilterWriter extends java.io.Writer { |
| 1583 | ctor protected FilterWriter(java.io.Writer); |
| 1584 | method public void close() throws java.io.IOException; |
| 1585 | method public void flush() throws java.io.IOException; |
| 1586 | method public void write(char[], int, int) throws java.io.IOException; |
| 1587 | field protected java.io.Writer out; |
| 1588 | } |
| 1589 | |
| 1590 | public interface Flushable { |
| 1591 | method public void flush() throws java.io.IOException; |
| 1592 | } |
| 1593 | |
| 1594 | public class IOError extends java.lang.Error { |
| 1595 | ctor public IOError(Throwable); |
| 1596 | } |
| 1597 | |
| 1598 | public class IOException extends java.lang.Exception { |
| 1599 | ctor public IOException(); |
| 1600 | ctor public IOException(String); |
| 1601 | ctor public IOException(String, Throwable); |
| 1602 | ctor public IOException(Throwable); |
| 1603 | } |
| 1604 | |
| 1605 | public abstract class InputStream implements java.io.Closeable { |
| 1606 | ctor public InputStream(); |
| 1607 | method public int available() throws java.io.IOException; |
| 1608 | method public void close() throws java.io.IOException; |
| 1609 | method public void mark(int); |
| 1610 | method public boolean markSupported(); |
| 1611 | method public abstract int read() throws java.io.IOException; |
| 1612 | method public int read(byte[]) throws java.io.IOException; |
| 1613 | method public int read(byte[], int, int) throws java.io.IOException; |
| 1614 | method public void reset() throws java.io.IOException; |
| 1615 | method public long skip(long) throws java.io.IOException; |
| 1616 | } |
| 1617 | |
| 1618 | public class InputStreamReader extends java.io.Reader { |
| 1619 | ctor public InputStreamReader(java.io.InputStream); |
| 1620 | ctor public InputStreamReader(java.io.InputStream, String) throws java.io.UnsupportedEncodingException; |
| 1621 | ctor public InputStreamReader(java.io.InputStream, java.nio.charset.Charset); |
| 1622 | ctor public InputStreamReader(java.io.InputStream, java.nio.charset.CharsetDecoder); |
| 1623 | method public void close() throws java.io.IOException; |
| 1624 | method public String getEncoding(); |
| 1625 | method public int read(char[], int, int) throws java.io.IOException; |
| 1626 | } |
| 1627 | |
| 1628 | public class InterruptedIOException extends java.io.IOException { |
| 1629 | ctor public InterruptedIOException(); |
| 1630 | ctor public InterruptedIOException(String); |
| 1631 | field public int bytesTransferred; |
| 1632 | } |
| 1633 | |
| 1634 | public class InvalidClassException extends java.io.ObjectStreamException { |
| 1635 | ctor public InvalidClassException(String); |
| 1636 | ctor public InvalidClassException(String, String); |
| 1637 | field public String classname; |
| 1638 | } |
| 1639 | |
| 1640 | public class InvalidObjectException extends java.io.ObjectStreamException { |
| 1641 | ctor public InvalidObjectException(String); |
| 1642 | } |
| 1643 | |
| 1644 | @Deprecated public class LineNumberInputStream extends java.io.FilterInputStream { |
| 1645 | ctor @Deprecated public LineNumberInputStream(java.io.InputStream); |
| 1646 | method @Deprecated public int getLineNumber(); |
| 1647 | method @Deprecated public void setLineNumber(int); |
| 1648 | } |
| 1649 | |
| 1650 | public class LineNumberReader extends java.io.BufferedReader { |
| 1651 | ctor public LineNumberReader(java.io.Reader); |
| 1652 | ctor public LineNumberReader(java.io.Reader, int); |
| 1653 | method public int getLineNumber(); |
| 1654 | method public void setLineNumber(int); |
| 1655 | } |
| 1656 | |
| 1657 | public class NotActiveException extends java.io.ObjectStreamException { |
| 1658 | ctor public NotActiveException(String); |
| 1659 | ctor public NotActiveException(); |
| 1660 | } |
| 1661 | |
| 1662 | public class NotSerializableException extends java.io.ObjectStreamException { |
| 1663 | ctor public NotSerializableException(String); |
| 1664 | ctor public NotSerializableException(); |
| 1665 | } |
| 1666 | |
| 1667 | public interface ObjectInput extends java.io.DataInput java.lang.AutoCloseable { |
| 1668 | method public int available() throws java.io.IOException; |
| 1669 | method public void close() throws java.io.IOException; |
| 1670 | method public int read() throws java.io.IOException; |
| 1671 | method public int read(byte[]) throws java.io.IOException; |
| 1672 | method public int read(byte[], int, int) throws java.io.IOException; |
| 1673 | method public Object readObject() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1674 | method public long skip(long) throws java.io.IOException; |
| 1675 | } |
| 1676 | |
| 1677 | public class ObjectInputStream extends java.io.InputStream implements java.io.ObjectInput java.io.ObjectStreamConstants { |
| 1678 | ctor public ObjectInputStream(java.io.InputStream) throws java.io.IOException; |
| 1679 | ctor protected ObjectInputStream() throws java.io.IOException, java.lang.SecurityException; |
| 1680 | method public void defaultReadObject() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1681 | method protected boolean enableResolveObject(boolean) throws java.lang.SecurityException; |
| 1682 | method public int read() throws java.io.IOException; |
| 1683 | method public boolean readBoolean() throws java.io.IOException; |
| 1684 | method public byte readByte() throws java.io.IOException; |
| 1685 | method public char readChar() throws java.io.IOException; |
| 1686 | method protected java.io.ObjectStreamClass readClassDescriptor() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1687 | method public double readDouble() throws java.io.IOException; |
| 1688 | method public java.io.ObjectInputStream.GetField readFields() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1689 | method public float readFloat() throws java.io.IOException; |
| 1690 | method public void readFully(byte[]) throws java.io.IOException; |
| 1691 | method public void readFully(byte[], int, int) throws java.io.IOException; |
| 1692 | method public int readInt() throws java.io.IOException; |
| 1693 | method @Deprecated public String readLine() throws java.io.IOException; |
| 1694 | method public long readLong() throws java.io.IOException; |
| 1695 | method public final Object readObject() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1696 | method protected Object readObjectOverride() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1697 | method public short readShort() throws java.io.IOException; |
| 1698 | method protected void readStreamHeader() throws java.io.IOException, java.io.StreamCorruptedException; |
| 1699 | method public String readUTF() throws java.io.IOException; |
| 1700 | method public Object readUnshared() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1701 | method public int readUnsignedByte() throws java.io.IOException; |
| 1702 | method public int readUnsignedShort() throws java.io.IOException; |
| 1703 | method public void registerValidation(java.io.ObjectInputValidation, int) throws java.io.InvalidObjectException, java.io.NotActiveException; |
| 1704 | method protected Class<?> resolveClass(java.io.ObjectStreamClass) throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1705 | method protected Object resolveObject(Object) throws java.io.IOException; |
| 1706 | method protected Class<?> resolveProxyClass(String[]) throws java.lang.ClassNotFoundException, java.io.IOException; |
| 1707 | method public int skipBytes(int) throws java.io.IOException; |
| 1708 | } |
| 1709 | |
| 1710 | public abstract static class ObjectInputStream.GetField { |
| 1711 | ctor public ObjectInputStream.GetField(); |
| 1712 | method public abstract boolean defaulted(String) throws java.io.IOException; |
| 1713 | method public abstract boolean get(String, boolean) throws java.io.IOException; |
| 1714 | method public abstract byte get(String, byte) throws java.io.IOException; |
| 1715 | method public abstract char get(String, char) throws java.io.IOException; |
| 1716 | method public abstract short get(String, short) throws java.io.IOException; |
| 1717 | method public abstract int get(String, int) throws java.io.IOException; |
| 1718 | method public abstract long get(String, long) throws java.io.IOException; |
| 1719 | method public abstract float get(String, float) throws java.io.IOException; |
| 1720 | method public abstract double get(String, double) throws java.io.IOException; |
| 1721 | method public abstract Object get(String, Object) throws java.io.IOException; |
| 1722 | method public abstract java.io.ObjectStreamClass getObjectStreamClass(); |
| 1723 | } |
| 1724 | |
| 1725 | public interface ObjectInputValidation { |
| 1726 | method public void validateObject() throws java.io.InvalidObjectException; |
| 1727 | } |
| 1728 | |
| 1729 | public interface ObjectOutput extends java.io.DataOutput java.lang.AutoCloseable { |
| 1730 | method public void close() throws java.io.IOException; |
| 1731 | method public void flush() throws java.io.IOException; |
| 1732 | method public void writeObject(Object) throws java.io.IOException; |
| 1733 | } |
| 1734 | |
| 1735 | public class ObjectOutputStream extends java.io.OutputStream implements java.io.ObjectOutput java.io.ObjectStreamConstants { |
| 1736 | ctor public ObjectOutputStream(java.io.OutputStream) throws java.io.IOException; |
| 1737 | ctor protected ObjectOutputStream() throws java.io.IOException, java.lang.SecurityException; |
| 1738 | method protected void annotateClass(Class<?>) throws java.io.IOException; |
| 1739 | method protected void annotateProxyClass(Class<?>) throws java.io.IOException; |
| 1740 | method public void defaultWriteObject() throws java.io.IOException; |
| 1741 | method protected void drain() throws java.io.IOException; |
| 1742 | method protected boolean enableReplaceObject(boolean) throws java.lang.SecurityException; |
| 1743 | method public java.io.ObjectOutputStream.PutField putFields() throws java.io.IOException; |
| 1744 | method protected Object replaceObject(Object) throws java.io.IOException; |
| 1745 | method public void reset() throws java.io.IOException; |
| 1746 | method public void useProtocolVersion(int) throws java.io.IOException; |
| 1747 | method public void write(int) throws java.io.IOException; |
| 1748 | method public void writeBoolean(boolean) throws java.io.IOException; |
| 1749 | method public void writeByte(int) throws java.io.IOException; |
| 1750 | method public void writeBytes(String) throws java.io.IOException; |
| 1751 | method public void writeChar(int) throws java.io.IOException; |
| 1752 | method public void writeChars(String) throws java.io.IOException; |
| 1753 | method protected void writeClassDescriptor(java.io.ObjectStreamClass) throws java.io.IOException; |
| 1754 | method public void writeDouble(double) throws java.io.IOException; |
| 1755 | method public void writeFields() throws java.io.IOException; |
| 1756 | method public void writeFloat(float) throws java.io.IOException; |
| 1757 | method public void writeInt(int) throws java.io.IOException; |
| 1758 | method public void writeLong(long) throws java.io.IOException; |
| 1759 | method public final void writeObject(Object) throws java.io.IOException; |
| 1760 | method protected void writeObjectOverride(Object) throws java.io.IOException; |
| 1761 | method public void writeShort(int) throws java.io.IOException; |
| 1762 | method protected void writeStreamHeader() throws java.io.IOException; |
| 1763 | method public void writeUTF(String) throws java.io.IOException; |
| 1764 | method public void writeUnshared(Object) throws java.io.IOException; |
| 1765 | } |
| 1766 | |
| 1767 | public abstract static class ObjectOutputStream.PutField { |
| 1768 | ctor public ObjectOutputStream.PutField(); |
| 1769 | method public abstract void put(String, boolean); |
| 1770 | method public abstract void put(String, byte); |
| 1771 | method public abstract void put(String, char); |
| 1772 | method public abstract void put(String, short); |
| 1773 | method public abstract void put(String, int); |
| 1774 | method public abstract void put(String, long); |
| 1775 | method public abstract void put(String, float); |
| 1776 | method public abstract void put(String, double); |
| 1777 | method public abstract void put(String, Object); |
| 1778 | method @Deprecated public abstract void write(java.io.ObjectOutput) throws java.io.IOException; |
| 1779 | } |
| 1780 | |
| 1781 | public class ObjectStreamClass implements java.io.Serializable { |
| 1782 | method public Class<?> forClass(); |
| 1783 | method public java.io.ObjectStreamField getField(String); |
| 1784 | method public java.io.ObjectStreamField[] getFields(); |
| 1785 | method public String getName(); |
| 1786 | method public long getSerialVersionUID(); |
| 1787 | method public static java.io.ObjectStreamClass lookup(Class<?>); |
| 1788 | method public static java.io.ObjectStreamClass lookupAny(Class<?>); |
| 1789 | field public static final java.io.ObjectStreamField[] NO_FIELDS; |
| 1790 | } |
| 1791 | |
| 1792 | public interface ObjectStreamConstants { |
| 1793 | field public static final int PROTOCOL_VERSION_1 = 1; // 0x1 |
| 1794 | field public static final int PROTOCOL_VERSION_2 = 2; // 0x2 |
| 1795 | field public static final byte SC_BLOCK_DATA = 8; // 0x8 |
| 1796 | field public static final byte SC_ENUM = 16; // 0x10 |
| 1797 | field public static final byte SC_EXTERNALIZABLE = 4; // 0x4 |
| 1798 | field public static final byte SC_SERIALIZABLE = 2; // 0x2 |
| 1799 | field public static final byte SC_WRITE_METHOD = 1; // 0x1 |
| 1800 | field public static final short STREAM_MAGIC = -21267; // 0xffffaced |
| 1801 | field public static final short STREAM_VERSION = 5; // 0x5 |
| 1802 | field public static final java.io.SerializablePermission SUBCLASS_IMPLEMENTATION_PERMISSION; |
| 1803 | field public static final java.io.SerializablePermission SUBSTITUTION_PERMISSION; |
| 1804 | field public static final byte TC_ARRAY = 117; // 0x75 |
| 1805 | field public static final byte TC_BASE = 112; // 0x70 |
| 1806 | field public static final byte TC_BLOCKDATA = 119; // 0x77 |
| 1807 | field public static final byte TC_BLOCKDATALONG = 122; // 0x7a |
| 1808 | field public static final byte TC_CLASS = 118; // 0x76 |
| 1809 | field public static final byte TC_CLASSDESC = 114; // 0x72 |
| 1810 | field public static final byte TC_ENDBLOCKDATA = 120; // 0x78 |
| 1811 | field public static final byte TC_ENUM = 126; // 0x7e |
| 1812 | field public static final byte TC_EXCEPTION = 123; // 0x7b |
| 1813 | field public static final byte TC_LONGSTRING = 124; // 0x7c |
| 1814 | field public static final byte TC_MAX = 126; // 0x7e |
| 1815 | field public static final byte TC_NULL = 112; // 0x70 |
| 1816 | field public static final byte TC_OBJECT = 115; // 0x73 |
| 1817 | field public static final byte TC_PROXYCLASSDESC = 125; // 0x7d |
| 1818 | field public static final byte TC_REFERENCE = 113; // 0x71 |
| 1819 | field public static final byte TC_RESET = 121; // 0x79 |
| 1820 | field public static final byte TC_STRING = 116; // 0x74 |
| 1821 | field public static final int baseWireHandle = 8257536; // 0x7e0000 |
| 1822 | } |
| 1823 | |
| 1824 | public abstract class ObjectStreamException extends java.io.IOException { |
| 1825 | ctor protected ObjectStreamException(String); |
| 1826 | ctor protected ObjectStreamException(); |
| 1827 | } |
| 1828 | |
| 1829 | public class ObjectStreamField implements java.lang.Comparable<java.lang.Object> { |
| 1830 | ctor public ObjectStreamField(String, Class<?>); |
| 1831 | ctor public ObjectStreamField(String, Class<?>, boolean); |
| 1832 | method public int compareTo(Object); |
| 1833 | method public String getName(); |
| 1834 | method public int getOffset(); |
| 1835 | method public Class<?> getType(); |
| 1836 | method public char getTypeCode(); |
| 1837 | method public String getTypeString(); |
| 1838 | method public boolean isPrimitive(); |
| 1839 | method public boolean isUnshared(); |
| 1840 | method protected void setOffset(int); |
| 1841 | } |
| 1842 | |
| 1843 | public class OptionalDataException extends java.io.ObjectStreamException { |
| 1844 | field public boolean eof; |
| 1845 | field public int length; |
| 1846 | } |
| 1847 | |
| 1848 | public abstract class OutputStream implements java.io.Closeable java.io.Flushable { |
| 1849 | ctor public OutputStream(); |
| 1850 | method public void close() throws java.io.IOException; |
| 1851 | method public void flush() throws java.io.IOException; |
| 1852 | method public abstract void write(int) throws java.io.IOException; |
| 1853 | method public void write(byte[]) throws java.io.IOException; |
| 1854 | method public void write(byte[], int, int) throws java.io.IOException; |
| 1855 | } |
| 1856 | |
| 1857 | public class OutputStreamWriter extends java.io.Writer { |
| 1858 | ctor public OutputStreamWriter(java.io.OutputStream, String) throws java.io.UnsupportedEncodingException; |
| 1859 | ctor public OutputStreamWriter(java.io.OutputStream); |
| 1860 | ctor public OutputStreamWriter(java.io.OutputStream, java.nio.charset.Charset); |
| 1861 | ctor public OutputStreamWriter(java.io.OutputStream, java.nio.charset.CharsetEncoder); |
| 1862 | method public void close() throws java.io.IOException; |
| 1863 | method public void flush() throws java.io.IOException; |
| 1864 | method public String getEncoding(); |
| 1865 | method public void write(char[], int, int) throws java.io.IOException; |
| 1866 | } |
| 1867 | |
| 1868 | public class PipedInputStream extends java.io.InputStream { |
| 1869 | ctor public PipedInputStream(java.io.PipedOutputStream) throws java.io.IOException; |
| 1870 | ctor public PipedInputStream(java.io.PipedOutputStream, int) throws java.io.IOException; |
| 1871 | ctor public PipedInputStream(); |
| 1872 | ctor public PipedInputStream(int); |
| 1873 | method public void connect(java.io.PipedOutputStream) throws java.io.IOException; |
| 1874 | method public int read() throws java.io.IOException; |
| 1875 | method protected void receive(int) throws java.io.IOException; |
| 1876 | field protected static final int PIPE_SIZE = 1024; // 0x400 |
| 1877 | field protected byte[] buffer; |
| 1878 | field protected int in; |
| 1879 | field protected int out; |
| 1880 | } |
| 1881 | |
| 1882 | public class PipedOutputStream extends java.io.OutputStream { |
| 1883 | ctor public PipedOutputStream(java.io.PipedInputStream) throws java.io.IOException; |
| 1884 | ctor public PipedOutputStream(); |
| 1885 | method public void connect(java.io.PipedInputStream) throws java.io.IOException; |
| 1886 | method public void write(int) throws java.io.IOException; |
| 1887 | } |
| 1888 | |
| 1889 | public class PipedReader extends java.io.Reader { |
| 1890 | ctor public PipedReader(java.io.PipedWriter) throws java.io.IOException; |
| 1891 | ctor public PipedReader(java.io.PipedWriter, int) throws java.io.IOException; |
| 1892 | ctor public PipedReader(); |
| 1893 | ctor public PipedReader(int); |
| 1894 | method public void close() throws java.io.IOException; |
| 1895 | method public void connect(java.io.PipedWriter) throws java.io.IOException; |
| 1896 | method public int read(char[], int, int) throws java.io.IOException; |
| 1897 | } |
| 1898 | |
| 1899 | public class PipedWriter extends java.io.Writer { |
| 1900 | ctor public PipedWriter(java.io.PipedReader) throws java.io.IOException; |
| 1901 | ctor public PipedWriter(); |
| 1902 | method public void close() throws java.io.IOException; |
| 1903 | method public void connect(java.io.PipedReader) throws java.io.IOException; |
| 1904 | method public void flush() throws java.io.IOException; |
| 1905 | method public void write(char[], int, int) throws java.io.IOException; |
| 1906 | } |
| 1907 | |
| 1908 | public class PrintStream extends java.io.FilterOutputStream implements java.lang.Appendable java.io.Closeable { |
| 1909 | ctor public PrintStream(java.io.OutputStream); |
| 1910 | ctor public PrintStream(java.io.OutputStream, boolean); |
| 1911 | ctor public PrintStream(java.io.OutputStream, boolean, String) throws java.io.UnsupportedEncodingException; |
| 1912 | ctor public PrintStream(String) throws java.io.FileNotFoundException; |
| 1913 | ctor public PrintStream(String, String) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 1914 | ctor public PrintStream(java.io.File) throws java.io.FileNotFoundException; |
| 1915 | ctor public PrintStream(java.io.File, String) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 1916 | method public java.io.PrintStream append(CharSequence); |
| 1917 | method public java.io.PrintStream append(CharSequence, int, int); |
| 1918 | method public java.io.PrintStream append(char); |
| 1919 | method public boolean checkError(); |
| 1920 | method protected void clearError(); |
| 1921 | method public void close(); |
| 1922 | method public void flush(); |
| 1923 | method public java.io.PrintStream format(String, java.lang.Object...); |
| 1924 | method public java.io.PrintStream format(java.util.Locale, String, java.lang.Object...); |
| 1925 | method public void print(boolean); |
| 1926 | method public void print(char); |
| 1927 | method public void print(int); |
| 1928 | method public void print(long); |
| 1929 | method public void print(float); |
| 1930 | method public void print(double); |
| 1931 | method public void print(char[]); |
| 1932 | method public void print(String); |
| 1933 | method public void print(Object); |
| 1934 | method public java.io.PrintStream printf(String, java.lang.Object...); |
| 1935 | method public java.io.PrintStream printf(java.util.Locale, String, java.lang.Object...); |
| 1936 | method public void println(); |
| 1937 | method public void println(boolean); |
| 1938 | method public void println(char); |
| 1939 | method public void println(int); |
| 1940 | method public void println(long); |
| 1941 | method public void println(float); |
| 1942 | method public void println(double); |
| 1943 | method public void println(char[]); |
| 1944 | method public void println(String); |
| 1945 | method public void println(Object); |
| 1946 | method protected void setError(); |
| 1947 | method public void write(int); |
| 1948 | method public void write(byte[], int, int); |
| 1949 | } |
| 1950 | |
| 1951 | public class PrintWriter extends java.io.Writer { |
| 1952 | ctor public PrintWriter(@NonNull java.io.Writer); |
| 1953 | ctor public PrintWriter(@NonNull java.io.Writer, boolean); |
| 1954 | ctor public PrintWriter(@NonNull java.io.OutputStream); |
| 1955 | ctor public PrintWriter(@NonNull java.io.OutputStream, boolean); |
| 1956 | ctor public PrintWriter(@NonNull String) throws java.io.FileNotFoundException; |
| 1957 | ctor public PrintWriter(@NonNull String, @NonNull String) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 1958 | ctor public PrintWriter(@NonNull java.io.File) throws java.io.FileNotFoundException; |
| 1959 | ctor public PrintWriter(@NonNull java.io.File, @NonNull String) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 1960 | method @NonNull public java.io.PrintWriter append(@Nullable CharSequence); |
| 1961 | method @NonNull public java.io.PrintWriter append(@Nullable CharSequence, int, int); |
| 1962 | method @NonNull public java.io.PrintWriter append(char); |
| 1963 | method public boolean checkError(); |
| 1964 | method protected void clearError(); |
| 1965 | method public void close(); |
| 1966 | method public void flush(); |
| 1967 | method @NonNull public java.io.PrintWriter format(@NonNull String, @NonNull java.lang.Object...); |
| 1968 | method @NonNull public java.io.PrintWriter format(@Nullable java.util.Locale, @NonNull String, @NonNull java.lang.Object...); |
| 1969 | method public void print(boolean); |
| 1970 | method public void print(char); |
| 1971 | method public void print(int); |
| 1972 | method public void print(long); |
| 1973 | method public void print(float); |
| 1974 | method public void print(double); |
| 1975 | method public void print(char[]); |
| 1976 | method public void print(@Nullable String); |
| 1977 | method public void print(@Nullable Object); |
| 1978 | method @NonNull public java.io.PrintWriter printf(@NonNull String, @NonNull java.lang.Object...); |
| 1979 | method @NonNull public java.io.PrintWriter printf(@Nullable java.util.Locale, @NonNull String, @NonNull java.lang.Object...); |
| 1980 | method public void println(); |
| 1981 | method public void println(boolean); |
| 1982 | method public void println(char); |
| 1983 | method public void println(int); |
| 1984 | method public void println(long); |
| 1985 | method public void println(float); |
| 1986 | method public void println(double); |
| 1987 | method public void println(char[]); |
| 1988 | method public void println(@Nullable String); |
| 1989 | method public void println(@Nullable Object); |
| 1990 | method protected void setError(); |
| 1991 | method public void write(int); |
| 1992 | method public void write(char[], int, int); |
| 1993 | method public void write(char[]); |
| 1994 | method public void write(@NonNull String, int, int); |
| 1995 | method public void write(@NonNull String); |
| 1996 | field protected java.io.Writer out; |
| 1997 | } |
| 1998 | |
| 1999 | public class PushbackInputStream extends java.io.FilterInputStream { |
| 2000 | ctor public PushbackInputStream(java.io.InputStream, int); |
| 2001 | ctor public PushbackInputStream(java.io.InputStream); |
| 2002 | method public void unread(int) throws java.io.IOException; |
| 2003 | method public void unread(byte[], int, int) throws java.io.IOException; |
| 2004 | method public void unread(byte[]) throws java.io.IOException; |
| 2005 | field protected byte[] buf; |
| 2006 | field protected int pos; |
| 2007 | } |
| 2008 | |
| 2009 | public class PushbackReader extends java.io.FilterReader { |
| 2010 | ctor public PushbackReader(java.io.Reader, int); |
| 2011 | ctor public PushbackReader(java.io.Reader); |
| 2012 | method public void unread(int) throws java.io.IOException; |
| 2013 | method public void unread(char[], int, int) throws java.io.IOException; |
| 2014 | method public void unread(char[]) throws java.io.IOException; |
| 2015 | } |
| 2016 | |
| 2017 | public class RandomAccessFile implements java.io.Closeable java.io.DataInput java.io.DataOutput { |
| 2018 | ctor public RandomAccessFile(String, String) throws java.io.FileNotFoundException; |
| 2019 | ctor public RandomAccessFile(java.io.File, String) throws java.io.FileNotFoundException; |
| 2020 | method public void close() throws java.io.IOException; |
| 2021 | method public final java.nio.channels.FileChannel getChannel(); |
| 2022 | method public final java.io.FileDescriptor getFD() throws java.io.IOException; |
| 2023 | method public long getFilePointer() throws java.io.IOException; |
| 2024 | method public long length() throws java.io.IOException; |
| 2025 | method public int read() throws java.io.IOException; |
| 2026 | method public int read(byte[], int, int) throws java.io.IOException; |
| 2027 | method public int read(byte[]) throws java.io.IOException; |
| 2028 | method public final boolean readBoolean() throws java.io.IOException; |
| 2029 | method public final byte readByte() throws java.io.IOException; |
| 2030 | method public final char readChar() throws java.io.IOException; |
| 2031 | method public final double readDouble() throws java.io.IOException; |
| 2032 | method public final float readFloat() throws java.io.IOException; |
| 2033 | method public final void readFully(byte[]) throws java.io.IOException; |
| 2034 | method public final void readFully(byte[], int, int) throws java.io.IOException; |
| 2035 | method public final int readInt() throws java.io.IOException; |
| 2036 | method public final String readLine() throws java.io.IOException; |
| 2037 | method public final long readLong() throws java.io.IOException; |
| 2038 | method public final short readShort() throws java.io.IOException; |
| 2039 | method public final String readUTF() throws java.io.IOException; |
| 2040 | method public final int readUnsignedByte() throws java.io.IOException; |
| 2041 | method public final int readUnsignedShort() throws java.io.IOException; |
| 2042 | method public void seek(long) throws java.io.IOException; |
| 2043 | method public void setLength(long) throws java.io.IOException; |
| 2044 | method public int skipBytes(int) throws java.io.IOException; |
| 2045 | method public void write(int) throws java.io.IOException; |
| 2046 | method public void write(byte[]) throws java.io.IOException; |
| 2047 | method public void write(byte[], int, int) throws java.io.IOException; |
| 2048 | method public final void writeBoolean(boolean) throws java.io.IOException; |
| 2049 | method public final void writeByte(int) throws java.io.IOException; |
| 2050 | method public final void writeBytes(String) throws java.io.IOException; |
| 2051 | method public final void writeChar(int) throws java.io.IOException; |
| 2052 | method public final void writeChars(String) throws java.io.IOException; |
| 2053 | method public final void writeDouble(double) throws java.io.IOException; |
| 2054 | method public final void writeFloat(float) throws java.io.IOException; |
| 2055 | method public final void writeInt(int) throws java.io.IOException; |
| 2056 | method public final void writeLong(long) throws java.io.IOException; |
| 2057 | method public final void writeShort(int) throws java.io.IOException; |
| 2058 | method public final void writeUTF(String) throws java.io.IOException; |
| 2059 | } |
| 2060 | |
| 2061 | public abstract class Reader implements java.io.Closeable java.lang.Readable { |
| 2062 | ctor protected Reader(); |
| 2063 | ctor protected Reader(Object); |
| 2064 | method public void mark(int) throws java.io.IOException; |
| 2065 | method public boolean markSupported(); |
| 2066 | method public int read(java.nio.CharBuffer) throws java.io.IOException; |
| 2067 | method public int read() throws java.io.IOException; |
| 2068 | method public int read(char[]) throws java.io.IOException; |
| 2069 | method public abstract int read(char[], int, int) throws java.io.IOException; |
| 2070 | method public boolean ready() throws java.io.IOException; |
| 2071 | method public void reset() throws java.io.IOException; |
| 2072 | method public long skip(long) throws java.io.IOException; |
| 2073 | field protected Object lock; |
| 2074 | } |
| 2075 | |
| 2076 | public class SequenceInputStream extends java.io.InputStream { |
| 2077 | ctor public SequenceInputStream(java.util.Enumeration<? extends java.io.InputStream>); |
| 2078 | ctor public SequenceInputStream(java.io.InputStream, java.io.InputStream); |
| 2079 | method public int read() throws java.io.IOException; |
| 2080 | } |
| 2081 | |
| 2082 | public interface Serializable { |
| 2083 | } |
| 2084 | |
| 2085 | public final class SerializablePermission extends java.security.BasicPermission { |
| 2086 | ctor public SerializablePermission(String); |
| 2087 | ctor public SerializablePermission(String, String); |
| 2088 | } |
| 2089 | |
| 2090 | public class StreamCorruptedException extends java.io.ObjectStreamException { |
| 2091 | ctor public StreamCorruptedException(String); |
| 2092 | ctor public StreamCorruptedException(); |
| 2093 | } |
| 2094 | |
| 2095 | public class StreamTokenizer { |
| 2096 | ctor @Deprecated public StreamTokenizer(java.io.InputStream); |
| 2097 | ctor public StreamTokenizer(java.io.Reader); |
| 2098 | method public void commentChar(int); |
| 2099 | method public void eolIsSignificant(boolean); |
| 2100 | method public int lineno(); |
| 2101 | method public void lowerCaseMode(boolean); |
| 2102 | method public int nextToken() throws java.io.IOException; |
| 2103 | method public void ordinaryChar(int); |
| 2104 | method public void ordinaryChars(int, int); |
| 2105 | method public void parseNumbers(); |
| 2106 | method public void pushBack(); |
| 2107 | method public void quoteChar(int); |
| 2108 | method public void resetSyntax(); |
| 2109 | method public void slashSlashComments(boolean); |
| 2110 | method public void slashStarComments(boolean); |
| 2111 | method public void whitespaceChars(int, int); |
| 2112 | method public void wordChars(int, int); |
| 2113 | field public static final int TT_EOF = -1; // 0xffffffff |
| 2114 | field public static final int TT_EOL = 10; // 0xa |
| 2115 | field public static final int TT_NUMBER = -2; // 0xfffffffe |
| 2116 | field public static final int TT_WORD = -3; // 0xfffffffd |
| 2117 | field public double nval; |
| 2118 | field public String sval; |
| 2119 | field public int ttype; |
| 2120 | } |
| 2121 | |
| 2122 | @Deprecated public class StringBufferInputStream extends java.io.InputStream { |
| 2123 | ctor @Deprecated public StringBufferInputStream(String); |
| 2124 | method @Deprecated public int available(); |
| 2125 | method @Deprecated public int read(); |
| 2126 | method @Deprecated public int read(byte[], int, int); |
| 2127 | method @Deprecated public void reset(); |
| 2128 | method @Deprecated public long skip(long); |
| 2129 | field @Deprecated protected String buffer; |
| 2130 | field @Deprecated protected int count; |
| 2131 | field @Deprecated protected int pos; |
| 2132 | } |
| 2133 | |
| 2134 | public class StringReader extends java.io.Reader { |
| 2135 | ctor public StringReader(String); |
| 2136 | method public void close(); |
| 2137 | method public int read(char[], int, int) throws java.io.IOException; |
| 2138 | } |
| 2139 | |
| 2140 | public class StringWriter extends java.io.Writer { |
| 2141 | ctor public StringWriter(); |
| 2142 | ctor public StringWriter(int); |
| 2143 | method public java.io.StringWriter append(CharSequence); |
| 2144 | method public java.io.StringWriter append(CharSequence, int, int); |
| 2145 | method public java.io.StringWriter append(char); |
| 2146 | method public void close() throws java.io.IOException; |
| 2147 | method public void flush(); |
| 2148 | method public StringBuffer getBuffer(); |
| 2149 | method public void write(int); |
| 2150 | method public void write(char[], int, int); |
| 2151 | method public void write(String); |
| 2152 | method public void write(String, int, int); |
| 2153 | } |
| 2154 | |
| 2155 | public class SyncFailedException extends java.io.IOException { |
| 2156 | ctor public SyncFailedException(String); |
| 2157 | } |
| 2158 | |
| 2159 | public class UTFDataFormatException extends java.io.IOException { |
| 2160 | ctor public UTFDataFormatException(); |
| 2161 | ctor public UTFDataFormatException(String); |
| 2162 | } |
| 2163 | |
| 2164 | public class UncheckedIOException extends java.lang.RuntimeException { |
| 2165 | ctor public UncheckedIOException(String, java.io.IOException); |
| 2166 | ctor public UncheckedIOException(java.io.IOException); |
| 2167 | method public java.io.IOException getCause(); |
| 2168 | } |
| 2169 | |
| 2170 | public class UnsupportedEncodingException extends java.io.IOException { |
| 2171 | ctor public UnsupportedEncodingException(); |
| 2172 | ctor public UnsupportedEncodingException(String); |
| 2173 | } |
| 2174 | |
| 2175 | public class WriteAbortedException extends java.io.ObjectStreamException { |
| 2176 | ctor public WriteAbortedException(String, Exception); |
| 2177 | field public Exception detail; |
| 2178 | } |
| 2179 | |
| 2180 | public abstract class Writer implements java.lang.Appendable java.io.Closeable java.io.Flushable { |
| 2181 | ctor protected Writer(); |
| 2182 | ctor protected Writer(Object); |
| 2183 | method public java.io.Writer append(CharSequence) throws java.io.IOException; |
| 2184 | method public java.io.Writer append(CharSequence, int, int) throws java.io.IOException; |
| 2185 | method public java.io.Writer append(char) throws java.io.IOException; |
| 2186 | method public void write(int) throws java.io.IOException; |
| 2187 | method public void write(char[]) throws java.io.IOException; |
| 2188 | method public abstract void write(char[], int, int) throws java.io.IOException; |
| 2189 | method public void write(String) throws java.io.IOException; |
| 2190 | method public void write(String, int, int) throws java.io.IOException; |
| 2191 | field protected Object lock; |
| 2192 | } |
| 2193 | |
| 2194 | } |
| 2195 | |
| 2196 | package java.lang { |
| 2197 | |
| 2198 | public class AbstractMethodError extends java.lang.IncompatibleClassChangeError { |
| 2199 | ctor public AbstractMethodError(); |
| 2200 | ctor public AbstractMethodError(String); |
| 2201 | } |
| 2202 | |
| 2203 | public interface Appendable { |
| 2204 | method @NonNull public Appendable append(@Nullable CharSequence) throws java.io.IOException; |
| 2205 | method @NonNull public Appendable append(@Nullable CharSequence, int, int) throws java.io.IOException; |
| 2206 | method @NonNull public Appendable append(char) throws java.io.IOException; |
| 2207 | } |
| 2208 | |
| 2209 | public class ArithmeticException extends java.lang.RuntimeException { |
| 2210 | ctor public ArithmeticException(); |
| 2211 | ctor public ArithmeticException(String); |
| 2212 | } |
| 2213 | |
| 2214 | public class ArrayIndexOutOfBoundsException extends java.lang.IndexOutOfBoundsException { |
| 2215 | ctor public ArrayIndexOutOfBoundsException(); |
| 2216 | ctor public ArrayIndexOutOfBoundsException(int); |
| 2217 | ctor public ArrayIndexOutOfBoundsException(String); |
| 2218 | } |
| 2219 | |
| 2220 | public class ArrayStoreException extends java.lang.RuntimeException { |
| 2221 | ctor public ArrayStoreException(); |
| 2222 | ctor public ArrayStoreException(String); |
| 2223 | } |
| 2224 | |
| 2225 | public class AssertionError extends java.lang.Error { |
| 2226 | ctor public AssertionError(); |
| 2227 | ctor public AssertionError(Object); |
| 2228 | ctor public AssertionError(boolean); |
| 2229 | ctor public AssertionError(char); |
| 2230 | ctor public AssertionError(int); |
| 2231 | ctor public AssertionError(long); |
| 2232 | ctor public AssertionError(float); |
| 2233 | ctor public AssertionError(double); |
| 2234 | ctor public AssertionError(String, Throwable); |
| 2235 | } |
| 2236 | |
| 2237 | public interface AutoCloseable { |
| 2238 | method public void close() throws java.lang.Exception; |
| 2239 | } |
| 2240 | |
| 2241 | public final class Boolean implements java.lang.Comparable<java.lang.Boolean> java.io.Serializable { |
| 2242 | ctor public Boolean(boolean); |
| 2243 | ctor public Boolean(@Nullable String); |
| 2244 | method public boolean booleanValue(); |
| 2245 | method public static int compare(boolean, boolean); |
| 2246 | method public int compareTo(@NonNull Boolean); |
| 2247 | method public static boolean getBoolean(@NonNull String); |
| 2248 | method public static int hashCode(boolean); |
| 2249 | method public static boolean logicalAnd(boolean, boolean); |
| 2250 | method public static boolean logicalOr(boolean, boolean); |
| 2251 | method public static boolean logicalXor(boolean, boolean); |
| 2252 | method public static boolean parseBoolean(@Nullable String); |
| 2253 | method @NonNull public static String toString(boolean); |
| 2254 | method @NonNull public static Boolean valueOf(boolean); |
| 2255 | method @NonNull public static Boolean valueOf(@Nullable String); |
| 2256 | field public static final Boolean FALSE; |
| 2257 | field public static final Boolean TRUE; |
| 2258 | field public static final Class<java.lang.Boolean> TYPE; |
| 2259 | } |
| 2260 | |
| 2261 | public class BootstrapMethodError extends java.lang.LinkageError { |
| 2262 | ctor public BootstrapMethodError(); |
| 2263 | ctor public BootstrapMethodError(String); |
| 2264 | ctor public BootstrapMethodError(String, Throwable); |
| 2265 | ctor public BootstrapMethodError(Throwable); |
| 2266 | } |
| 2267 | |
| 2268 | public final class Byte extends java.lang.Number implements java.lang.Comparable<java.lang.Byte> { |
Nikita Iashchenko | e118050 | 2020-12-08 14:34:42 +0000 | [diff] [blame] | 2269 | ctor @Deprecated public Byte(byte); |
| 2270 | ctor @Deprecated public Byte(@NonNull String) throws java.lang.NumberFormatException; |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 2271 | method public static int compare(byte, byte); |
| 2272 | method public int compareTo(@NonNull Byte); |
Nikita Iashchenko | e118050 | 2020-12-08 14:34:42 +0000 | [diff] [blame] | 2273 | method public static int compareUnsigned(byte, byte); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 2274 | method @NonNull public static Byte decode(@NonNull String) throws java.lang.NumberFormatException; |
| 2275 | method public double doubleValue(); |
| 2276 | method public float floatValue(); |
| 2277 | method public static int hashCode(byte); |
| 2278 | method public int intValue(); |
| 2279 | method public long longValue(); |
| 2280 | method public static byte parseByte(@NonNull String, int) throws java.lang.NumberFormatException; |
| 2281 | method public static byte parseByte(@NonNull String) throws java.lang.NumberFormatException; |
| 2282 | method @NonNull public static String toString(byte); |
| 2283 | method public static int toUnsignedInt(byte); |
| 2284 | method public static long toUnsignedLong(byte); |
| 2285 | method @NonNull public static Byte valueOf(byte); |
| 2286 | method @NonNull public static Byte valueOf(@NonNull String, int) throws java.lang.NumberFormatException; |
| 2287 | method @NonNull public static Byte valueOf(@NonNull String) throws java.lang.NumberFormatException; |
| 2288 | field public static final int BYTES = 1; // 0x1 |
| 2289 | field public static final byte MAX_VALUE = 127; // 0x7f |
| 2290 | field public static final byte MIN_VALUE = -128; // 0xffffff80 |
| 2291 | field public static final int SIZE = 8; // 0x8 |
| 2292 | field public static final Class<java.lang.Byte> TYPE; |
| 2293 | } |
| 2294 | |
| 2295 | public interface CharSequence { |
| 2296 | method public char charAt(int); |
| 2297 | method @NonNull public default java.util.stream.IntStream chars(); |
| 2298 | method @NonNull public default java.util.stream.IntStream codePoints(); |
| 2299 | method public int length(); |
| 2300 | method @NonNull public CharSequence subSequence(int, int); |
| 2301 | method @NonNull public String toString(); |
| 2302 | } |
| 2303 | |
| 2304 | public final class Character implements java.lang.Comparable<java.lang.Character> java.io.Serializable { |
| 2305 | ctor public Character(char); |
| 2306 | method public static int charCount(int); |
| 2307 | method public char charValue(); |
| 2308 | method public static int codePointAt(@NonNull CharSequence, int); |
| 2309 | method public static int codePointAt(char[], int); |
| 2310 | method public static int codePointAt(char[], int, int); |
| 2311 | method public static int codePointBefore(@NonNull CharSequence, int); |
| 2312 | method public static int codePointBefore(char[], int); |
| 2313 | method public static int codePointBefore(char[], int, int); |
| 2314 | method public static int codePointCount(@NonNull CharSequence, int, int); |
| 2315 | method public static int codePointCount(char[], int, int); |
| 2316 | method public static int compare(char, char); |
| 2317 | method public int compareTo(@NonNull Character); |
| 2318 | method public static int digit(char, int); |
| 2319 | method public static int digit(int, int); |
| 2320 | method public static char forDigit(int, int); |
| 2321 | method public static byte getDirectionality(char); |
| 2322 | method public static byte getDirectionality(int); |
| 2323 | method @Nullable public static String getName(int); |
| 2324 | method public static int getNumericValue(char); |
| 2325 | method public static int getNumericValue(int); |
| 2326 | method public static int getType(char); |
| 2327 | method public static int getType(int); |
| 2328 | method public static int hashCode(char); |
| 2329 | method public static char highSurrogate(int); |
| 2330 | method public static boolean isAlphabetic(int); |
| 2331 | method public static boolean isBmpCodePoint(int); |
| 2332 | method public static boolean isDefined(char); |
| 2333 | method public static boolean isDefined(int); |
| 2334 | method public static boolean isDigit(char); |
| 2335 | method public static boolean isDigit(int); |
| 2336 | method public static boolean isHighSurrogate(char); |
| 2337 | method public static boolean isISOControl(char); |
| 2338 | method public static boolean isISOControl(int); |
| 2339 | method public static boolean isIdentifierIgnorable(char); |
| 2340 | method public static boolean isIdentifierIgnorable(int); |
| 2341 | method public static boolean isIdeographic(int); |
| 2342 | method public static boolean isJavaIdentifierPart(char); |
| 2343 | method public static boolean isJavaIdentifierPart(int); |
| 2344 | method public static boolean isJavaIdentifierStart(char); |
| 2345 | method public static boolean isJavaIdentifierStart(int); |
| 2346 | method @Deprecated public static boolean isJavaLetter(char); |
| 2347 | method @Deprecated public static boolean isJavaLetterOrDigit(char); |
| 2348 | method public static boolean isLetter(char); |
| 2349 | method public static boolean isLetter(int); |
| 2350 | method public static boolean isLetterOrDigit(char); |
| 2351 | method public static boolean isLetterOrDigit(int); |
| 2352 | method public static boolean isLowSurrogate(char); |
| 2353 | method public static boolean isLowerCase(char); |
| 2354 | method public static boolean isLowerCase(int); |
| 2355 | method public static boolean isMirrored(char); |
| 2356 | method public static boolean isMirrored(int); |
| 2357 | method @Deprecated public static boolean isSpace(char); |
| 2358 | method public static boolean isSpaceChar(char); |
| 2359 | method public static boolean isSpaceChar(int); |
| 2360 | method public static boolean isSupplementaryCodePoint(int); |
| 2361 | method public static boolean isSurrogate(char); |
| 2362 | method public static boolean isSurrogatePair(char, char); |
| 2363 | method public static boolean isTitleCase(char); |
| 2364 | method public static boolean isTitleCase(int); |
| 2365 | method public static boolean isUnicodeIdentifierPart(char); |
| 2366 | method public static boolean isUnicodeIdentifierPart(int); |
| 2367 | method public static boolean isUnicodeIdentifierStart(char); |
| 2368 | method public static boolean isUnicodeIdentifierStart(int); |
| 2369 | method public static boolean isUpperCase(char); |
| 2370 | method public static boolean isUpperCase(int); |
| 2371 | method public static boolean isValidCodePoint(int); |
| 2372 | method public static boolean isWhitespace(char); |
| 2373 | method public static boolean isWhitespace(int); |
| 2374 | method public static char lowSurrogate(int); |
| 2375 | method public static int offsetByCodePoints(@NonNull CharSequence, int, int); |
| 2376 | method public static int offsetByCodePoints(char[], int, int, int, int); |
| 2377 | method public static char reverseBytes(char); |
| 2378 | method public static int toChars(int, char[], int); |
| 2379 | method public static char[] toChars(int); |
| 2380 | method public static int toCodePoint(char, char); |
| 2381 | method public static char toLowerCase(char); |
| 2382 | method public static int toLowerCase(int); |
| 2383 | method @NonNull public static String toString(char); |
| 2384 | method public static char toTitleCase(char); |
| 2385 | method public static int toTitleCase(int); |
| 2386 | method public static char toUpperCase(char); |
| 2387 | method public static int toUpperCase(int); |
| 2388 | method @NonNull public static Character valueOf(char); |
| 2389 | field public static final int BYTES = 2; // 0x2 |
| 2390 | field public static final byte COMBINING_SPACING_MARK = 8; // 0x8 |
| 2391 | field public static final byte CONNECTOR_PUNCTUATION = 23; // 0x17 |
| 2392 | field public static final byte CONTROL = 15; // 0xf |
| 2393 | field public static final byte CURRENCY_SYMBOL = 26; // 0x1a |
| 2394 | field public static final byte DASH_PUNCTUATION = 20; // 0x14 |
| 2395 | field public static final byte DECIMAL_DIGIT_NUMBER = 9; // 0x9 |
| 2396 | field public static final byte DIRECTIONALITY_ARABIC_NUMBER = 6; // 0x6 |
| 2397 | field public static final byte DIRECTIONALITY_BOUNDARY_NEUTRAL = 9; // 0x9 |
| 2398 | field public static final byte DIRECTIONALITY_COMMON_NUMBER_SEPARATOR = 7; // 0x7 |
| 2399 | field public static final byte DIRECTIONALITY_EUROPEAN_NUMBER = 3; // 0x3 |
| 2400 | field public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR = 4; // 0x4 |
| 2401 | field public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR = 5; // 0x5 |
| 2402 | field public static final byte DIRECTIONALITY_LEFT_TO_RIGHT = 0; // 0x0 |
| 2403 | field public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING = 14; // 0xe |
| 2404 | field public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE = 15; // 0xf |
| 2405 | field public static final byte DIRECTIONALITY_NONSPACING_MARK = 8; // 0x8 |
| 2406 | field public static final byte DIRECTIONALITY_OTHER_NEUTRALS = 13; // 0xd |
| 2407 | field public static final byte DIRECTIONALITY_PARAGRAPH_SEPARATOR = 10; // 0xa |
| 2408 | field public static final byte DIRECTIONALITY_POP_DIRECTIONAL_FORMAT = 18; // 0x12 |
| 2409 | field public static final byte DIRECTIONALITY_RIGHT_TO_LEFT = 1; // 0x1 |
| 2410 | field public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC = 2; // 0x2 |
| 2411 | field public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING = 16; // 0x10 |
| 2412 | field public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE = 17; // 0x11 |
| 2413 | field public static final byte DIRECTIONALITY_SEGMENT_SEPARATOR = 11; // 0xb |
| 2414 | field public static final byte DIRECTIONALITY_UNDEFINED = -1; // 0xffffffff |
| 2415 | field public static final byte DIRECTIONALITY_WHITESPACE = 12; // 0xc |
| 2416 | field public static final byte ENCLOSING_MARK = 7; // 0x7 |
| 2417 | field public static final byte END_PUNCTUATION = 22; // 0x16 |
| 2418 | field public static final byte FINAL_QUOTE_PUNCTUATION = 30; // 0x1e |
| 2419 | field public static final byte FORMAT = 16; // 0x10 |
| 2420 | field public static final byte INITIAL_QUOTE_PUNCTUATION = 29; // 0x1d |
| 2421 | field public static final byte LETTER_NUMBER = 10; // 0xa |
| 2422 | field public static final byte LINE_SEPARATOR = 13; // 0xd |
| 2423 | field public static final byte LOWERCASE_LETTER = 2; // 0x2 |
| 2424 | field public static final byte MATH_SYMBOL = 25; // 0x19 |
| 2425 | field public static final int MAX_CODE_POINT = 1114111; // 0x10ffff |
| 2426 | field public static final char MAX_HIGH_SURROGATE = 56319; // 0xdbff '\udbff' |
| 2427 | field public static final char MAX_LOW_SURROGATE = 57343; // 0xdfff '\udfff' |
| 2428 | field public static final int MAX_RADIX = 36; // 0x24 |
| 2429 | field public static final char MAX_SURROGATE = 57343; // 0xdfff '\udfff' |
| 2430 | field public static final char MAX_VALUE = 65535; // 0xffff '\uffff' |
| 2431 | field public static final int MIN_CODE_POINT = 0; // 0x0 |
| 2432 | field public static final char MIN_HIGH_SURROGATE = 55296; // 0xd800 '\ud800' |
| 2433 | field public static final char MIN_LOW_SURROGATE = 56320; // 0xdc00 '\udc00' |
| 2434 | field public static final int MIN_RADIX = 2; // 0x2 |
| 2435 | field public static final int MIN_SUPPLEMENTARY_CODE_POINT = 65536; // 0x10000 |
| 2436 | field public static final char MIN_SURROGATE = 55296; // 0xd800 '\ud800' |
| 2437 | field public static final char MIN_VALUE = 0; // 0x0000 '\u0000' |
| 2438 | field public static final byte MODIFIER_LETTER = 4; // 0x4 |
| 2439 | field public static final byte MODIFIER_SYMBOL = 27; // 0x1b |
| 2440 | field public static final byte NON_SPACING_MARK = 6; // 0x6 |
| 2441 | field public static final byte OTHER_LETTER = 5; // 0x5 |
| 2442 | field public static final byte OTHER_NUMBER = 11; // 0xb |
| 2443 | field public static final byte OTHER_PUNCTUATION = 24; // 0x18 |
| 2444 | field public static final byte OTHER_SYMBOL = 28; // 0x1c |
| 2445 | field public static final byte PARAGRAPH_SEPARATOR = 14; // 0xe |
| 2446 | field public static final byte PRIVATE_USE = 18; // 0x12 |
| 2447 | field public static final int SIZE = 16; // 0x10 |
| 2448 | field public static final byte SPACE_SEPARATOR = 12; // 0xc |
| 2449 | field public static final byte START_PUNCTUATION = 21; // 0x15 |
| 2450 | field public static final byte SURROGATE = 19; // 0x13 |
| 2451 | field public static final byte TITLECASE_LETTER = 3; // 0x3 |
| 2452 | field public static final Class<java.lang.Character> TYPE; |
| 2453 | field public static final byte UNASSIGNED = 0; // 0x0 |
| 2454 | field public static final byte UPPERCASE_LETTER = 1; // 0x1 |
| 2455 | } |
| 2456 | |
| 2457 | public static class Character.Subset { |
| 2458 | ctor protected Character.Subset(@NonNull String); |
| 2459 | method public final boolean equals(@Nullable Object); |
| 2460 | method public final int hashCode(); |
| 2461 | method @NonNull public final String toString(); |
| 2462 | } |
| 2463 | |
| 2464 | public static final class Character.UnicodeBlock extends java.lang.Character.Subset { |
| 2465 | method @NonNull public static java.lang.Character.UnicodeBlock forName(@NonNull String); |
| 2466 | method @Nullable public static java.lang.Character.UnicodeBlock of(char); |
| 2467 | method @Nullable public static java.lang.Character.UnicodeBlock of(int); |
| 2468 | field public static final java.lang.Character.UnicodeBlock AEGEAN_NUMBERS; |
| 2469 | field public static final java.lang.Character.UnicodeBlock ALCHEMICAL_SYMBOLS; |
| 2470 | field public static final java.lang.Character.UnicodeBlock ALPHABETIC_PRESENTATION_FORMS; |
| 2471 | field public static final java.lang.Character.UnicodeBlock ANCIENT_GREEK_MUSICAL_NOTATION; |
| 2472 | field public static final java.lang.Character.UnicodeBlock ANCIENT_GREEK_NUMBERS; |
| 2473 | field public static final java.lang.Character.UnicodeBlock ANCIENT_SYMBOLS; |
| 2474 | field public static final java.lang.Character.UnicodeBlock ARABIC; |
| 2475 | field public static final java.lang.Character.UnicodeBlock ARABIC_EXTENDED_A; |
| 2476 | field public static final java.lang.Character.UnicodeBlock ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS; |
| 2477 | field public static final java.lang.Character.UnicodeBlock ARABIC_PRESENTATION_FORMS_A; |
| 2478 | field public static final java.lang.Character.UnicodeBlock ARABIC_PRESENTATION_FORMS_B; |
| 2479 | field public static final java.lang.Character.UnicodeBlock ARABIC_SUPPLEMENT; |
| 2480 | field public static final java.lang.Character.UnicodeBlock ARMENIAN; |
| 2481 | field public static final java.lang.Character.UnicodeBlock ARROWS; |
| 2482 | field public static final java.lang.Character.UnicodeBlock AVESTAN; |
| 2483 | field public static final java.lang.Character.UnicodeBlock BALINESE; |
| 2484 | field public static final java.lang.Character.UnicodeBlock BAMUM; |
| 2485 | field public static final java.lang.Character.UnicodeBlock BAMUM_SUPPLEMENT; |
| 2486 | field public static final java.lang.Character.UnicodeBlock BASIC_LATIN; |
| 2487 | field public static final java.lang.Character.UnicodeBlock BATAK; |
| 2488 | field public static final java.lang.Character.UnicodeBlock BENGALI; |
| 2489 | field public static final java.lang.Character.UnicodeBlock BLOCK_ELEMENTS; |
| 2490 | field public static final java.lang.Character.UnicodeBlock BOPOMOFO; |
| 2491 | field public static final java.lang.Character.UnicodeBlock BOPOMOFO_EXTENDED; |
| 2492 | field public static final java.lang.Character.UnicodeBlock BOX_DRAWING; |
| 2493 | field public static final java.lang.Character.UnicodeBlock BRAHMI; |
| 2494 | field public static final java.lang.Character.UnicodeBlock BRAILLE_PATTERNS; |
| 2495 | field public static final java.lang.Character.UnicodeBlock BUGINESE; |
| 2496 | field public static final java.lang.Character.UnicodeBlock BUHID; |
| 2497 | field public static final java.lang.Character.UnicodeBlock BYZANTINE_MUSICAL_SYMBOLS; |
| 2498 | field public static final java.lang.Character.UnicodeBlock CARIAN; |
| 2499 | field public static final java.lang.Character.UnicodeBlock CHAKMA; |
| 2500 | field public static final java.lang.Character.UnicodeBlock CHAM; |
| 2501 | field public static final java.lang.Character.UnicodeBlock CHEROKEE; |
| 2502 | field public static final java.lang.Character.UnicodeBlock CJK_COMPATIBILITY; |
| 2503 | field public static final java.lang.Character.UnicodeBlock CJK_COMPATIBILITY_FORMS; |
| 2504 | field public static final java.lang.Character.UnicodeBlock CJK_COMPATIBILITY_IDEOGRAPHS; |
| 2505 | field public static final java.lang.Character.UnicodeBlock CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT; |
| 2506 | field public static final java.lang.Character.UnicodeBlock CJK_RADICALS_SUPPLEMENT; |
| 2507 | field public static final java.lang.Character.UnicodeBlock CJK_STROKES; |
| 2508 | field public static final java.lang.Character.UnicodeBlock CJK_SYMBOLS_AND_PUNCTUATION; |
| 2509 | field public static final java.lang.Character.UnicodeBlock CJK_UNIFIED_IDEOGRAPHS; |
| 2510 | field public static final java.lang.Character.UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A; |
| 2511 | field public static final java.lang.Character.UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B; |
| 2512 | field public static final java.lang.Character.UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C; |
| 2513 | field public static final java.lang.Character.UnicodeBlock CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D; |
| 2514 | field public static final java.lang.Character.UnicodeBlock COMBINING_DIACRITICAL_MARKS; |
| 2515 | field public static final java.lang.Character.UnicodeBlock COMBINING_DIACRITICAL_MARKS_SUPPLEMENT; |
| 2516 | field public static final java.lang.Character.UnicodeBlock COMBINING_HALF_MARKS; |
| 2517 | field public static final java.lang.Character.UnicodeBlock COMBINING_MARKS_FOR_SYMBOLS; |
| 2518 | field public static final java.lang.Character.UnicodeBlock COMMON_INDIC_NUMBER_FORMS; |
| 2519 | field public static final java.lang.Character.UnicodeBlock CONTROL_PICTURES; |
| 2520 | field public static final java.lang.Character.UnicodeBlock COPTIC; |
| 2521 | field public static final java.lang.Character.UnicodeBlock COUNTING_ROD_NUMERALS; |
| 2522 | field public static final java.lang.Character.UnicodeBlock CUNEIFORM; |
| 2523 | field public static final java.lang.Character.UnicodeBlock CUNEIFORM_NUMBERS_AND_PUNCTUATION; |
| 2524 | field public static final java.lang.Character.UnicodeBlock CURRENCY_SYMBOLS; |
| 2525 | field public static final java.lang.Character.UnicodeBlock CYPRIOT_SYLLABARY; |
| 2526 | field public static final java.lang.Character.UnicodeBlock CYRILLIC; |
| 2527 | field public static final java.lang.Character.UnicodeBlock CYRILLIC_EXTENDED_A; |
| 2528 | field public static final java.lang.Character.UnicodeBlock CYRILLIC_EXTENDED_B; |
| 2529 | field public static final java.lang.Character.UnicodeBlock CYRILLIC_SUPPLEMENTARY; |
| 2530 | field public static final java.lang.Character.UnicodeBlock DESERET; |
| 2531 | field public static final java.lang.Character.UnicodeBlock DEVANAGARI; |
| 2532 | field public static final java.lang.Character.UnicodeBlock DEVANAGARI_EXTENDED; |
| 2533 | field public static final java.lang.Character.UnicodeBlock DINGBATS; |
| 2534 | field public static final java.lang.Character.UnicodeBlock DOMINO_TILES; |
| 2535 | field public static final java.lang.Character.UnicodeBlock EGYPTIAN_HIEROGLYPHS; |
| 2536 | field public static final java.lang.Character.UnicodeBlock EMOTICONS; |
| 2537 | field public static final java.lang.Character.UnicodeBlock ENCLOSED_ALPHANUMERICS; |
| 2538 | field public static final java.lang.Character.UnicodeBlock ENCLOSED_ALPHANUMERIC_SUPPLEMENT; |
| 2539 | field public static final java.lang.Character.UnicodeBlock ENCLOSED_CJK_LETTERS_AND_MONTHS; |
| 2540 | field public static final java.lang.Character.UnicodeBlock ENCLOSED_IDEOGRAPHIC_SUPPLEMENT; |
| 2541 | field public static final java.lang.Character.UnicodeBlock ETHIOPIC; |
| 2542 | field public static final java.lang.Character.UnicodeBlock ETHIOPIC_EXTENDED; |
| 2543 | field public static final java.lang.Character.UnicodeBlock ETHIOPIC_EXTENDED_A; |
| 2544 | field public static final java.lang.Character.UnicodeBlock ETHIOPIC_SUPPLEMENT; |
| 2545 | field public static final java.lang.Character.UnicodeBlock GENERAL_PUNCTUATION; |
| 2546 | field public static final java.lang.Character.UnicodeBlock GEOMETRIC_SHAPES; |
| 2547 | field public static final java.lang.Character.UnicodeBlock GEORGIAN; |
| 2548 | field public static final java.lang.Character.UnicodeBlock GEORGIAN_SUPPLEMENT; |
| 2549 | field public static final java.lang.Character.UnicodeBlock GLAGOLITIC; |
| 2550 | field public static final java.lang.Character.UnicodeBlock GOTHIC; |
| 2551 | field public static final java.lang.Character.UnicodeBlock GREEK; |
| 2552 | field public static final java.lang.Character.UnicodeBlock GREEK_EXTENDED; |
| 2553 | field public static final java.lang.Character.UnicodeBlock GUJARATI; |
| 2554 | field public static final java.lang.Character.UnicodeBlock GURMUKHI; |
| 2555 | field public static final java.lang.Character.UnicodeBlock HALFWIDTH_AND_FULLWIDTH_FORMS; |
| 2556 | field public static final java.lang.Character.UnicodeBlock HANGUL_COMPATIBILITY_JAMO; |
| 2557 | field public static final java.lang.Character.UnicodeBlock HANGUL_JAMO; |
| 2558 | field public static final java.lang.Character.UnicodeBlock HANGUL_JAMO_EXTENDED_A; |
| 2559 | field public static final java.lang.Character.UnicodeBlock HANGUL_JAMO_EXTENDED_B; |
| 2560 | field public static final java.lang.Character.UnicodeBlock HANGUL_SYLLABLES; |
| 2561 | field public static final java.lang.Character.UnicodeBlock HANUNOO; |
| 2562 | field public static final java.lang.Character.UnicodeBlock HEBREW; |
| 2563 | field public static final java.lang.Character.UnicodeBlock HIGH_PRIVATE_USE_SURROGATES; |
| 2564 | field public static final java.lang.Character.UnicodeBlock HIGH_SURROGATES; |
| 2565 | field public static final java.lang.Character.UnicodeBlock HIRAGANA; |
| 2566 | field public static final java.lang.Character.UnicodeBlock IDEOGRAPHIC_DESCRIPTION_CHARACTERS; |
| 2567 | field public static final java.lang.Character.UnicodeBlock IMPERIAL_ARAMAIC; |
| 2568 | field public static final java.lang.Character.UnicodeBlock INSCRIPTIONAL_PAHLAVI; |
| 2569 | field public static final java.lang.Character.UnicodeBlock INSCRIPTIONAL_PARTHIAN; |
| 2570 | field public static final java.lang.Character.UnicodeBlock IPA_EXTENSIONS; |
| 2571 | field public static final java.lang.Character.UnicodeBlock JAVANESE; |
| 2572 | field public static final java.lang.Character.UnicodeBlock KAITHI; |
| 2573 | field public static final java.lang.Character.UnicodeBlock KANA_SUPPLEMENT; |
| 2574 | field public static final java.lang.Character.UnicodeBlock KANBUN; |
| 2575 | field public static final java.lang.Character.UnicodeBlock KANGXI_RADICALS; |
| 2576 | field public static final java.lang.Character.UnicodeBlock KANNADA; |
| 2577 | field public static final java.lang.Character.UnicodeBlock KATAKANA; |
| 2578 | field public static final java.lang.Character.UnicodeBlock KATAKANA_PHONETIC_EXTENSIONS; |
| 2579 | field public static final java.lang.Character.UnicodeBlock KAYAH_LI; |
| 2580 | field public static final java.lang.Character.UnicodeBlock KHAROSHTHI; |
| 2581 | field public static final java.lang.Character.UnicodeBlock KHMER; |
| 2582 | field public static final java.lang.Character.UnicodeBlock KHMER_SYMBOLS; |
| 2583 | field public static final java.lang.Character.UnicodeBlock LAO; |
| 2584 | field public static final java.lang.Character.UnicodeBlock LATIN_1_SUPPLEMENT; |
| 2585 | field public static final java.lang.Character.UnicodeBlock LATIN_EXTENDED_A; |
| 2586 | field public static final java.lang.Character.UnicodeBlock LATIN_EXTENDED_ADDITIONAL; |
| 2587 | field public static final java.lang.Character.UnicodeBlock LATIN_EXTENDED_B; |
| 2588 | field public static final java.lang.Character.UnicodeBlock LATIN_EXTENDED_C; |
| 2589 | field public static final java.lang.Character.UnicodeBlock LATIN_EXTENDED_D; |
| 2590 | field public static final java.lang.Character.UnicodeBlock LEPCHA; |
| 2591 | field public static final java.lang.Character.UnicodeBlock LETTERLIKE_SYMBOLS; |
| 2592 | field public static final java.lang.Character.UnicodeBlock LIMBU; |
| 2593 | field public static final java.lang.Character.UnicodeBlock LINEAR_B_IDEOGRAMS; |
| 2594 | field public static final java.lang.Character.UnicodeBlock LINEAR_B_SYLLABARY; |
| 2595 | field public static final java.lang.Character.UnicodeBlock LISU; |
| 2596 | field public static final java.lang.Character.UnicodeBlock LOW_SURROGATES; |
| 2597 | field public static final java.lang.Character.UnicodeBlock LYCIAN; |
| 2598 | field public static final java.lang.Character.UnicodeBlock LYDIAN; |
| 2599 | field public static final java.lang.Character.UnicodeBlock MAHJONG_TILES; |
| 2600 | field public static final java.lang.Character.UnicodeBlock MALAYALAM; |
| 2601 | field public static final java.lang.Character.UnicodeBlock MANDAIC; |
| 2602 | field public static final java.lang.Character.UnicodeBlock MATHEMATICAL_ALPHANUMERIC_SYMBOLS; |
| 2603 | field public static final java.lang.Character.UnicodeBlock MATHEMATICAL_OPERATORS; |
| 2604 | field public static final java.lang.Character.UnicodeBlock MEETEI_MAYEK; |
| 2605 | field public static final java.lang.Character.UnicodeBlock MEETEI_MAYEK_EXTENSIONS; |
| 2606 | field public static final java.lang.Character.UnicodeBlock MEROITIC_CURSIVE; |
| 2607 | field public static final java.lang.Character.UnicodeBlock MEROITIC_HIEROGLYPHS; |
| 2608 | field public static final java.lang.Character.UnicodeBlock MIAO; |
| 2609 | field public static final java.lang.Character.UnicodeBlock MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A; |
| 2610 | field public static final java.lang.Character.UnicodeBlock MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B; |
| 2611 | field public static final java.lang.Character.UnicodeBlock MISCELLANEOUS_SYMBOLS; |
| 2612 | field public static final java.lang.Character.UnicodeBlock MISCELLANEOUS_SYMBOLS_AND_ARROWS; |
| 2613 | field public static final java.lang.Character.UnicodeBlock MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS; |
| 2614 | field public static final java.lang.Character.UnicodeBlock MISCELLANEOUS_TECHNICAL; |
| 2615 | field public static final java.lang.Character.UnicodeBlock MODIFIER_TONE_LETTERS; |
| 2616 | field public static final java.lang.Character.UnicodeBlock MONGOLIAN; |
| 2617 | field public static final java.lang.Character.UnicodeBlock MUSICAL_SYMBOLS; |
| 2618 | field public static final java.lang.Character.UnicodeBlock MYANMAR; |
| 2619 | field public static final java.lang.Character.UnicodeBlock MYANMAR_EXTENDED_A; |
| 2620 | field public static final java.lang.Character.UnicodeBlock NEW_TAI_LUE; |
| 2621 | field public static final java.lang.Character.UnicodeBlock NKO; |
| 2622 | field public static final java.lang.Character.UnicodeBlock NUMBER_FORMS; |
| 2623 | field public static final java.lang.Character.UnicodeBlock OGHAM; |
| 2624 | field public static final java.lang.Character.UnicodeBlock OLD_ITALIC; |
| 2625 | field public static final java.lang.Character.UnicodeBlock OLD_PERSIAN; |
| 2626 | field public static final java.lang.Character.UnicodeBlock OLD_SOUTH_ARABIAN; |
| 2627 | field public static final java.lang.Character.UnicodeBlock OLD_TURKIC; |
| 2628 | field public static final java.lang.Character.UnicodeBlock OL_CHIKI; |
| 2629 | field public static final java.lang.Character.UnicodeBlock OPTICAL_CHARACTER_RECOGNITION; |
| 2630 | field public static final java.lang.Character.UnicodeBlock ORIYA; |
| 2631 | field public static final java.lang.Character.UnicodeBlock OSMANYA; |
| 2632 | field public static final java.lang.Character.UnicodeBlock PHAGS_PA; |
| 2633 | field public static final java.lang.Character.UnicodeBlock PHAISTOS_DISC; |
| 2634 | field public static final java.lang.Character.UnicodeBlock PHOENICIAN; |
| 2635 | field public static final java.lang.Character.UnicodeBlock PHONETIC_EXTENSIONS; |
| 2636 | field public static final java.lang.Character.UnicodeBlock PHONETIC_EXTENSIONS_SUPPLEMENT; |
| 2637 | field public static final java.lang.Character.UnicodeBlock PLAYING_CARDS; |
| 2638 | field public static final java.lang.Character.UnicodeBlock PRIVATE_USE_AREA; |
| 2639 | field public static final java.lang.Character.UnicodeBlock REJANG; |
| 2640 | field public static final java.lang.Character.UnicodeBlock RUMI_NUMERAL_SYMBOLS; |
| 2641 | field public static final java.lang.Character.UnicodeBlock RUNIC; |
| 2642 | field public static final java.lang.Character.UnicodeBlock SAMARITAN; |
| 2643 | field public static final java.lang.Character.UnicodeBlock SAURASHTRA; |
| 2644 | field public static final java.lang.Character.UnicodeBlock SHARADA; |
| 2645 | field public static final java.lang.Character.UnicodeBlock SHAVIAN; |
| 2646 | field public static final java.lang.Character.UnicodeBlock SINHALA; |
| 2647 | field public static final java.lang.Character.UnicodeBlock SMALL_FORM_VARIANTS; |
| 2648 | field public static final java.lang.Character.UnicodeBlock SORA_SOMPENG; |
| 2649 | field public static final java.lang.Character.UnicodeBlock SPACING_MODIFIER_LETTERS; |
| 2650 | field public static final java.lang.Character.UnicodeBlock SPECIALS; |
| 2651 | field public static final java.lang.Character.UnicodeBlock SUNDANESE; |
| 2652 | field public static final java.lang.Character.UnicodeBlock SUNDANESE_SUPPLEMENT; |
| 2653 | field public static final java.lang.Character.UnicodeBlock SUPERSCRIPTS_AND_SUBSCRIPTS; |
| 2654 | field public static final java.lang.Character.UnicodeBlock SUPPLEMENTAL_ARROWS_A; |
| 2655 | field public static final java.lang.Character.UnicodeBlock SUPPLEMENTAL_ARROWS_B; |
| 2656 | field public static final java.lang.Character.UnicodeBlock SUPPLEMENTAL_MATHEMATICAL_OPERATORS; |
| 2657 | field public static final java.lang.Character.UnicodeBlock SUPPLEMENTAL_PUNCTUATION; |
| 2658 | field public static final java.lang.Character.UnicodeBlock SUPPLEMENTARY_PRIVATE_USE_AREA_A; |
| 2659 | field public static final java.lang.Character.UnicodeBlock SUPPLEMENTARY_PRIVATE_USE_AREA_B; |
| 2660 | field @Deprecated public static final java.lang.Character.UnicodeBlock SURROGATES_AREA; |
| 2661 | field public static final java.lang.Character.UnicodeBlock SYLOTI_NAGRI; |
| 2662 | field public static final java.lang.Character.UnicodeBlock SYRIAC; |
| 2663 | field public static final java.lang.Character.UnicodeBlock TAGALOG; |
| 2664 | field public static final java.lang.Character.UnicodeBlock TAGBANWA; |
| 2665 | field public static final java.lang.Character.UnicodeBlock TAGS; |
| 2666 | field public static final java.lang.Character.UnicodeBlock TAI_LE; |
| 2667 | field public static final java.lang.Character.UnicodeBlock TAI_THAM; |
| 2668 | field public static final java.lang.Character.UnicodeBlock TAI_VIET; |
| 2669 | field public static final java.lang.Character.UnicodeBlock TAI_XUAN_JING_SYMBOLS; |
| 2670 | field public static final java.lang.Character.UnicodeBlock TAKRI; |
| 2671 | field public static final java.lang.Character.UnicodeBlock TAMIL; |
| 2672 | field public static final java.lang.Character.UnicodeBlock TELUGU; |
| 2673 | field public static final java.lang.Character.UnicodeBlock THAANA; |
| 2674 | field public static final java.lang.Character.UnicodeBlock THAI; |
| 2675 | field public static final java.lang.Character.UnicodeBlock TIBETAN; |
| 2676 | field public static final java.lang.Character.UnicodeBlock TIFINAGH; |
| 2677 | field public static final java.lang.Character.UnicodeBlock TRANSPORT_AND_MAP_SYMBOLS; |
| 2678 | field public static final java.lang.Character.UnicodeBlock UGARITIC; |
| 2679 | field public static final java.lang.Character.UnicodeBlock UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS; |
| 2680 | field public static final java.lang.Character.UnicodeBlock UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED; |
| 2681 | field public static final java.lang.Character.UnicodeBlock VAI; |
| 2682 | field public static final java.lang.Character.UnicodeBlock VARIATION_SELECTORS; |
| 2683 | field public static final java.lang.Character.UnicodeBlock VARIATION_SELECTORS_SUPPLEMENT; |
| 2684 | field public static final java.lang.Character.UnicodeBlock VEDIC_EXTENSIONS; |
| 2685 | field public static final java.lang.Character.UnicodeBlock VERTICAL_FORMS; |
| 2686 | field public static final java.lang.Character.UnicodeBlock YIJING_HEXAGRAM_SYMBOLS; |
| 2687 | field public static final java.lang.Character.UnicodeBlock YI_RADICALS; |
| 2688 | field public static final java.lang.Character.UnicodeBlock YI_SYLLABLES; |
| 2689 | } |
| 2690 | |
| 2691 | public enum Character.UnicodeScript { |
| 2692 | method @NonNull public static java.lang.Character.UnicodeScript forName(@NonNull String); |
| 2693 | method @NonNull public static java.lang.Character.UnicodeScript of(int); |
| 2694 | enum_constant public static final java.lang.Character.UnicodeScript ARABIC; |
| 2695 | enum_constant public static final java.lang.Character.UnicodeScript ARMENIAN; |
| 2696 | enum_constant public static final java.lang.Character.UnicodeScript AVESTAN; |
| 2697 | enum_constant public static final java.lang.Character.UnicodeScript BALINESE; |
| 2698 | enum_constant public static final java.lang.Character.UnicodeScript BAMUM; |
| 2699 | enum_constant public static final java.lang.Character.UnicodeScript BATAK; |
| 2700 | enum_constant public static final java.lang.Character.UnicodeScript BENGALI; |
| 2701 | enum_constant public static final java.lang.Character.UnicodeScript BOPOMOFO; |
| 2702 | enum_constant public static final java.lang.Character.UnicodeScript BRAHMI; |
| 2703 | enum_constant public static final java.lang.Character.UnicodeScript BRAILLE; |
| 2704 | enum_constant public static final java.lang.Character.UnicodeScript BUGINESE; |
| 2705 | enum_constant public static final java.lang.Character.UnicodeScript BUHID; |
| 2706 | enum_constant public static final java.lang.Character.UnicodeScript CANADIAN_ABORIGINAL; |
| 2707 | enum_constant public static final java.lang.Character.UnicodeScript CARIAN; |
| 2708 | enum_constant public static final java.lang.Character.UnicodeScript CHAKMA; |
| 2709 | enum_constant public static final java.lang.Character.UnicodeScript CHAM; |
| 2710 | enum_constant public static final java.lang.Character.UnicodeScript CHEROKEE; |
| 2711 | enum_constant public static final java.lang.Character.UnicodeScript COMMON; |
| 2712 | enum_constant public static final java.lang.Character.UnicodeScript COPTIC; |
| 2713 | enum_constant public static final java.lang.Character.UnicodeScript CUNEIFORM; |
| 2714 | enum_constant public static final java.lang.Character.UnicodeScript CYPRIOT; |
| 2715 | enum_constant public static final java.lang.Character.UnicodeScript CYRILLIC; |
| 2716 | enum_constant public static final java.lang.Character.UnicodeScript DESERET; |
| 2717 | enum_constant public static final java.lang.Character.UnicodeScript DEVANAGARI; |
| 2718 | enum_constant public static final java.lang.Character.UnicodeScript EGYPTIAN_HIEROGLYPHS; |
| 2719 | enum_constant public static final java.lang.Character.UnicodeScript ETHIOPIC; |
| 2720 | enum_constant public static final java.lang.Character.UnicodeScript GEORGIAN; |
| 2721 | enum_constant public static final java.lang.Character.UnicodeScript GLAGOLITIC; |
| 2722 | enum_constant public static final java.lang.Character.UnicodeScript GOTHIC; |
| 2723 | enum_constant public static final java.lang.Character.UnicodeScript GREEK; |
| 2724 | enum_constant public static final java.lang.Character.UnicodeScript GUJARATI; |
| 2725 | enum_constant public static final java.lang.Character.UnicodeScript GURMUKHI; |
| 2726 | enum_constant public static final java.lang.Character.UnicodeScript HAN; |
| 2727 | enum_constant public static final java.lang.Character.UnicodeScript HANGUL; |
| 2728 | enum_constant public static final java.lang.Character.UnicodeScript HANUNOO; |
| 2729 | enum_constant public static final java.lang.Character.UnicodeScript HEBREW; |
| 2730 | enum_constant public static final java.lang.Character.UnicodeScript HIRAGANA; |
| 2731 | enum_constant public static final java.lang.Character.UnicodeScript IMPERIAL_ARAMAIC; |
| 2732 | enum_constant public static final java.lang.Character.UnicodeScript INHERITED; |
| 2733 | enum_constant public static final java.lang.Character.UnicodeScript INSCRIPTIONAL_PAHLAVI; |
| 2734 | enum_constant public static final java.lang.Character.UnicodeScript INSCRIPTIONAL_PARTHIAN; |
| 2735 | enum_constant public static final java.lang.Character.UnicodeScript JAVANESE; |
| 2736 | enum_constant public static final java.lang.Character.UnicodeScript KAITHI; |
| 2737 | enum_constant public static final java.lang.Character.UnicodeScript KANNADA; |
| 2738 | enum_constant public static final java.lang.Character.UnicodeScript KATAKANA; |
| 2739 | enum_constant public static final java.lang.Character.UnicodeScript KAYAH_LI; |
| 2740 | enum_constant public static final java.lang.Character.UnicodeScript KHAROSHTHI; |
| 2741 | enum_constant public static final java.lang.Character.UnicodeScript KHMER; |
| 2742 | enum_constant public static final java.lang.Character.UnicodeScript LAO; |
| 2743 | enum_constant public static final java.lang.Character.UnicodeScript LATIN; |
| 2744 | enum_constant public static final java.lang.Character.UnicodeScript LEPCHA; |
| 2745 | enum_constant public static final java.lang.Character.UnicodeScript LIMBU; |
| 2746 | enum_constant public static final java.lang.Character.UnicodeScript LINEAR_B; |
| 2747 | enum_constant public static final java.lang.Character.UnicodeScript LISU; |
| 2748 | enum_constant public static final java.lang.Character.UnicodeScript LYCIAN; |
| 2749 | enum_constant public static final java.lang.Character.UnicodeScript LYDIAN; |
| 2750 | enum_constant public static final java.lang.Character.UnicodeScript MALAYALAM; |
| 2751 | enum_constant public static final java.lang.Character.UnicodeScript MANDAIC; |
| 2752 | enum_constant public static final java.lang.Character.UnicodeScript MEETEI_MAYEK; |
| 2753 | enum_constant public static final java.lang.Character.UnicodeScript MEROITIC_CURSIVE; |
| 2754 | enum_constant public static final java.lang.Character.UnicodeScript MEROITIC_HIEROGLYPHS; |
| 2755 | enum_constant public static final java.lang.Character.UnicodeScript MIAO; |
| 2756 | enum_constant public static final java.lang.Character.UnicodeScript MONGOLIAN; |
| 2757 | enum_constant public static final java.lang.Character.UnicodeScript MYANMAR; |
| 2758 | enum_constant public static final java.lang.Character.UnicodeScript NEW_TAI_LUE; |
| 2759 | enum_constant public static final java.lang.Character.UnicodeScript NKO; |
| 2760 | enum_constant public static final java.lang.Character.UnicodeScript OGHAM; |
| 2761 | enum_constant public static final java.lang.Character.UnicodeScript OLD_ITALIC; |
| 2762 | enum_constant public static final java.lang.Character.UnicodeScript OLD_PERSIAN; |
| 2763 | enum_constant public static final java.lang.Character.UnicodeScript OLD_SOUTH_ARABIAN; |
| 2764 | enum_constant public static final java.lang.Character.UnicodeScript OLD_TURKIC; |
| 2765 | enum_constant public static final java.lang.Character.UnicodeScript OL_CHIKI; |
| 2766 | enum_constant public static final java.lang.Character.UnicodeScript ORIYA; |
| 2767 | enum_constant public static final java.lang.Character.UnicodeScript OSMANYA; |
| 2768 | enum_constant public static final java.lang.Character.UnicodeScript PHAGS_PA; |
| 2769 | enum_constant public static final java.lang.Character.UnicodeScript PHOENICIAN; |
| 2770 | enum_constant public static final java.lang.Character.UnicodeScript REJANG; |
| 2771 | enum_constant public static final java.lang.Character.UnicodeScript RUNIC; |
| 2772 | enum_constant public static final java.lang.Character.UnicodeScript SAMARITAN; |
| 2773 | enum_constant public static final java.lang.Character.UnicodeScript SAURASHTRA; |
| 2774 | enum_constant public static final java.lang.Character.UnicodeScript SHARADA; |
| 2775 | enum_constant public static final java.lang.Character.UnicodeScript SHAVIAN; |
| 2776 | enum_constant public static final java.lang.Character.UnicodeScript SINHALA; |
| 2777 | enum_constant public static final java.lang.Character.UnicodeScript SORA_SOMPENG; |
| 2778 | enum_constant public static final java.lang.Character.UnicodeScript SUNDANESE; |
| 2779 | enum_constant public static final java.lang.Character.UnicodeScript SYLOTI_NAGRI; |
| 2780 | enum_constant public static final java.lang.Character.UnicodeScript SYRIAC; |
| 2781 | enum_constant public static final java.lang.Character.UnicodeScript TAGALOG; |
| 2782 | enum_constant public static final java.lang.Character.UnicodeScript TAGBANWA; |
| 2783 | enum_constant public static final java.lang.Character.UnicodeScript TAI_LE; |
| 2784 | enum_constant public static final java.lang.Character.UnicodeScript TAI_THAM; |
| 2785 | enum_constant public static final java.lang.Character.UnicodeScript TAI_VIET; |
| 2786 | enum_constant public static final java.lang.Character.UnicodeScript TAKRI; |
| 2787 | enum_constant public static final java.lang.Character.UnicodeScript TAMIL; |
| 2788 | enum_constant public static final java.lang.Character.UnicodeScript TELUGU; |
| 2789 | enum_constant public static final java.lang.Character.UnicodeScript THAANA; |
| 2790 | enum_constant public static final java.lang.Character.UnicodeScript THAI; |
| 2791 | enum_constant public static final java.lang.Character.UnicodeScript TIBETAN; |
| 2792 | enum_constant public static final java.lang.Character.UnicodeScript TIFINAGH; |
| 2793 | enum_constant public static final java.lang.Character.UnicodeScript UGARITIC; |
| 2794 | enum_constant public static final java.lang.Character.UnicodeScript UNKNOWN; |
| 2795 | enum_constant public static final java.lang.Character.UnicodeScript VAI; |
| 2796 | enum_constant public static final java.lang.Character.UnicodeScript YI; |
| 2797 | } |
| 2798 | |
| 2799 | public final class Class<T> implements java.lang.reflect.AnnotatedElement java.lang.reflect.GenericDeclaration java.io.Serializable java.lang.reflect.Type { |
| 2800 | method @NonNull public <U> Class<? extends U> asSubclass(@NonNull Class<U>); |
| 2801 | method @Nullable public T cast(@Nullable Object); |
| 2802 | method public boolean desiredAssertionStatus(); |
| 2803 | method @NonNull public static Class<?> forName(@NonNull String) throws java.lang.ClassNotFoundException; |
| 2804 | method @NonNull public static Class<?> forName(@NonNull String, boolean, @Nullable ClassLoader) throws java.lang.ClassNotFoundException; |
| 2805 | method @Nullable public <A extends java.lang.annotation.Annotation> A getAnnotation(@NonNull Class<A>); |
| 2806 | method @NonNull public java.lang.annotation.Annotation[] getAnnotations(); |
| 2807 | method @NonNull public <A extends java.lang.annotation.Annotation> A[] getAnnotationsByType(@NonNull Class<A>); |
| 2808 | method @Nullable public String getCanonicalName(); |
| 2809 | method @Nullable public ClassLoader getClassLoader(); |
| 2810 | method @NonNull public Class<?>[] getClasses(); |
| 2811 | method @Nullable public Class<?> getComponentType(); |
| 2812 | method @NonNull public java.lang.reflect.Constructor<T> getConstructor(@Nullable Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException; |
| 2813 | method @NonNull public java.lang.reflect.Constructor<?>[] getConstructors() throws java.lang.SecurityException; |
| 2814 | method @Nullable public <A extends java.lang.annotation.Annotation> A getDeclaredAnnotation(@NonNull Class<A>); |
| 2815 | method @NonNull public java.lang.annotation.Annotation[] getDeclaredAnnotations(); |
| 2816 | method @NonNull public Class<?>[] getDeclaredClasses(); |
| 2817 | method @NonNull public java.lang.reflect.Constructor<T> getDeclaredConstructor(@Nullable Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException; |
| 2818 | method @NonNull public java.lang.reflect.Constructor<?>[] getDeclaredConstructors() throws java.lang.SecurityException; |
| 2819 | method @NonNull public java.lang.reflect.Field getDeclaredField(@NonNull String) throws java.lang.NoSuchFieldException; |
| 2820 | method @NonNull public java.lang.reflect.Field[] getDeclaredFields(); |
| 2821 | method @NonNull public java.lang.reflect.Method getDeclaredMethod(@NonNull String, @Nullable Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException; |
| 2822 | method @NonNull public java.lang.reflect.Method[] getDeclaredMethods() throws java.lang.SecurityException; |
| 2823 | method @Nullable public Class<?> getDeclaringClass(); |
| 2824 | method @Nullable public Class<?> getEnclosingClass(); |
| 2825 | method @Nullable public java.lang.reflect.Constructor<?> getEnclosingConstructor(); |
| 2826 | method @Nullable public java.lang.reflect.Method getEnclosingMethod(); |
| 2827 | method @Nullable public T[] getEnumConstants(); |
| 2828 | method @NonNull public java.lang.reflect.Field getField(@NonNull String) throws java.lang.NoSuchFieldException; |
| 2829 | method @NonNull public java.lang.reflect.Field[] getFields() throws java.lang.SecurityException; |
| 2830 | method @NonNull public java.lang.reflect.Type[] getGenericInterfaces(); |
| 2831 | method @Nullable public java.lang.reflect.Type getGenericSuperclass(); |
| 2832 | method @NonNull public Class<?>[] getInterfaces(); |
| 2833 | method @NonNull public java.lang.reflect.Method getMethod(@NonNull String, @Nullable Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException; |
| 2834 | method @NonNull public java.lang.reflect.Method[] getMethods() throws java.lang.SecurityException; |
| 2835 | method public int getModifiers(); |
| 2836 | method @NonNull public String getName(); |
| 2837 | method @Nullable public Package getPackage(); |
Nicolas Geoffray | ecabff3 | 2020-12-08 14:37:31 +0000 | [diff] [blame] | 2838 | method @NonNull public String getPackageName(); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 2839 | method @Nullable public java.security.ProtectionDomain getProtectionDomain(); |
| 2840 | method @Nullable public java.net.URL getResource(@NonNull String); |
| 2841 | method @Nullable public java.io.InputStream getResourceAsStream(@NonNull String); |
| 2842 | method @Nullable public Object[] getSigners(); |
| 2843 | method @NonNull public String getSimpleName(); |
| 2844 | method @Nullable public Class<? super T> getSuperclass(); |
| 2845 | method @NonNull public java.lang.reflect.TypeVariable<java.lang.Class<T>>[] getTypeParameters(); |
| 2846 | method public boolean isAnnotation(); |
| 2847 | method public boolean isAnonymousClass(); |
| 2848 | method public boolean isArray(); |
| 2849 | method public boolean isAssignableFrom(@NonNull Class<?>); |
| 2850 | method public boolean isEnum(); |
| 2851 | method public boolean isInstance(@Nullable Object); |
| 2852 | method public boolean isInterface(); |
| 2853 | method public boolean isLocalClass(); |
| 2854 | method public boolean isMemberClass(); |
| 2855 | method public boolean isPrimitive(); |
| 2856 | method public boolean isSynthetic(); |
| 2857 | method @NonNull public T newInstance() throws java.lang.IllegalAccessException, java.lang.InstantiationException; |
| 2858 | method @NonNull public String toGenericString(); |
| 2859 | } |
| 2860 | |
| 2861 | public class ClassCastException extends java.lang.RuntimeException { |
| 2862 | ctor public ClassCastException(); |
| 2863 | ctor public ClassCastException(String); |
| 2864 | } |
| 2865 | |
| 2866 | public class ClassCircularityError extends java.lang.LinkageError { |
| 2867 | ctor public ClassCircularityError(); |
| 2868 | ctor public ClassCircularityError(String); |
| 2869 | } |
| 2870 | |
| 2871 | public class ClassFormatError extends java.lang.LinkageError { |
| 2872 | ctor public ClassFormatError(); |
| 2873 | ctor public ClassFormatError(String); |
| 2874 | } |
| 2875 | |
| 2876 | public abstract class ClassLoader { |
| 2877 | ctor protected ClassLoader(ClassLoader); |
| 2878 | ctor protected ClassLoader(); |
| 2879 | method public void clearAssertionStatus(); |
| 2880 | method @Deprecated protected final Class<?> defineClass(byte[], int, int) throws java.lang.ClassFormatError; |
| 2881 | method protected final Class<?> defineClass(String, byte[], int, int) throws java.lang.ClassFormatError; |
| 2882 | method protected final Class<?> defineClass(String, byte[], int, int, java.security.ProtectionDomain) throws java.lang.ClassFormatError; |
| 2883 | method protected final Class<?> defineClass(String, java.nio.ByteBuffer, java.security.ProtectionDomain) throws java.lang.ClassFormatError; |
| 2884 | method protected Package definePackage(String, String, String, String, String, String, String, java.net.URL) throws java.lang.IllegalArgumentException; |
| 2885 | method protected Class<?> findClass(String) throws java.lang.ClassNotFoundException; |
| 2886 | method protected String findLibrary(String); |
| 2887 | method protected final Class<?> findLoadedClass(String); |
| 2888 | method protected java.net.URL findResource(String); |
| 2889 | method protected java.util.Enumeration<java.net.URL> findResources(String) throws java.io.IOException; |
| 2890 | method protected final Class<?> findSystemClass(String) throws java.lang.ClassNotFoundException; |
| 2891 | method protected Package getPackage(String); |
| 2892 | method protected Package[] getPackages(); |
| 2893 | method public final ClassLoader getParent(); |
| 2894 | method public java.net.URL getResource(String); |
| 2895 | method public java.io.InputStream getResourceAsStream(String); |
| 2896 | method public java.util.Enumeration<java.net.URL> getResources(String) throws java.io.IOException; |
| 2897 | method public static ClassLoader getSystemClassLoader(); |
| 2898 | method public static java.net.URL getSystemResource(String); |
| 2899 | method public static java.io.InputStream getSystemResourceAsStream(String); |
| 2900 | method public static java.util.Enumeration<java.net.URL> getSystemResources(String) throws java.io.IOException; |
| 2901 | method public Class<?> loadClass(String) throws java.lang.ClassNotFoundException; |
| 2902 | method protected Class<?> loadClass(String, boolean) throws java.lang.ClassNotFoundException; |
| 2903 | method protected static boolean registerAsParallelCapable(); |
| 2904 | method protected final void resolveClass(Class<?>); |
| 2905 | method public void setClassAssertionStatus(String, boolean); |
| 2906 | method public void setDefaultAssertionStatus(boolean); |
| 2907 | method public void setPackageAssertionStatus(String, boolean); |
| 2908 | method protected final void setSigners(Class<?>, Object[]); |
| 2909 | } |
| 2910 | |
| 2911 | public class ClassNotFoundException extends java.lang.ReflectiveOperationException { |
| 2912 | ctor public ClassNotFoundException(); |
| 2913 | ctor public ClassNotFoundException(String); |
| 2914 | ctor public ClassNotFoundException(String, Throwable); |
| 2915 | method public Throwable getException(); |
| 2916 | } |
| 2917 | |
| 2918 | public class CloneNotSupportedException extends java.lang.Exception { |
| 2919 | ctor public CloneNotSupportedException(); |
| 2920 | ctor public CloneNotSupportedException(String); |
| 2921 | } |
| 2922 | |
| 2923 | public interface Cloneable { |
| 2924 | } |
| 2925 | |
| 2926 | public interface Comparable<T> { |
| 2927 | method public int compareTo(T); |
| 2928 | } |
| 2929 | |
| 2930 | public final class Compiler { |
| 2931 | method public static Object command(Object); |
| 2932 | method public static boolean compileClass(Class<?>); |
| 2933 | method public static boolean compileClasses(String); |
| 2934 | method public static void disable(); |
| 2935 | method public static void enable(); |
| 2936 | } |
| 2937 | |
Nikita Iashchenko | efc56e5 | 2020-12-08 13:23:34 +0000 | [diff] [blame] | 2938 | @Deprecated @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.CONSTRUCTOR, java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.LOCAL_VARIABLE, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.PACKAGE, java.lang.annotation.ElementType.PARAMETER, java.lang.annotation.ElementType.TYPE}) public @interface Deprecated { |
| 2939 | method @Deprecated public abstract boolean forRemoval() default false; |
| 2940 | method @Deprecated public abstract String since() default ""; |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 2941 | } |
| 2942 | |
| 2943 | public final class Double extends java.lang.Number implements java.lang.Comparable<java.lang.Double> { |
| 2944 | ctor public Double(double); |
| 2945 | ctor public Double(@NonNull String) throws java.lang.NumberFormatException; |
| 2946 | method public static int compare(double, double); |
| 2947 | method public int compareTo(@NonNull Double); |
| 2948 | method public static long doubleToLongBits(double); |
| 2949 | method public static long doubleToRawLongBits(double); |
| 2950 | method public double doubleValue(); |
| 2951 | method public float floatValue(); |
| 2952 | method public static int hashCode(double); |
| 2953 | method public int intValue(); |
| 2954 | method public static boolean isFinite(double); |
| 2955 | method public static boolean isInfinite(double); |
| 2956 | method public boolean isInfinite(); |
| 2957 | method public static boolean isNaN(double); |
| 2958 | method public boolean isNaN(); |
| 2959 | method public static double longBitsToDouble(long); |
| 2960 | method public long longValue(); |
| 2961 | method public static double max(double, double); |
| 2962 | method public static double min(double, double); |
| 2963 | method public static double parseDouble(@NonNull String) throws java.lang.NumberFormatException; |
| 2964 | method public static double sum(double, double); |
| 2965 | method @NonNull public static String toHexString(double); |
| 2966 | method @NonNull public static String toString(double); |
| 2967 | method @NonNull public static Double valueOf(@NonNull String) throws java.lang.NumberFormatException; |
| 2968 | method @NonNull public static Double valueOf(double); |
| 2969 | field public static final int BYTES = 8; // 0x8 |
| 2970 | field public static final int MAX_EXPONENT = 1023; // 0x3ff |
| 2971 | field public static final double MAX_VALUE = 1.7976931348623157E308; |
| 2972 | field public static final int MIN_EXPONENT = -1022; // 0xfffffc02 |
| 2973 | field public static final double MIN_NORMAL = 2.2250738585072014E-308; |
| 2974 | field public static final double MIN_VALUE = 4.9E-324; |
| 2975 | field public static final double NEGATIVE_INFINITY = (-1.0/0.0); |
| 2976 | field public static final double NaN = (0.0/0.0); |
| 2977 | field public static final double POSITIVE_INFINITY = (1.0/0.0); |
| 2978 | field public static final int SIZE = 64; // 0x40 |
| 2979 | field public static final Class<java.lang.Double> TYPE; |
| 2980 | } |
| 2981 | |
| 2982 | public abstract class Enum<E extends java.lang.Enum<E>> implements java.lang.Comparable<E> java.io.Serializable { |
| 2983 | ctor protected Enum(@NonNull String, int); |
| 2984 | method @NonNull protected final Object clone() throws java.lang.CloneNotSupportedException; |
| 2985 | method public final int compareTo(E); |
| 2986 | method public final boolean equals(@Nullable Object); |
| 2987 | method protected final void finalize(); |
| 2988 | method @NonNull public final Class<E> getDeclaringClass(); |
| 2989 | method public final int hashCode(); |
| 2990 | method @NonNull public final String name(); |
| 2991 | method public final int ordinal(); |
| 2992 | method @NonNull public static <T extends java.lang.Enum<T>> T valueOf(@NonNull Class<T>, @NonNull String); |
| 2993 | } |
| 2994 | |
| 2995 | public class EnumConstantNotPresentException extends java.lang.RuntimeException { |
| 2996 | ctor public EnumConstantNotPresentException(Class<? extends java.lang.Enum>, String); |
| 2997 | method public String constantName(); |
| 2998 | method public Class<? extends java.lang.Enum> enumType(); |
| 2999 | } |
| 3000 | |
| 3001 | public class Error extends java.lang.Throwable { |
| 3002 | ctor public Error(); |
| 3003 | ctor public Error(String); |
| 3004 | ctor public Error(String, Throwable); |
| 3005 | ctor public Error(Throwable); |
| 3006 | ctor protected Error(String, Throwable, boolean, boolean); |
| 3007 | } |
| 3008 | |
| 3009 | public class Exception extends java.lang.Throwable { |
| 3010 | ctor public Exception(); |
| 3011 | ctor public Exception(String); |
| 3012 | ctor public Exception(String, Throwable); |
| 3013 | ctor public Exception(Throwable); |
| 3014 | ctor protected Exception(String, Throwable, boolean, boolean); |
| 3015 | } |
| 3016 | |
| 3017 | public class ExceptionInInitializerError extends java.lang.LinkageError { |
| 3018 | ctor public ExceptionInInitializerError(); |
| 3019 | ctor public ExceptionInInitializerError(Throwable); |
| 3020 | ctor public ExceptionInInitializerError(String); |
| 3021 | method public Throwable getException(); |
| 3022 | } |
| 3023 | |
| 3024 | public final class Float extends java.lang.Number implements java.lang.Comparable<java.lang.Float> { |
| 3025 | ctor public Float(float); |
| 3026 | ctor public Float(double); |
| 3027 | ctor public Float(@NonNull String) throws java.lang.NumberFormatException; |
| 3028 | method public static int compare(float, float); |
| 3029 | method public int compareTo(@NonNull Float); |
| 3030 | method public double doubleValue(); |
| 3031 | method public static int floatToIntBits(float); |
| 3032 | method public static int floatToRawIntBits(float); |
| 3033 | method public float floatValue(); |
| 3034 | method public static int hashCode(float); |
| 3035 | method public static float intBitsToFloat(int); |
| 3036 | method public int intValue(); |
| 3037 | method public static boolean isFinite(float); |
| 3038 | method public static boolean isInfinite(float); |
| 3039 | method public boolean isInfinite(); |
| 3040 | method public static boolean isNaN(float); |
| 3041 | method public boolean isNaN(); |
| 3042 | method public long longValue(); |
| 3043 | method public static float max(float, float); |
| 3044 | method public static float min(float, float); |
| 3045 | method public static float parseFloat(@NonNull String) throws java.lang.NumberFormatException; |
| 3046 | method public static float sum(float, float); |
| 3047 | method @NonNull public static String toHexString(float); |
| 3048 | method @NonNull public static String toString(float); |
| 3049 | method @NonNull public static Float valueOf(@NonNull String) throws java.lang.NumberFormatException; |
| 3050 | method @NonNull public static Float valueOf(float); |
| 3051 | field public static final int BYTES = 4; // 0x4 |
| 3052 | field public static final int MAX_EXPONENT = 127; // 0x7f |
| 3053 | field public static final float MAX_VALUE = 3.4028235E38f; |
| 3054 | field public static final int MIN_EXPONENT = -126; // 0xffffff82 |
| 3055 | field public static final float MIN_NORMAL = 1.17549435E-38f; |
| 3056 | field public static final float MIN_VALUE = 1.4E-45f; |
| 3057 | field public static final float NEGATIVE_INFINITY = (-1.0f/0.0f); |
| 3058 | field public static final float NaN = (0.0f/0.0f); |
| 3059 | field public static final float POSITIVE_INFINITY = (1.0f/0.0f); |
| 3060 | field public static final int SIZE = 32; // 0x20 |
| 3061 | field public static final Class<java.lang.Float> TYPE; |
| 3062 | } |
| 3063 | |
| 3064 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE) public @interface FunctionalInterface { |
| 3065 | } |
| 3066 | |
| 3067 | public class IllegalAccessError extends java.lang.IncompatibleClassChangeError { |
| 3068 | ctor public IllegalAccessError(); |
| 3069 | ctor public IllegalAccessError(String); |
| 3070 | } |
| 3071 | |
| 3072 | public class IllegalAccessException extends java.lang.ReflectiveOperationException { |
| 3073 | ctor public IllegalAccessException(); |
| 3074 | ctor public IllegalAccessException(String); |
| 3075 | } |
| 3076 | |
| 3077 | public class IllegalArgumentException extends java.lang.RuntimeException { |
| 3078 | ctor public IllegalArgumentException(); |
| 3079 | ctor public IllegalArgumentException(String); |
| 3080 | ctor public IllegalArgumentException(String, Throwable); |
| 3081 | ctor public IllegalArgumentException(Throwable); |
| 3082 | } |
| 3083 | |
| 3084 | public class IllegalMonitorStateException extends java.lang.RuntimeException { |
| 3085 | ctor public IllegalMonitorStateException(); |
| 3086 | ctor public IllegalMonitorStateException(String); |
| 3087 | } |
| 3088 | |
| 3089 | public class IllegalStateException extends java.lang.RuntimeException { |
| 3090 | ctor public IllegalStateException(); |
| 3091 | ctor public IllegalStateException(String); |
| 3092 | ctor public IllegalStateException(String, Throwable); |
| 3093 | ctor public IllegalStateException(Throwable); |
| 3094 | } |
| 3095 | |
| 3096 | public class IllegalThreadStateException extends java.lang.IllegalArgumentException { |
| 3097 | ctor public IllegalThreadStateException(); |
| 3098 | ctor public IllegalThreadStateException(String); |
| 3099 | } |
| 3100 | |
| 3101 | public class IncompatibleClassChangeError extends java.lang.LinkageError { |
| 3102 | ctor public IncompatibleClassChangeError(); |
| 3103 | ctor public IncompatibleClassChangeError(String); |
| 3104 | } |
| 3105 | |
| 3106 | public class IndexOutOfBoundsException extends java.lang.RuntimeException { |
| 3107 | ctor public IndexOutOfBoundsException(); |
| 3108 | ctor public IndexOutOfBoundsException(String); |
| 3109 | } |
| 3110 | |
| 3111 | public class InheritableThreadLocal<T> extends java.lang.ThreadLocal<T> { |
| 3112 | ctor public InheritableThreadLocal(); |
| 3113 | method protected T childValue(T); |
| 3114 | } |
| 3115 | |
| 3116 | public class InstantiationError extends java.lang.IncompatibleClassChangeError { |
| 3117 | ctor public InstantiationError(); |
| 3118 | ctor public InstantiationError(String); |
| 3119 | } |
| 3120 | |
| 3121 | public class InstantiationException extends java.lang.ReflectiveOperationException { |
| 3122 | ctor public InstantiationException(); |
| 3123 | ctor public InstantiationException(String); |
| 3124 | } |
| 3125 | |
| 3126 | public final class Integer extends java.lang.Number implements java.lang.Comparable<java.lang.Integer> { |
| 3127 | ctor public Integer(int); |
| 3128 | ctor public Integer(@NonNull String) throws java.lang.NumberFormatException; |
| 3129 | method public static int bitCount(int); |
| 3130 | method public static int compare(int, int); |
| 3131 | method public int compareTo(@NonNull Integer); |
| 3132 | method public static int compareUnsigned(int, int); |
| 3133 | method @NonNull public static Integer decode(@NonNull String) throws java.lang.NumberFormatException; |
| 3134 | method public static int divideUnsigned(int, int); |
| 3135 | method public double doubleValue(); |
| 3136 | method public float floatValue(); |
| 3137 | method @Nullable public static Integer getInteger(@NonNull String); |
| 3138 | method @Nullable public static Integer getInteger(@NonNull String, int); |
| 3139 | method @Nullable public static Integer getInteger(@NonNull String, @Nullable Integer); |
| 3140 | method public static int hashCode(int); |
| 3141 | method public static int highestOneBit(int); |
| 3142 | method public int intValue(); |
| 3143 | method public long longValue(); |
| 3144 | method public static int lowestOneBit(int); |
| 3145 | method public static int max(int, int); |
| 3146 | method public static int min(int, int); |
| 3147 | method public static int numberOfLeadingZeros(int); |
| 3148 | method public static int numberOfTrailingZeros(int); |
| 3149 | method public static int parseInt(@NonNull String, int) throws java.lang.NumberFormatException; |
| 3150 | method public static int parseInt(@NonNull String) throws java.lang.NumberFormatException; |
| 3151 | method public static int parseUnsignedInt(@NonNull String, int) throws java.lang.NumberFormatException; |
| 3152 | method public static int parseUnsignedInt(@NonNull String) throws java.lang.NumberFormatException; |
| 3153 | method public static int remainderUnsigned(int, int); |
| 3154 | method public static int reverse(int); |
| 3155 | method public static int reverseBytes(int); |
| 3156 | method public static int rotateLeft(int, int); |
| 3157 | method public static int rotateRight(int, int); |
| 3158 | method public static int signum(int); |
| 3159 | method public static int sum(int, int); |
| 3160 | method @NonNull public static String toBinaryString(int); |
| 3161 | method @NonNull public static String toHexString(int); |
| 3162 | method @NonNull public static String toOctalString(int); |
| 3163 | method @NonNull public static String toString(int, int); |
| 3164 | method @NonNull public static String toString(int); |
| 3165 | method public static long toUnsignedLong(int); |
| 3166 | method @NonNull public static String toUnsignedString(int, int); |
| 3167 | method @NonNull public static String toUnsignedString(int); |
| 3168 | method @NonNull public static Integer valueOf(@NonNull String, int) throws java.lang.NumberFormatException; |
| 3169 | method @NonNull public static Integer valueOf(@NonNull String) throws java.lang.NumberFormatException; |
| 3170 | method @NonNull public static Integer valueOf(int); |
| 3171 | field public static final int BYTES = 4; // 0x4 |
| 3172 | field public static final int MAX_VALUE = 2147483647; // 0x7fffffff |
| 3173 | field public static final int MIN_VALUE = -2147483648; // 0x80000000 |
| 3174 | field public static final int SIZE = 32; // 0x20 |
| 3175 | field public static final Class<java.lang.Integer> TYPE; |
| 3176 | } |
| 3177 | |
| 3178 | public class InternalError extends java.lang.VirtualMachineError { |
| 3179 | ctor public InternalError(); |
| 3180 | ctor public InternalError(String); |
| 3181 | ctor public InternalError(String, Throwable); |
| 3182 | ctor public InternalError(Throwable); |
| 3183 | } |
| 3184 | |
| 3185 | public class InterruptedException extends java.lang.Exception { |
| 3186 | ctor public InterruptedException(); |
| 3187 | ctor public InterruptedException(String); |
| 3188 | } |
| 3189 | |
| 3190 | public interface Iterable<T> { |
| 3191 | method public default void forEach(@NonNull java.util.function.Consumer<? super T>); |
| 3192 | method @NonNull public java.util.Iterator<T> iterator(); |
| 3193 | method @NonNull public default java.util.Spliterator<T> spliterator(); |
| 3194 | } |
| 3195 | |
| 3196 | public class LinkageError extends java.lang.Error { |
| 3197 | ctor public LinkageError(); |
| 3198 | ctor public LinkageError(String); |
| 3199 | ctor public LinkageError(String, Throwable); |
| 3200 | } |
| 3201 | |
| 3202 | public final class Long extends java.lang.Number implements java.lang.Comparable<java.lang.Long> { |
| 3203 | ctor public Long(long); |
| 3204 | ctor public Long(@NonNull String) throws java.lang.NumberFormatException; |
| 3205 | method public static int bitCount(long); |
| 3206 | method public static int compare(long, long); |
| 3207 | method public int compareTo(@NonNull Long); |
| 3208 | method public static int compareUnsigned(long, long); |
| 3209 | method @NonNull public static Long decode(@NonNull String) throws java.lang.NumberFormatException; |
| 3210 | method public static long divideUnsigned(long, long); |
| 3211 | method public double doubleValue(); |
| 3212 | method public float floatValue(); |
| 3213 | method @Nullable public static Long getLong(@NonNull String); |
| 3214 | method @Nullable public static Long getLong(@NonNull String, long); |
| 3215 | method @Nullable public static Long getLong(@NonNull String, @Nullable Long); |
| 3216 | method public static int hashCode(long); |
| 3217 | method public static long highestOneBit(long); |
| 3218 | method public int intValue(); |
| 3219 | method public long longValue(); |
| 3220 | method public static long lowestOneBit(long); |
| 3221 | method public static long max(long, long); |
| 3222 | method public static long min(long, long); |
| 3223 | method public static int numberOfLeadingZeros(long); |
| 3224 | method public static int numberOfTrailingZeros(long); |
| 3225 | method public static long parseLong(@NonNull String, int) throws java.lang.NumberFormatException; |
| 3226 | method public static long parseLong(@NonNull String) throws java.lang.NumberFormatException; |
| 3227 | method public static long parseUnsignedLong(@NonNull String, int) throws java.lang.NumberFormatException; |
| 3228 | method public static long parseUnsignedLong(@NonNull String) throws java.lang.NumberFormatException; |
| 3229 | method public static long remainderUnsigned(long, long); |
| 3230 | method public static long reverse(long); |
| 3231 | method public static long reverseBytes(long); |
| 3232 | method public static long rotateLeft(long, int); |
| 3233 | method public static long rotateRight(long, int); |
| 3234 | method public static int signum(long); |
| 3235 | method public static long sum(long, long); |
| 3236 | method @NonNull public static String toBinaryString(long); |
| 3237 | method @NonNull public static String toHexString(long); |
| 3238 | method @NonNull public static String toOctalString(long); |
| 3239 | method @NonNull public static String toString(long, int); |
| 3240 | method @NonNull public static String toString(long); |
| 3241 | method @NonNull public static String toUnsignedString(long, int); |
| 3242 | method @NonNull public static String toUnsignedString(long); |
| 3243 | method @NonNull public static Long valueOf(@NonNull String, int) throws java.lang.NumberFormatException; |
| 3244 | method @NonNull public static Long valueOf(@NonNull String) throws java.lang.NumberFormatException; |
| 3245 | method @NonNull public static Long valueOf(long); |
| 3246 | field public static final int BYTES = 8; // 0x8 |
| 3247 | field public static final long MAX_VALUE = 9223372036854775807L; // 0x7fffffffffffffffL |
| 3248 | field public static final long MIN_VALUE = -9223372036854775808L; // 0x8000000000000000L |
| 3249 | field public static final int SIZE = 64; // 0x40 |
| 3250 | field public static final Class<java.lang.Long> TYPE; |
| 3251 | } |
| 3252 | |
| 3253 | public final class Math { |
| 3254 | method public static double IEEEremainder(double, double); |
| 3255 | method public static int abs(int); |
| 3256 | method public static long abs(long); |
| 3257 | method public static float abs(float); |
| 3258 | method public static double abs(double); |
| 3259 | method public static double acos(double); |
| 3260 | method public static int addExact(int, int); |
| 3261 | method public static long addExact(long, long); |
| 3262 | method public static double asin(double); |
| 3263 | method public static double atan(double); |
| 3264 | method public static double atan2(double, double); |
| 3265 | method public static double cbrt(double); |
| 3266 | method public static double ceil(double); |
| 3267 | method public static double copySign(double, double); |
| 3268 | method public static float copySign(float, float); |
| 3269 | method public static double cos(double); |
| 3270 | method public static double cosh(double); |
| 3271 | method public static int decrementExact(int); |
| 3272 | method public static long decrementExact(long); |
| 3273 | method public static double exp(double); |
| 3274 | method public static double expm1(double); |
| 3275 | method public static double floor(double); |
| 3276 | method public static int floorDiv(int, int); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3277 | method public static long floorDiv(long, int); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3278 | method public static long floorDiv(long, long); |
| 3279 | method public static int floorMod(int, int); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3280 | method public static int floorMod(long, int); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3281 | method public static long floorMod(long, long); |
| 3282 | method public static int getExponent(float); |
| 3283 | method public static int getExponent(double); |
| 3284 | method public static double hypot(double, double); |
| 3285 | method public static int incrementExact(int); |
| 3286 | method public static long incrementExact(long); |
| 3287 | method public static double log(double); |
| 3288 | method public static double log10(double); |
| 3289 | method public static double log1p(double); |
| 3290 | method public static int max(int, int); |
| 3291 | method public static long max(long, long); |
| 3292 | method public static float max(float, float); |
| 3293 | method public static double max(double, double); |
| 3294 | method public static int min(int, int); |
| 3295 | method public static long min(long, long); |
| 3296 | method public static float min(float, float); |
| 3297 | method public static double min(double, double); |
| 3298 | method public static int multiplyExact(int, int); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3299 | method public static long multiplyExact(long, int); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3300 | method public static long multiplyExact(long, long); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3301 | method public static long multiplyFull(int, int); |
| 3302 | method public static long multiplyHigh(long, long); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3303 | method public static int negateExact(int); |
| 3304 | method public static long negateExact(long); |
| 3305 | method public static double nextAfter(double, double); |
| 3306 | method public static float nextAfter(float, double); |
| 3307 | method public static double nextDown(double); |
| 3308 | method public static float nextDown(float); |
| 3309 | method public static double nextUp(double); |
| 3310 | method public static float nextUp(float); |
| 3311 | method public static double pow(double, double); |
| 3312 | method public static double random(); |
| 3313 | method public static double rint(double); |
| 3314 | method public static int round(float); |
| 3315 | method public static long round(double); |
| 3316 | method public static double scalb(double, int); |
| 3317 | method public static float scalb(float, int); |
| 3318 | method public static double signum(double); |
| 3319 | method public static float signum(float); |
| 3320 | method public static double sin(double); |
| 3321 | method public static double sinh(double); |
| 3322 | method public static double sqrt(double); |
| 3323 | method public static int subtractExact(int, int); |
| 3324 | method public static long subtractExact(long, long); |
| 3325 | method public static double tan(double); |
| 3326 | method public static double tanh(double); |
| 3327 | method public static double toDegrees(double); |
| 3328 | method public static int toIntExact(long); |
| 3329 | method public static double toRadians(double); |
| 3330 | method public static double ulp(double); |
| 3331 | method public static float ulp(float); |
| 3332 | field public static final double E = 2.718281828459045; |
| 3333 | field public static final double PI = 3.141592653589793; |
| 3334 | } |
| 3335 | |
| 3336 | public class NegativeArraySizeException extends java.lang.RuntimeException { |
| 3337 | ctor public NegativeArraySizeException(); |
| 3338 | ctor public NegativeArraySizeException(String); |
| 3339 | } |
| 3340 | |
| 3341 | public class NoClassDefFoundError extends java.lang.LinkageError { |
| 3342 | ctor public NoClassDefFoundError(); |
| 3343 | ctor public NoClassDefFoundError(String); |
| 3344 | } |
| 3345 | |
| 3346 | public class NoSuchFieldError extends java.lang.IncompatibleClassChangeError { |
| 3347 | ctor public NoSuchFieldError(); |
| 3348 | ctor public NoSuchFieldError(String); |
| 3349 | } |
| 3350 | |
| 3351 | public class NoSuchFieldException extends java.lang.ReflectiveOperationException { |
| 3352 | ctor public NoSuchFieldException(); |
| 3353 | ctor public NoSuchFieldException(String); |
| 3354 | } |
| 3355 | |
| 3356 | public class NoSuchMethodError extends java.lang.IncompatibleClassChangeError { |
| 3357 | ctor public NoSuchMethodError(); |
| 3358 | ctor public NoSuchMethodError(String); |
| 3359 | } |
| 3360 | |
| 3361 | public class NoSuchMethodException extends java.lang.ReflectiveOperationException { |
| 3362 | ctor public NoSuchMethodException(); |
| 3363 | ctor public NoSuchMethodException(String); |
| 3364 | } |
| 3365 | |
| 3366 | public class NullPointerException extends java.lang.RuntimeException { |
| 3367 | ctor public NullPointerException(); |
| 3368 | ctor public NullPointerException(String); |
| 3369 | } |
| 3370 | |
| 3371 | public abstract class Number implements java.io.Serializable { |
| 3372 | ctor public Number(); |
| 3373 | method public byte byteValue(); |
| 3374 | method public abstract double doubleValue(); |
| 3375 | method public abstract float floatValue(); |
| 3376 | method public abstract int intValue(); |
| 3377 | method public abstract long longValue(); |
| 3378 | method public short shortValue(); |
| 3379 | } |
| 3380 | |
| 3381 | public class NumberFormatException extends java.lang.IllegalArgumentException { |
| 3382 | ctor public NumberFormatException(); |
| 3383 | ctor public NumberFormatException(String); |
| 3384 | } |
| 3385 | |
| 3386 | public class Object { |
| 3387 | ctor public Object(); |
| 3388 | method @NonNull protected Object clone() throws java.lang.CloneNotSupportedException; |
| 3389 | method public boolean equals(@Nullable Object); |
| 3390 | method protected void finalize() throws java.lang.Throwable; |
| 3391 | method @NonNull public final Class<?> getClass(); |
| 3392 | method public int hashCode(); |
| 3393 | method public final void notify(); |
| 3394 | method public final void notifyAll(); |
| 3395 | method @NonNull public String toString(); |
| 3396 | method public final void wait(long) throws java.lang.InterruptedException; |
| 3397 | method public final void wait(long, int) throws java.lang.InterruptedException; |
| 3398 | method public final void wait() throws java.lang.InterruptedException; |
| 3399 | } |
| 3400 | |
| 3401 | public class OutOfMemoryError extends java.lang.VirtualMachineError { |
| 3402 | ctor public OutOfMemoryError(); |
| 3403 | ctor public OutOfMemoryError(String); |
| 3404 | } |
| 3405 | |
| 3406 | @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface Override { |
| 3407 | } |
| 3408 | |
| 3409 | public class Package implements java.lang.reflect.AnnotatedElement { |
| 3410 | method public <A extends java.lang.annotation.Annotation> A getAnnotation(Class<A>); |
| 3411 | method public java.lang.annotation.Annotation[] getAnnotations(); |
| 3412 | method public <A extends java.lang.annotation.Annotation> A[] getAnnotationsByType(Class<A>); |
| 3413 | method public <A extends java.lang.annotation.Annotation> A getDeclaredAnnotation(Class<A>); |
| 3414 | method public java.lang.annotation.Annotation[] getDeclaredAnnotations(); |
| 3415 | method public <A extends java.lang.annotation.Annotation> A[] getDeclaredAnnotationsByType(Class<A>); |
| 3416 | method public String getImplementationTitle(); |
| 3417 | method public String getImplementationVendor(); |
| 3418 | method public String getImplementationVersion(); |
| 3419 | method public String getName(); |
| 3420 | method public static Package getPackage(String); |
| 3421 | method public static Package[] getPackages(); |
| 3422 | method public String getSpecificationTitle(); |
| 3423 | method public String getSpecificationVendor(); |
| 3424 | method public String getSpecificationVersion(); |
| 3425 | method public boolean isCompatibleWith(String) throws java.lang.NumberFormatException; |
| 3426 | method public boolean isSealed(); |
| 3427 | method public boolean isSealed(java.net.URL); |
| 3428 | } |
| 3429 | |
| 3430 | public abstract class Process { |
| 3431 | ctor public Process(); |
| 3432 | method public abstract void destroy(); |
| 3433 | method public Process destroyForcibly(); |
| 3434 | method public abstract int exitValue(); |
| 3435 | method public abstract java.io.InputStream getErrorStream(); |
| 3436 | method public abstract java.io.InputStream getInputStream(); |
| 3437 | method public abstract java.io.OutputStream getOutputStream(); |
| 3438 | method public boolean isAlive(); |
| 3439 | method public abstract int waitFor() throws java.lang.InterruptedException; |
| 3440 | method public boolean waitFor(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 3441 | } |
| 3442 | |
| 3443 | public final class ProcessBuilder { |
| 3444 | ctor public ProcessBuilder(java.util.List<java.lang.String>); |
| 3445 | ctor public ProcessBuilder(java.lang.String...); |
| 3446 | method public ProcessBuilder command(java.util.List<java.lang.String>); |
| 3447 | method public ProcessBuilder command(java.lang.String...); |
| 3448 | method public java.util.List<java.lang.String> command(); |
| 3449 | method public java.io.File directory(); |
| 3450 | method public ProcessBuilder directory(java.io.File); |
| 3451 | method public java.util.Map<java.lang.String,java.lang.String> environment(); |
| 3452 | method public ProcessBuilder inheritIO(); |
| 3453 | method public ProcessBuilder redirectError(java.lang.ProcessBuilder.Redirect); |
| 3454 | method public ProcessBuilder redirectError(java.io.File); |
| 3455 | method public java.lang.ProcessBuilder.Redirect redirectError(); |
| 3456 | method public boolean redirectErrorStream(); |
| 3457 | method public ProcessBuilder redirectErrorStream(boolean); |
| 3458 | method public ProcessBuilder redirectInput(java.lang.ProcessBuilder.Redirect); |
| 3459 | method public ProcessBuilder redirectInput(java.io.File); |
| 3460 | method public java.lang.ProcessBuilder.Redirect redirectInput(); |
| 3461 | method public ProcessBuilder redirectOutput(java.lang.ProcessBuilder.Redirect); |
| 3462 | method public ProcessBuilder redirectOutput(java.io.File); |
| 3463 | method public java.lang.ProcessBuilder.Redirect redirectOutput(); |
| 3464 | method public Process start() throws java.io.IOException; |
| 3465 | } |
| 3466 | |
| 3467 | public abstract static class ProcessBuilder.Redirect { |
| 3468 | method public static java.lang.ProcessBuilder.Redirect appendTo(java.io.File); |
| 3469 | method public java.io.File file(); |
| 3470 | method public static java.lang.ProcessBuilder.Redirect from(java.io.File); |
| 3471 | method public static java.lang.ProcessBuilder.Redirect to(java.io.File); |
| 3472 | method public abstract java.lang.ProcessBuilder.Redirect.Type type(); |
| 3473 | field public static final java.lang.ProcessBuilder.Redirect INHERIT; |
| 3474 | field public static final java.lang.ProcessBuilder.Redirect PIPE; |
| 3475 | } |
| 3476 | |
| 3477 | public enum ProcessBuilder.Redirect.Type { |
| 3478 | enum_constant public static final java.lang.ProcessBuilder.Redirect.Type APPEND; |
| 3479 | enum_constant public static final java.lang.ProcessBuilder.Redirect.Type INHERIT; |
| 3480 | enum_constant public static final java.lang.ProcessBuilder.Redirect.Type PIPE; |
| 3481 | enum_constant public static final java.lang.ProcessBuilder.Redirect.Type READ; |
| 3482 | enum_constant public static final java.lang.ProcessBuilder.Redirect.Type WRITE; |
| 3483 | } |
| 3484 | |
| 3485 | public interface Readable { |
| 3486 | method public int read(java.nio.CharBuffer) throws java.io.IOException; |
| 3487 | } |
| 3488 | |
| 3489 | public class ReflectiveOperationException extends java.lang.Exception { |
| 3490 | ctor public ReflectiveOperationException(); |
| 3491 | ctor public ReflectiveOperationException(String); |
| 3492 | ctor public ReflectiveOperationException(String, Throwable); |
| 3493 | ctor public ReflectiveOperationException(Throwable); |
| 3494 | } |
| 3495 | |
| 3496 | @java.lang.FunctionalInterface public interface Runnable { |
| 3497 | method public void run(); |
| 3498 | } |
| 3499 | |
| 3500 | public class Runtime { |
| 3501 | method public void addShutdownHook(Thread); |
| 3502 | method public int availableProcessors(); |
| 3503 | method public Process exec(String) throws java.io.IOException; |
| 3504 | method public Process exec(String, String[]) throws java.io.IOException; |
| 3505 | method public Process exec(String, String[], java.io.File) throws java.io.IOException; |
| 3506 | method public Process exec(String[]) throws java.io.IOException; |
| 3507 | method public Process exec(String[], String[]) throws java.io.IOException; |
| 3508 | method public Process exec(String[], String[], java.io.File) throws java.io.IOException; |
| 3509 | method public void exit(int); |
| 3510 | method public long freeMemory(); |
| 3511 | method public void gc(); |
| 3512 | method @Deprecated public java.io.InputStream getLocalizedInputStream(java.io.InputStream); |
| 3513 | method @Deprecated public java.io.OutputStream getLocalizedOutputStream(java.io.OutputStream); |
| 3514 | method public static Runtime getRuntime(); |
| 3515 | method public void halt(int); |
| 3516 | method public void load(String); |
| 3517 | method public void loadLibrary(String); |
| 3518 | method public long maxMemory(); |
| 3519 | method public boolean removeShutdownHook(Thread); |
| 3520 | method public void runFinalization(); |
| 3521 | method @Deprecated public static void runFinalizersOnExit(boolean); |
| 3522 | method public long totalMemory(); |
| 3523 | method public void traceInstructions(boolean); |
| 3524 | method public void traceMethodCalls(boolean); |
| 3525 | } |
| 3526 | |
| 3527 | public class RuntimeException extends java.lang.Exception { |
| 3528 | ctor public RuntimeException(); |
| 3529 | ctor public RuntimeException(String); |
| 3530 | ctor public RuntimeException(String, Throwable); |
| 3531 | ctor public RuntimeException(Throwable); |
| 3532 | ctor protected RuntimeException(String, Throwable, boolean, boolean); |
| 3533 | } |
| 3534 | |
| 3535 | public final class RuntimePermission extends java.security.BasicPermission { |
| 3536 | ctor public RuntimePermission(String); |
| 3537 | ctor public RuntimePermission(String, String); |
| 3538 | } |
| 3539 | |
| 3540 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.CONSTRUCTOR, java.lang.annotation.ElementType.METHOD}) public @interface SafeVarargs { |
| 3541 | } |
| 3542 | |
| 3543 | public class SecurityException extends java.lang.RuntimeException { |
| 3544 | ctor public SecurityException(); |
| 3545 | ctor public SecurityException(String); |
| 3546 | ctor public SecurityException(String, Throwable); |
| 3547 | ctor public SecurityException(Throwable); |
| 3548 | } |
| 3549 | |
| 3550 | public class SecurityManager { |
| 3551 | ctor public SecurityManager(); |
| 3552 | method public void checkAccept(String, int); |
| 3553 | method public void checkAccess(Thread); |
| 3554 | method public void checkAccess(ThreadGroup); |
| 3555 | method public void checkAwtEventQueueAccess(); |
| 3556 | method public void checkConnect(String, int); |
| 3557 | method public void checkConnect(String, int, Object); |
| 3558 | method public void checkCreateClassLoader(); |
| 3559 | method public void checkDelete(String); |
| 3560 | method public void checkExec(String); |
| 3561 | method public void checkExit(int); |
| 3562 | method public void checkLink(String); |
| 3563 | method public void checkListen(int); |
| 3564 | method public void checkMemberAccess(Class<?>, int); |
| 3565 | method public void checkMulticast(java.net.InetAddress); |
| 3566 | method @Deprecated public void checkMulticast(java.net.InetAddress, byte); |
| 3567 | method public void checkPackageAccess(String); |
| 3568 | method public void checkPackageDefinition(String); |
| 3569 | method public void checkPermission(java.security.Permission); |
| 3570 | method public void checkPermission(java.security.Permission, Object); |
| 3571 | method public void checkPrintJobAccess(); |
| 3572 | method public void checkPropertiesAccess(); |
| 3573 | method public void checkPropertyAccess(String); |
| 3574 | method public void checkRead(java.io.FileDescriptor); |
| 3575 | method public void checkRead(String); |
| 3576 | method public void checkRead(String, Object); |
| 3577 | method public void checkSecurityAccess(String); |
| 3578 | method public void checkSetFactory(); |
| 3579 | method public void checkSystemClipboardAccess(); |
| 3580 | method public boolean checkTopLevelWindow(Object); |
| 3581 | method public void checkWrite(java.io.FileDescriptor); |
| 3582 | method public void checkWrite(String); |
| 3583 | method @Deprecated protected int classDepth(String); |
| 3584 | method @Deprecated protected int classLoaderDepth(); |
| 3585 | method @Deprecated protected ClassLoader currentClassLoader(); |
| 3586 | method @Deprecated protected Class<?> currentLoadedClass(); |
| 3587 | method protected Class[] getClassContext(); |
| 3588 | method @Deprecated public boolean getInCheck(); |
| 3589 | method public Object getSecurityContext(); |
| 3590 | method public ThreadGroup getThreadGroup(); |
| 3591 | method @Deprecated protected boolean inClass(String); |
| 3592 | method @Deprecated protected boolean inClassLoader(); |
| 3593 | field @Deprecated protected boolean inCheck; |
| 3594 | } |
| 3595 | |
| 3596 | public final class Short extends java.lang.Number implements java.lang.Comparable<java.lang.Short> { |
Nikita Iashchenko | 5cdf252 | 2020-12-08 14:57:07 +0000 | [diff] [blame] | 3597 | ctor @Deprecated public Short(short); |
| 3598 | ctor @Deprecated public Short(String) throws java.lang.NumberFormatException; |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3599 | method public static int compare(short, short); |
| 3600 | method public int compareTo(Short); |
Nikita Iashchenko | 5cdf252 | 2020-12-08 14:57:07 +0000 | [diff] [blame] | 3601 | method public static int compareUnsigned(short, short); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3602 | method public static Short decode(String) throws java.lang.NumberFormatException; |
| 3603 | method public double doubleValue(); |
| 3604 | method public float floatValue(); |
| 3605 | method public static int hashCode(short); |
| 3606 | method public int intValue(); |
| 3607 | method public long longValue(); |
| 3608 | method public static short parseShort(String, int) throws java.lang.NumberFormatException; |
| 3609 | method public static short parseShort(String) throws java.lang.NumberFormatException; |
| 3610 | method public static short reverseBytes(short); |
| 3611 | method public static String toString(short); |
| 3612 | method public static int toUnsignedInt(short); |
| 3613 | method public static long toUnsignedLong(short); |
| 3614 | method public static Short valueOf(String, int) throws java.lang.NumberFormatException; |
| 3615 | method public static Short valueOf(String) throws java.lang.NumberFormatException; |
| 3616 | method public static Short valueOf(short); |
| 3617 | field public static final int BYTES = 2; // 0x2 |
| 3618 | field public static final short MAX_VALUE = 32767; // 0x7fff |
| 3619 | field public static final short MIN_VALUE = -32768; // 0xffff8000 |
| 3620 | field public static final int SIZE = 16; // 0x10 |
| 3621 | field public static final Class<java.lang.Short> TYPE; |
| 3622 | } |
| 3623 | |
| 3624 | public class StackOverflowError extends java.lang.VirtualMachineError { |
| 3625 | ctor public StackOverflowError(); |
| 3626 | ctor public StackOverflowError(String); |
| 3627 | } |
| 3628 | |
| 3629 | public final class StackTraceElement implements java.io.Serializable { |
| 3630 | ctor public StackTraceElement(String, String, String, int); |
| 3631 | method public String getClassName(); |
| 3632 | method public String getFileName(); |
| 3633 | method public int getLineNumber(); |
| 3634 | method public String getMethodName(); |
| 3635 | method public boolean isNativeMethod(); |
| 3636 | } |
| 3637 | |
| 3638 | public final class StrictMath { |
| 3639 | method public static double IEEEremainder(double, double); |
| 3640 | method public static int abs(int); |
| 3641 | method public static long abs(long); |
| 3642 | method public static float abs(float); |
| 3643 | method public static double abs(double); |
| 3644 | method public static double acos(double); |
| 3645 | method public static int addExact(int, int); |
| 3646 | method public static long addExact(long, long); |
| 3647 | method public static double asin(double); |
| 3648 | method public static double atan(double); |
| 3649 | method public static double atan2(double, double); |
| 3650 | method public static double cbrt(double); |
| 3651 | method public static double ceil(double); |
| 3652 | method public static double copySign(double, double); |
| 3653 | method public static float copySign(float, float); |
| 3654 | method public static double cos(double); |
| 3655 | method public static double cosh(double); |
| 3656 | method public static double exp(double); |
| 3657 | method public static double expm1(double); |
| 3658 | method public static double floor(double); |
| 3659 | method public static int floorDiv(int, int); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3660 | method public static long floorDiv(long, int); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3661 | method public static long floorDiv(long, long); |
| 3662 | method public static int floorMod(int, int); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3663 | method public static int floorMod(long, int); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3664 | method public static long floorMod(long, long); |
| 3665 | method public static int getExponent(float); |
| 3666 | method public static int getExponent(double); |
| 3667 | method public static double hypot(double, double); |
| 3668 | method public static double log(double); |
| 3669 | method public static double log10(double); |
| 3670 | method public static double log1p(double); |
| 3671 | method public static int max(int, int); |
| 3672 | method public static long max(long, long); |
| 3673 | method public static float max(float, float); |
| 3674 | method public static double max(double, double); |
| 3675 | method public static int min(int, int); |
| 3676 | method public static long min(long, long); |
| 3677 | method public static float min(float, float); |
| 3678 | method public static double min(double, double); |
| 3679 | method public static int multiplyExact(int, int); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3680 | method public static long multiplyExact(long, int); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3681 | method public static long multiplyExact(long, long); |
Nikita Iashchenko | b975f0e | 2021-01-19 14:21:38 +0000 | [diff] [blame] | 3682 | method public static long multiplyFull(int, int); |
| 3683 | method public static long multiplyHigh(long, long); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 3684 | method public static double nextAfter(double, double); |
| 3685 | method public static float nextAfter(float, double); |
| 3686 | method public static double nextDown(double); |
| 3687 | method public static float nextDown(float); |
| 3688 | method public static double nextUp(double); |
| 3689 | method public static float nextUp(float); |
| 3690 | method public static double pow(double, double); |
| 3691 | method public static double random(); |
| 3692 | method public static double rint(double); |
| 3693 | method public static int round(float); |
| 3694 | method public static long round(double); |
| 3695 | method public static double scalb(double, int); |
| 3696 | method public static float scalb(float, int); |
| 3697 | method public static double signum(double); |
| 3698 | method public static float signum(float); |
| 3699 | method public static double sin(double); |
| 3700 | method public static double sinh(double); |
| 3701 | method public static double sqrt(double); |
| 3702 | method public static int subtractExact(int, int); |
| 3703 | method public static long subtractExact(long, long); |
| 3704 | method public static double tan(double); |
| 3705 | method public static double tanh(double); |
| 3706 | method public static double toDegrees(double); |
| 3707 | method public static int toIntExact(long); |
| 3708 | method public static double toRadians(double); |
| 3709 | method public static double ulp(double); |
| 3710 | method public static float ulp(float); |
| 3711 | field public static final double E = 2.718281828459045; |
| 3712 | field public static final double PI = 3.141592653589793; |
| 3713 | } |
| 3714 | |
| 3715 | public final class String implements java.lang.CharSequence java.lang.Comparable<java.lang.String> java.io.Serializable { |
| 3716 | ctor public String(); |
| 3717 | ctor public String(@NonNull String); |
| 3718 | ctor public String(char[]); |
| 3719 | ctor public String(char[], int, int); |
| 3720 | ctor public String(int[], int, int); |
| 3721 | ctor @Deprecated public String(byte[], int, int, int); |
| 3722 | ctor @Deprecated public String(byte[], int); |
| 3723 | ctor public String(byte[], int, int, @NonNull String) throws java.io.UnsupportedEncodingException; |
| 3724 | ctor public String(byte[], int, int, @NonNull java.nio.charset.Charset); |
| 3725 | ctor public String(byte[], @NonNull String) throws java.io.UnsupportedEncodingException; |
| 3726 | ctor public String(byte[], @NonNull java.nio.charset.Charset); |
| 3727 | ctor public String(byte[], int, int); |
| 3728 | ctor public String(byte[]); |
| 3729 | ctor public String(@NonNull StringBuffer); |
| 3730 | ctor public String(@NonNull StringBuilder); |
| 3731 | method public char charAt(int); |
| 3732 | method public int codePointAt(int); |
| 3733 | method public int codePointBefore(int); |
| 3734 | method public int codePointCount(int, int); |
| 3735 | method public int compareTo(@NonNull String); |
| 3736 | method public int compareToIgnoreCase(@NonNull String); |
| 3737 | method @NonNull public String concat(@NonNull String); |
| 3738 | method public boolean contains(@NonNull CharSequence); |
| 3739 | method public boolean contentEquals(@NonNull StringBuffer); |
| 3740 | method public boolean contentEquals(@NonNull CharSequence); |
| 3741 | method @NonNull public static String copyValueOf(char[], int, int); |
| 3742 | method @NonNull public static String copyValueOf(char[]); |
| 3743 | method public boolean endsWith(@NonNull String); |
| 3744 | method public boolean equalsIgnoreCase(@Nullable String); |
| 3745 | method @NonNull public static String format(@NonNull String, @NonNull java.lang.Object...); |
| 3746 | method @NonNull public static String format(@NonNull java.util.Locale, @NonNull String, @NonNull java.lang.Object...); |
| 3747 | method @Deprecated public void getBytes(int, int, byte[], int); |
| 3748 | method public byte[] getBytes(@NonNull String) throws java.io.UnsupportedEncodingException; |
| 3749 | method public byte[] getBytes(@NonNull java.nio.charset.Charset); |
| 3750 | method public byte[] getBytes(); |
| 3751 | method public void getChars(int, int, char[], int); |
| 3752 | method public int indexOf(int); |
| 3753 | method public int indexOf(int, int); |
| 3754 | method public int indexOf(@NonNull String); |
| 3755 | method public int indexOf(@NonNull String, int); |
| 3756 | method @NonNull public String intern(); |
| 3757 | method public boolean isEmpty(); |
| 3758 | method @NonNull public static String join(@NonNull CharSequence, @Nullable java.lang.CharSequence...); |
| 3759 | method @NonNull public static String join(@NonNull CharSequence, @NonNull Iterable<? extends java.lang.CharSequence>); |
| 3760 | method public int lastIndexOf(int); |
| 3761 | method public int lastIndexOf(int, int); |
| 3762 | method public int lastIndexOf(@NonNull String); |
| 3763 | method public int lastIndexOf(@NonNull String, int); |
| 3764 | method public int length(); |
| 3765 | method public boolean matches(@NonNull String); |
| 3766 | method public int offsetByCodePoints(int, int); |
| 3767 | method public boolean regionMatches(int, @NonNull String, int, int); |
| 3768 | method public boolean regionMatches(boolean, int, @NonNull String, int, int); |
| 3769 | method @NonNull public String replace(char, char); |
| 3770 | method @NonNull public String replace(@NonNull CharSequence, @NonNull CharSequence); |
| 3771 | method @NonNull public String replaceAll(@NonNull String, @NonNull String); |
| 3772 | method @NonNull public String replaceFirst(@NonNull String, @NonNull String); |
| 3773 | method @NonNull public String[] split(@NonNull String, int); |
| 3774 | method @NonNull public String[] split(@NonNull String); |
| 3775 | method public boolean startsWith(@NonNull String, int); |
| 3776 | method public boolean startsWith(@NonNull String); |
| 3777 | method @NonNull public CharSequence subSequence(int, int); |
| 3778 | method @NonNull public String substring(int); |
| 3779 | method @NonNull public String substring(int, int); |
| 3780 | method public char[] toCharArray(); |
| 3781 | method @NonNull public String toLowerCase(@NonNull java.util.Locale); |
| 3782 | method @NonNull public String toLowerCase(); |
| 3783 | method @NonNull public String toUpperCase(@NonNull java.util.Locale); |
| 3784 | method @NonNull public String toUpperCase(); |
| 3785 | method @NonNull public String trim(); |
| 3786 | method @NonNull public static String valueOf(@Nullable Object); |
| 3787 | method @NonNull public static String valueOf(char[]); |
| 3788 | method @NonNull public static String valueOf(char[], int, int); |
| 3789 | method @NonNull public static String valueOf(boolean); |
| 3790 | method @NonNull public static String valueOf(char); |
| 3791 | method @NonNull public static String valueOf(int); |
| 3792 | method @NonNull public static String valueOf(long); |
| 3793 | method @NonNull public static String valueOf(float); |
| 3794 | method @NonNull public static String valueOf(double); |
| 3795 | field public static final java.util.Comparator<java.lang.String> CASE_INSENSITIVE_ORDER; |
| 3796 | } |
| 3797 | |
| 3798 | public final class StringBuffer implements java.lang.Appendable java.lang.CharSequence java.io.Serializable { |
| 3799 | ctor public StringBuffer(); |
| 3800 | ctor public StringBuffer(int); |
| 3801 | ctor public StringBuffer(@NonNull String); |
| 3802 | ctor public StringBuffer(@NonNull CharSequence); |
| 3803 | method @NonNull public StringBuffer append(@Nullable Object); |
| 3804 | method @NonNull public StringBuffer append(@Nullable String); |
| 3805 | method @NonNull public StringBuffer append(@Nullable StringBuffer); |
| 3806 | method @NonNull public StringBuffer append(@Nullable CharSequence); |
| 3807 | method @NonNull public StringBuffer append(@Nullable CharSequence, int, int); |
| 3808 | method @NonNull public StringBuffer append(char[]); |
| 3809 | method @NonNull public StringBuffer append(char[], int, int); |
| 3810 | method @NonNull public StringBuffer append(boolean); |
| 3811 | method @NonNull public StringBuffer append(char); |
| 3812 | method @NonNull public StringBuffer append(int); |
| 3813 | method @NonNull public StringBuffer append(long); |
| 3814 | method @NonNull public StringBuffer append(float); |
| 3815 | method @NonNull public StringBuffer append(double); |
| 3816 | method @NonNull public StringBuffer appendCodePoint(int); |
| 3817 | method public int capacity(); |
| 3818 | method public char charAt(int); |
| 3819 | method public int codePointAt(int); |
| 3820 | method public int codePointBefore(int); |
| 3821 | method public int codePointCount(int, int); |
| 3822 | method @NonNull public StringBuffer delete(int, int); |
| 3823 | method @NonNull public StringBuffer deleteCharAt(int); |
| 3824 | method public void ensureCapacity(int); |
| 3825 | method public void getChars(int, int, char[], int); |
| 3826 | method public int indexOf(@NonNull String); |
| 3827 | method public int indexOf(@NonNull String, int); |
| 3828 | method @NonNull public StringBuffer insert(int, char[], int, int); |
| 3829 | method @NonNull public StringBuffer insert(int, @Nullable Object); |
| 3830 | method @NonNull public StringBuffer insert(int, @Nullable String); |
| 3831 | method @NonNull public StringBuffer insert(int, char[]); |
| 3832 | method @NonNull public StringBuffer insert(int, @Nullable CharSequence); |
| 3833 | method @NonNull public StringBuffer insert(int, @Nullable CharSequence, int, int); |
| 3834 | method @NonNull public StringBuffer insert(int, boolean); |
| 3835 | method @NonNull public StringBuffer insert(int, char); |
| 3836 | method @NonNull public StringBuffer insert(int, int); |
| 3837 | method @NonNull public StringBuffer insert(int, long); |
| 3838 | method @NonNull public StringBuffer insert(int, float); |
| 3839 | method @NonNull public StringBuffer insert(int, double); |
| 3840 | method public int lastIndexOf(@NonNull String); |
| 3841 | method public int lastIndexOf(@NonNull String, int); |
| 3842 | method public int length(); |
| 3843 | method public int offsetByCodePoints(int, int); |
| 3844 | method @NonNull public StringBuffer replace(int, int, @NonNull String); |
| 3845 | method @NonNull public StringBuffer reverse(); |
| 3846 | method public void setCharAt(int, char); |
| 3847 | method public void setLength(int); |
| 3848 | method @NonNull public CharSequence subSequence(int, int); |
| 3849 | method @NonNull public String substring(int); |
| 3850 | method @NonNull public String substring(int, int); |
| 3851 | method public void trimToSize(); |
| 3852 | } |
| 3853 | |
| 3854 | public final class StringBuilder implements java.lang.Appendable java.lang.CharSequence java.io.Serializable { |
| 3855 | ctor public StringBuilder(); |
| 3856 | ctor public StringBuilder(int); |
| 3857 | ctor public StringBuilder(@NonNull String); |
| 3858 | ctor public StringBuilder(@NonNull CharSequence); |
| 3859 | method @NonNull public StringBuilder append(@Nullable Object); |
| 3860 | method @NonNull public StringBuilder append(@Nullable String); |
| 3861 | method @NonNull public StringBuilder append(@Nullable StringBuffer); |
| 3862 | method @NonNull public StringBuilder append(@Nullable CharSequence); |
| 3863 | method @NonNull public StringBuilder append(@Nullable CharSequence, int, int); |
| 3864 | method @NonNull public StringBuilder append(char[]); |
| 3865 | method @NonNull public StringBuilder append(char[], int, int); |
| 3866 | method @NonNull public StringBuilder append(boolean); |
| 3867 | method @NonNull public StringBuilder append(char); |
| 3868 | method @NonNull public StringBuilder append(int); |
| 3869 | method @NonNull public StringBuilder append(long); |
| 3870 | method @NonNull public StringBuilder append(float); |
| 3871 | method @NonNull public StringBuilder append(double); |
| 3872 | method @NonNull public StringBuilder appendCodePoint(int); |
| 3873 | method public int capacity(); |
| 3874 | method public char charAt(int); |
| 3875 | method public int codePointAt(int); |
| 3876 | method public int codePointBefore(int); |
| 3877 | method public int codePointCount(int, int); |
| 3878 | method @NonNull public StringBuilder delete(int, int); |
| 3879 | method @NonNull public StringBuilder deleteCharAt(int); |
| 3880 | method public void ensureCapacity(int); |
| 3881 | method public void getChars(int, int, char[], int); |
| 3882 | method public int indexOf(@NonNull String); |
| 3883 | method public int indexOf(@NonNull String, int); |
| 3884 | method @NonNull public StringBuilder insert(int, char[], int, int); |
| 3885 | method @NonNull public StringBuilder insert(int, @Nullable Object); |
| 3886 | method @NonNull public StringBuilder insert(int, @Nullable String); |
| 3887 | method @NonNull public StringBuilder insert(int, char[]); |
| 3888 | method @NonNull public StringBuilder insert(int, @Nullable CharSequence); |
| 3889 | method @NonNull public StringBuilder insert(int, @Nullable CharSequence, int, int); |
| 3890 | method @NonNull public StringBuilder insert(int, boolean); |
| 3891 | method @NonNull public StringBuilder insert(int, char); |
| 3892 | method @NonNull public StringBuilder insert(int, int); |
| 3893 | method @NonNull public StringBuilder insert(int, long); |
| 3894 | method @NonNull public StringBuilder insert(int, float); |
| 3895 | method @NonNull public StringBuilder insert(int, double); |
| 3896 | method public int lastIndexOf(@NonNull String); |
| 3897 | method public int lastIndexOf(@NonNull String, int); |
| 3898 | method public int length(); |
| 3899 | method public int offsetByCodePoints(int, int); |
| 3900 | method @NonNull public StringBuilder replace(int, int, @NonNull String); |
| 3901 | method @NonNull public StringBuilder reverse(); |
| 3902 | method public void setCharAt(int, char); |
| 3903 | method public void setLength(int); |
| 3904 | method @NonNull public CharSequence subSequence(int, int); |
| 3905 | method @NonNull public String substring(int); |
| 3906 | method @NonNull public String substring(int, int); |
| 3907 | method public void trimToSize(); |
| 3908 | } |
| 3909 | |
| 3910 | public class StringIndexOutOfBoundsException extends java.lang.IndexOutOfBoundsException { |
| 3911 | ctor public StringIndexOutOfBoundsException(); |
| 3912 | ctor public StringIndexOutOfBoundsException(String); |
| 3913 | ctor public StringIndexOutOfBoundsException(int); |
| 3914 | } |
| 3915 | |
| 3916 | @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE, java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.PARAMETER, java.lang.annotation.ElementType.CONSTRUCTOR, java.lang.annotation.ElementType.LOCAL_VARIABLE}) public @interface SuppressWarnings { |
| 3917 | method public abstract String[] value(); |
| 3918 | } |
| 3919 | |
| 3920 | public final class System { |
| 3921 | method public static void arraycopy(@NonNull Object, int, @NonNull Object, int, int); |
| 3922 | method @Nullable public static String clearProperty(@NonNull String); |
| 3923 | method @Nullable public static java.io.Console console(); |
| 3924 | method public static long currentTimeMillis(); |
| 3925 | method public static void exit(int); |
| 3926 | method public static void gc(); |
| 3927 | method @NonNull public static java.util.Properties getProperties(); |
| 3928 | method @Nullable public static String getProperty(@NonNull String); |
| 3929 | method @Nullable public static String getProperty(@NonNull String, @Nullable String); |
| 3930 | method @Nullable public static SecurityManager getSecurityManager(); |
| 3931 | method @Nullable public static String getenv(@NonNull String); |
| 3932 | method @NonNull public static java.util.Map<java.lang.String,java.lang.String> getenv(); |
| 3933 | method public static int identityHashCode(@Nullable Object); |
| 3934 | method @Nullable public static java.nio.channels.Channel inheritedChannel() throws java.io.IOException; |
| 3935 | method @NonNull public static String lineSeparator(); |
| 3936 | method public static void load(@NonNull String); |
| 3937 | method public static void loadLibrary(@NonNull String); |
| 3938 | method @NonNull public static String mapLibraryName(@NonNull String); |
| 3939 | method public static long nanoTime(); |
| 3940 | method public static void runFinalization(); |
| 3941 | method @Deprecated public static void runFinalizersOnExit(boolean); |
| 3942 | method public static void setErr(@Nullable java.io.PrintStream); |
| 3943 | method public static void setIn(@Nullable java.io.InputStream); |
| 3944 | method public static void setOut(@Nullable java.io.PrintStream); |
| 3945 | method public static void setProperties(@Nullable java.util.Properties); |
| 3946 | method @Nullable public static String setProperty(@NonNull String, @Nullable String); |
| 3947 | method public static void setSecurityManager(@Nullable SecurityManager); |
| 3948 | field public static final java.io.PrintStream err; |
| 3949 | field public static final java.io.InputStream in; |
| 3950 | field public static final java.io.PrintStream out; |
| 3951 | } |
| 3952 | |
| 3953 | public class Thread implements java.lang.Runnable { |
| 3954 | ctor public Thread(); |
| 3955 | ctor public Thread(@Nullable Runnable); |
| 3956 | ctor public Thread(@Nullable ThreadGroup, @Nullable Runnable); |
| 3957 | ctor public Thread(@NonNull String); |
| 3958 | ctor public Thread(@Nullable ThreadGroup, @NonNull String); |
| 3959 | ctor public Thread(@Nullable Runnable, @NonNull String); |
| 3960 | ctor public Thread(@Nullable ThreadGroup, @Nullable Runnable, @NonNull String); |
| 3961 | ctor public Thread(@Nullable ThreadGroup, @Nullable Runnable, @NonNull String, long); |
| 3962 | method public static int activeCount(); |
| 3963 | method public final void checkAccess(); |
| 3964 | method @Deprecated public int countStackFrames(); |
| 3965 | method @NonNull public static Thread currentThread(); |
| 3966 | method @Deprecated public void destroy(); |
| 3967 | method public static void dumpStack(); |
| 3968 | method public static int enumerate(Thread[]); |
| 3969 | method @NonNull public static java.util.Map<java.lang.Thread,java.lang.StackTraceElement[]> getAllStackTraces(); |
| 3970 | method @Nullable public ClassLoader getContextClassLoader(); |
| 3971 | method @Nullable public static java.lang.Thread.UncaughtExceptionHandler getDefaultUncaughtExceptionHandler(); |
| 3972 | method public long getId(); |
| 3973 | method @NonNull public final String getName(); |
| 3974 | method public final int getPriority(); |
| 3975 | method @NonNull public StackTraceElement[] getStackTrace(); |
| 3976 | method @NonNull public java.lang.Thread.State getState(); |
| 3977 | method @Nullable public final ThreadGroup getThreadGroup(); |
| 3978 | method @Nullable public java.lang.Thread.UncaughtExceptionHandler getUncaughtExceptionHandler(); |
| 3979 | method public static boolean holdsLock(@NonNull Object); |
| 3980 | method public void interrupt(); |
| 3981 | method public static boolean interrupted(); |
| 3982 | method public final boolean isAlive(); |
| 3983 | method public final boolean isDaemon(); |
| 3984 | method public boolean isInterrupted(); |
| 3985 | method public final void join(long) throws java.lang.InterruptedException; |
| 3986 | method public final void join(long, int) throws java.lang.InterruptedException; |
| 3987 | method public final void join() throws java.lang.InterruptedException; |
| 3988 | method @Deprecated public final void resume(); |
| 3989 | method public void run(); |
| 3990 | method public void setContextClassLoader(@Nullable ClassLoader); |
| 3991 | method public final void setDaemon(boolean); |
| 3992 | method public static void setDefaultUncaughtExceptionHandler(@Nullable java.lang.Thread.UncaughtExceptionHandler); |
| 3993 | method public final void setName(@NonNull String); |
| 3994 | method public final void setPriority(int); |
| 3995 | method public void setUncaughtExceptionHandler(@Nullable java.lang.Thread.UncaughtExceptionHandler); |
| 3996 | method public static void sleep(long) throws java.lang.InterruptedException; |
| 3997 | method public static void sleep(long, int) throws java.lang.InterruptedException; |
| 3998 | method public void start(); |
| 3999 | method @Deprecated public final void stop(); |
| 4000 | method @Deprecated public final void stop(@Nullable Throwable); |
| 4001 | method @Deprecated public final void suspend(); |
| 4002 | method public static void yield(); |
| 4003 | field public static final int MAX_PRIORITY = 10; // 0xa |
| 4004 | field public static final int MIN_PRIORITY = 1; // 0x1 |
| 4005 | field public static final int NORM_PRIORITY = 5; // 0x5 |
| 4006 | } |
| 4007 | |
| 4008 | public enum Thread.State { |
| 4009 | enum_constant public static final java.lang.Thread.State BLOCKED; |
| 4010 | enum_constant public static final java.lang.Thread.State NEW; |
| 4011 | enum_constant public static final java.lang.Thread.State RUNNABLE; |
| 4012 | enum_constant public static final java.lang.Thread.State TERMINATED; |
| 4013 | enum_constant public static final java.lang.Thread.State TIMED_WAITING; |
| 4014 | enum_constant public static final java.lang.Thread.State WAITING; |
| 4015 | } |
| 4016 | |
| 4017 | @java.lang.FunctionalInterface public static interface Thread.UncaughtExceptionHandler { |
| 4018 | method public void uncaughtException(@NonNull Thread, @NonNull Throwable); |
| 4019 | } |
| 4020 | |
| 4021 | public class ThreadDeath extends java.lang.Error { |
| 4022 | ctor public ThreadDeath(); |
| 4023 | } |
| 4024 | |
| 4025 | public class ThreadGroup implements java.lang.Thread.UncaughtExceptionHandler { |
| 4026 | ctor public ThreadGroup(String); |
| 4027 | ctor public ThreadGroup(ThreadGroup, String); |
| 4028 | method public int activeCount(); |
| 4029 | method public int activeGroupCount(); |
| 4030 | method @Deprecated public boolean allowThreadSuspension(boolean); |
| 4031 | method public final void checkAccess(); |
| 4032 | method public final void destroy(); |
| 4033 | method public int enumerate(Thread[]); |
| 4034 | method public int enumerate(Thread[], boolean); |
| 4035 | method public int enumerate(ThreadGroup[]); |
| 4036 | method public int enumerate(ThreadGroup[], boolean); |
| 4037 | method public final int getMaxPriority(); |
| 4038 | method public final String getName(); |
| 4039 | method public final ThreadGroup getParent(); |
| 4040 | method public final void interrupt(); |
| 4041 | method public final boolean isDaemon(); |
| 4042 | method public boolean isDestroyed(); |
| 4043 | method public void list(); |
| 4044 | method public final boolean parentOf(ThreadGroup); |
| 4045 | method @Deprecated public final void resume(); |
| 4046 | method public final void setDaemon(boolean); |
| 4047 | method public final void setMaxPriority(int); |
| 4048 | method @Deprecated public final void stop(); |
| 4049 | method @Deprecated public final void suspend(); |
| 4050 | method public void uncaughtException(Thread, Throwable); |
| 4051 | } |
| 4052 | |
| 4053 | public class ThreadLocal<T> { |
| 4054 | ctor public ThreadLocal(); |
| 4055 | method @Nullable public T get(); |
| 4056 | method @Nullable protected T initialValue(); |
| 4057 | method public void remove(); |
| 4058 | method public void set(T); |
| 4059 | method @NonNull public static <S> ThreadLocal<S> withInitial(@NonNull java.util.function.Supplier<? extends S>); |
| 4060 | } |
| 4061 | |
| 4062 | public class Throwable implements java.io.Serializable { |
| 4063 | ctor public Throwable(); |
| 4064 | ctor public Throwable(@Nullable String); |
| 4065 | ctor public Throwable(@Nullable String, @Nullable Throwable); |
| 4066 | ctor public Throwable(@Nullable Throwable); |
| 4067 | ctor protected Throwable(@Nullable String, @Nullable Throwable, boolean, boolean); |
| 4068 | method public final void addSuppressed(@NonNull Throwable); |
| 4069 | method @NonNull public Throwable fillInStackTrace(); |
| 4070 | method @Nullable public Throwable getCause(); |
| 4071 | method @Nullable public String getLocalizedMessage(); |
| 4072 | method @Nullable public String getMessage(); |
| 4073 | method @NonNull public StackTraceElement[] getStackTrace(); |
| 4074 | method @NonNull public final Throwable[] getSuppressed(); |
| 4075 | method @NonNull public Throwable initCause(@Nullable Throwable); |
| 4076 | method public void printStackTrace(); |
| 4077 | method public void printStackTrace(@NonNull java.io.PrintStream); |
| 4078 | method public void printStackTrace(@NonNull java.io.PrintWriter); |
| 4079 | method public void setStackTrace(@NonNull StackTraceElement[]); |
| 4080 | } |
| 4081 | |
| 4082 | public class TypeNotPresentException extends java.lang.RuntimeException { |
| 4083 | ctor public TypeNotPresentException(String, Throwable); |
| 4084 | method public String typeName(); |
| 4085 | } |
| 4086 | |
| 4087 | public class UnknownError extends java.lang.VirtualMachineError { |
| 4088 | ctor public UnknownError(); |
| 4089 | ctor public UnknownError(String); |
| 4090 | } |
| 4091 | |
| 4092 | public class UnsatisfiedLinkError extends java.lang.LinkageError { |
| 4093 | ctor public UnsatisfiedLinkError(); |
| 4094 | ctor public UnsatisfiedLinkError(String); |
| 4095 | } |
| 4096 | |
| 4097 | public class UnsupportedClassVersionError extends java.lang.ClassFormatError { |
| 4098 | ctor public UnsupportedClassVersionError(); |
| 4099 | ctor public UnsupportedClassVersionError(String); |
| 4100 | } |
| 4101 | |
| 4102 | public class UnsupportedOperationException extends java.lang.RuntimeException { |
| 4103 | ctor public UnsupportedOperationException(); |
| 4104 | ctor public UnsupportedOperationException(String); |
| 4105 | ctor public UnsupportedOperationException(String, Throwable); |
| 4106 | ctor public UnsupportedOperationException(Throwable); |
| 4107 | } |
| 4108 | |
| 4109 | public class VerifyError extends java.lang.LinkageError { |
| 4110 | ctor public VerifyError(); |
| 4111 | ctor public VerifyError(String); |
| 4112 | } |
| 4113 | |
| 4114 | public abstract class VirtualMachineError extends java.lang.Error { |
| 4115 | ctor public VirtualMachineError(); |
| 4116 | ctor public VirtualMachineError(String); |
| 4117 | ctor public VirtualMachineError(String, Throwable); |
| 4118 | ctor public VirtualMachineError(Throwable); |
| 4119 | } |
| 4120 | |
| 4121 | public final class Void { |
| 4122 | field public static final Class<java.lang.Void> TYPE; |
| 4123 | } |
| 4124 | |
| 4125 | } |
| 4126 | |
| 4127 | package java.lang.annotation { |
| 4128 | |
| 4129 | public interface Annotation { |
| 4130 | method public Class<? extends java.lang.annotation.Annotation> annotationType(); |
| 4131 | method public boolean equals(Object); |
| 4132 | method public int hashCode(); |
| 4133 | method public String toString(); |
| 4134 | } |
| 4135 | |
| 4136 | public class AnnotationFormatError extends java.lang.Error { |
| 4137 | ctor public AnnotationFormatError(String); |
| 4138 | ctor public AnnotationFormatError(String, Throwable); |
| 4139 | ctor public AnnotationFormatError(Throwable); |
| 4140 | } |
| 4141 | |
| 4142 | public class AnnotationTypeMismatchException extends java.lang.RuntimeException { |
| 4143 | ctor public AnnotationTypeMismatchException(java.lang.reflect.Method, String); |
| 4144 | method public java.lang.reflect.Method element(); |
| 4145 | method public String foundType(); |
| 4146 | } |
| 4147 | |
| 4148 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.ANNOTATION_TYPE) public @interface Documented { |
| 4149 | } |
| 4150 | |
| 4151 | public enum ElementType { |
| 4152 | enum_constant public static final java.lang.annotation.ElementType ANNOTATION_TYPE; |
| 4153 | enum_constant public static final java.lang.annotation.ElementType CONSTRUCTOR; |
| 4154 | enum_constant public static final java.lang.annotation.ElementType FIELD; |
| 4155 | enum_constant public static final java.lang.annotation.ElementType LOCAL_VARIABLE; |
| 4156 | enum_constant public static final java.lang.annotation.ElementType METHOD; |
| 4157 | enum_constant public static final java.lang.annotation.ElementType PACKAGE; |
| 4158 | enum_constant public static final java.lang.annotation.ElementType PARAMETER; |
| 4159 | enum_constant public static final java.lang.annotation.ElementType TYPE; |
| 4160 | enum_constant public static final java.lang.annotation.ElementType TYPE_PARAMETER; |
| 4161 | enum_constant public static final java.lang.annotation.ElementType TYPE_USE; |
| 4162 | } |
| 4163 | |
| 4164 | public class IncompleteAnnotationException extends java.lang.RuntimeException { |
| 4165 | ctor public IncompleteAnnotationException(Class<? extends java.lang.annotation.Annotation>, String); |
| 4166 | method public Class<? extends java.lang.annotation.Annotation> annotationType(); |
| 4167 | method public String elementName(); |
| 4168 | } |
| 4169 | |
| 4170 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.ANNOTATION_TYPE) public @interface Inherited { |
| 4171 | } |
| 4172 | |
| 4173 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE) @java.lang.annotation.Target(java.lang.annotation.ElementType.FIELD) public @interface Native { |
| 4174 | } |
| 4175 | |
| 4176 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.ANNOTATION_TYPE) public @interface Repeatable { |
| 4177 | method public abstract Class<? extends java.lang.annotation.Annotation> value(); |
| 4178 | } |
| 4179 | |
| 4180 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.ANNOTATION_TYPE) public @interface Retention { |
| 4181 | method public abstract java.lang.annotation.RetentionPolicy value(); |
| 4182 | } |
| 4183 | |
| 4184 | public enum RetentionPolicy { |
| 4185 | enum_constant public static final java.lang.annotation.RetentionPolicy CLASS; |
| 4186 | enum_constant public static final java.lang.annotation.RetentionPolicy RUNTIME; |
| 4187 | enum_constant public static final java.lang.annotation.RetentionPolicy SOURCE; |
| 4188 | } |
| 4189 | |
| 4190 | @java.lang.annotation.Documented @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.ANNOTATION_TYPE) public @interface Target { |
| 4191 | method public abstract java.lang.annotation.ElementType[] value(); |
| 4192 | } |
| 4193 | |
| 4194 | } |
| 4195 | |
| 4196 | package java.lang.invoke { |
| 4197 | |
| 4198 | public abstract class CallSite { |
| 4199 | method public abstract java.lang.invoke.MethodHandle dynamicInvoker(); |
| 4200 | method public abstract java.lang.invoke.MethodHandle getTarget(); |
| 4201 | method public abstract void setTarget(java.lang.invoke.MethodHandle); |
| 4202 | method public java.lang.invoke.MethodType type(); |
| 4203 | } |
| 4204 | |
| 4205 | public class ConstantCallSite extends java.lang.invoke.CallSite { |
| 4206 | ctor public ConstantCallSite(java.lang.invoke.MethodHandle); |
| 4207 | ctor protected ConstantCallSite(java.lang.invoke.MethodType, java.lang.invoke.MethodHandle) throws java.lang.Throwable; |
| 4208 | method public final java.lang.invoke.MethodHandle dynamicInvoker(); |
| 4209 | method public final java.lang.invoke.MethodHandle getTarget(); |
| 4210 | method public final void setTarget(java.lang.invoke.MethodHandle); |
| 4211 | } |
| 4212 | |
| 4213 | public class LambdaConversionException extends java.lang.Exception { |
| 4214 | ctor public LambdaConversionException(); |
| 4215 | ctor public LambdaConversionException(String); |
| 4216 | ctor public LambdaConversionException(String, Throwable); |
| 4217 | ctor public LambdaConversionException(Throwable); |
| 4218 | ctor public LambdaConversionException(String, Throwable, boolean, boolean); |
| 4219 | } |
| 4220 | |
| 4221 | public abstract class MethodHandle { |
| 4222 | method public java.lang.invoke.MethodHandle asCollector(Class<?>, int); |
| 4223 | method public java.lang.invoke.MethodHandle asFixedArity(); |
| 4224 | method public java.lang.invoke.MethodHandle asSpreader(Class<?>, int); |
| 4225 | method public java.lang.invoke.MethodHandle asType(java.lang.invoke.MethodType); |
| 4226 | method public java.lang.invoke.MethodHandle asVarargsCollector(Class<?>); |
| 4227 | method public java.lang.invoke.MethodHandle bindTo(Object); |
| 4228 | method public final Object invoke(java.lang.Object...) throws java.lang.Throwable; |
| 4229 | method public final Object invokeExact(java.lang.Object...) throws java.lang.Throwable; |
| 4230 | method public Object invokeWithArguments(java.lang.Object...) throws java.lang.Throwable; |
| 4231 | method public Object invokeWithArguments(java.util.List<?>) throws java.lang.Throwable; |
| 4232 | method public boolean isVarargsCollector(); |
| 4233 | method public java.lang.invoke.MethodType type(); |
| 4234 | } |
| 4235 | |
| 4236 | public interface MethodHandleInfo { |
| 4237 | method public Class<?> getDeclaringClass(); |
| 4238 | method public java.lang.invoke.MethodType getMethodType(); |
| 4239 | method public int getModifiers(); |
| 4240 | method public String getName(); |
| 4241 | method public int getReferenceKind(); |
| 4242 | method public default boolean isVarArgs(); |
| 4243 | method @Deprecated public static boolean refKindIsField(int); |
| 4244 | method @Deprecated public static boolean refKindIsValid(int); |
| 4245 | method @Deprecated public static String refKindName(int); |
| 4246 | method public static String referenceKindToString(int); |
| 4247 | method public <T extends java.lang.reflect.Member> T reflectAs(Class<T>, java.lang.invoke.MethodHandles.Lookup); |
| 4248 | method public static String toString(int, Class<?>, String, java.lang.invoke.MethodType); |
| 4249 | field public static final int REF_getField = 1; // 0x1 |
| 4250 | field public static final int REF_getStatic = 2; // 0x2 |
| 4251 | field public static final int REF_invokeInterface = 9; // 0x9 |
| 4252 | field public static final int REF_invokeSpecial = 7; // 0x7 |
| 4253 | field public static final int REF_invokeStatic = 6; // 0x6 |
| 4254 | field public static final int REF_invokeVirtual = 5; // 0x5 |
| 4255 | field public static final int REF_newInvokeSpecial = 8; // 0x8 |
| 4256 | field public static final int REF_putField = 3; // 0x3 |
| 4257 | field public static final int REF_putStatic = 4; // 0x4 |
| 4258 | } |
| 4259 | |
| 4260 | public class MethodHandles { |
| 4261 | method public static java.lang.invoke.MethodHandle arrayElementGetter(Class<?>) throws java.lang.IllegalArgumentException; |
| 4262 | method public static java.lang.invoke.MethodHandle arrayElementSetter(Class<?>) throws java.lang.IllegalArgumentException; |
| 4263 | method public static java.lang.invoke.MethodHandle catchException(java.lang.invoke.MethodHandle, Class<? extends java.lang.Throwable>, java.lang.invoke.MethodHandle); |
| 4264 | method public static java.lang.invoke.MethodHandle collectArguments(java.lang.invoke.MethodHandle, int, java.lang.invoke.MethodHandle); |
| 4265 | method public static java.lang.invoke.MethodHandle constant(Class<?>, Object); |
| 4266 | method public static java.lang.invoke.MethodHandle dropArguments(java.lang.invoke.MethodHandle, int, java.util.List<java.lang.Class<?>>); |
| 4267 | method public static java.lang.invoke.MethodHandle dropArguments(java.lang.invoke.MethodHandle, int, Class<?>...); |
| 4268 | method public static java.lang.invoke.MethodHandle exactInvoker(java.lang.invoke.MethodType); |
| 4269 | method public static java.lang.invoke.MethodHandle explicitCastArguments(java.lang.invoke.MethodHandle, java.lang.invoke.MethodType); |
| 4270 | method public static java.lang.invoke.MethodHandle filterArguments(java.lang.invoke.MethodHandle, int, java.lang.invoke.MethodHandle...); |
| 4271 | method public static java.lang.invoke.MethodHandle filterReturnValue(java.lang.invoke.MethodHandle, java.lang.invoke.MethodHandle); |
| 4272 | method public static java.lang.invoke.MethodHandle foldArguments(java.lang.invoke.MethodHandle, java.lang.invoke.MethodHandle); |
| 4273 | method public static java.lang.invoke.MethodHandle guardWithTest(java.lang.invoke.MethodHandle, java.lang.invoke.MethodHandle, java.lang.invoke.MethodHandle); |
| 4274 | method public static java.lang.invoke.MethodHandle identity(Class<?>); |
| 4275 | method public static java.lang.invoke.MethodHandle insertArguments(java.lang.invoke.MethodHandle, int, java.lang.Object...); |
| 4276 | method public static java.lang.invoke.MethodHandle invoker(java.lang.invoke.MethodType); |
| 4277 | method public static java.lang.invoke.MethodHandles.Lookup lookup(); |
| 4278 | method public static java.lang.invoke.MethodHandle permuteArguments(java.lang.invoke.MethodHandle, java.lang.invoke.MethodType, int...); |
| 4279 | method public static java.lang.invoke.MethodHandles.Lookup publicLookup(); |
| 4280 | method public static <T extends java.lang.reflect.Member> T reflectAs(Class<T>, java.lang.invoke.MethodHandle); |
| 4281 | method public static java.lang.invoke.MethodHandle spreadInvoker(java.lang.invoke.MethodType, int); |
| 4282 | method public static java.lang.invoke.MethodHandle throwException(Class<?>, Class<? extends java.lang.Throwable>); |
| 4283 | } |
| 4284 | |
| 4285 | public static final class MethodHandles.Lookup { |
| 4286 | method public java.lang.invoke.MethodHandle bind(Object, String, java.lang.invoke.MethodType) throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException; |
| 4287 | method public java.lang.invoke.MethodHandle findConstructor(Class<?>, java.lang.invoke.MethodType) throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException; |
| 4288 | method public java.lang.invoke.MethodHandle findGetter(Class<?>, String, Class<?>) throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException; |
| 4289 | method public java.lang.invoke.MethodHandle findSetter(Class<?>, String, Class<?>) throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException; |
| 4290 | method public java.lang.invoke.MethodHandle findSpecial(Class<?>, String, java.lang.invoke.MethodType, Class<?>) throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException; |
| 4291 | method public java.lang.invoke.MethodHandle findStatic(Class<?>, String, java.lang.invoke.MethodType) throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException; |
| 4292 | method public java.lang.invoke.MethodHandle findStaticGetter(Class<?>, String, Class<?>) throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException; |
| 4293 | method public java.lang.invoke.MethodHandle findStaticSetter(Class<?>, String, Class<?>) throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException; |
| 4294 | method public java.lang.invoke.MethodHandle findVirtual(Class<?>, String, java.lang.invoke.MethodType) throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException; |
| 4295 | method public java.lang.invoke.MethodHandles.Lookup in(Class<?>); |
| 4296 | method public Class<?> lookupClass(); |
| 4297 | method public int lookupModes(); |
| 4298 | method public java.lang.invoke.MethodHandleInfo revealDirect(java.lang.invoke.MethodHandle); |
| 4299 | method public java.lang.invoke.MethodHandle unreflect(java.lang.reflect.Method) throws java.lang.IllegalAccessException; |
| 4300 | method public java.lang.invoke.MethodHandle unreflectConstructor(java.lang.reflect.Constructor<?>) throws java.lang.IllegalAccessException; |
| 4301 | method public java.lang.invoke.MethodHandle unreflectGetter(java.lang.reflect.Field) throws java.lang.IllegalAccessException; |
| 4302 | method public java.lang.invoke.MethodHandle unreflectSetter(java.lang.reflect.Field) throws java.lang.IllegalAccessException; |
| 4303 | method public java.lang.invoke.MethodHandle unreflectSpecial(java.lang.reflect.Method, Class<?>) throws java.lang.IllegalAccessException; |
| 4304 | field public static final int PACKAGE = 8; // 0x8 |
| 4305 | field public static final int PRIVATE = 2; // 0x2 |
| 4306 | field public static final int PROTECTED = 4; // 0x4 |
| 4307 | field public static final int PUBLIC = 1; // 0x1 |
| 4308 | } |
| 4309 | |
| 4310 | public final class MethodType implements java.io.Serializable { |
| 4311 | method public java.lang.invoke.MethodType appendParameterTypes(Class<?>...); |
| 4312 | method public java.lang.invoke.MethodType appendParameterTypes(java.util.List<java.lang.Class<?>>); |
| 4313 | method public java.lang.invoke.MethodType changeParameterType(int, Class<?>); |
| 4314 | method public java.lang.invoke.MethodType changeReturnType(Class<?>); |
| 4315 | method public java.lang.invoke.MethodType dropParameterTypes(int, int); |
| 4316 | method public java.lang.invoke.MethodType erase(); |
| 4317 | method public static java.lang.invoke.MethodType fromMethodDescriptorString(String, ClassLoader) throws java.lang.IllegalArgumentException, java.lang.TypeNotPresentException; |
| 4318 | method public java.lang.invoke.MethodType generic(); |
| 4319 | method public static java.lang.invoke.MethodType genericMethodType(int, boolean); |
| 4320 | method public static java.lang.invoke.MethodType genericMethodType(int); |
| 4321 | method public boolean hasPrimitives(); |
| 4322 | method public boolean hasWrappers(); |
| 4323 | method public java.lang.invoke.MethodType insertParameterTypes(int, Class<?>...); |
| 4324 | method public java.lang.invoke.MethodType insertParameterTypes(int, java.util.List<java.lang.Class<?>>); |
| 4325 | method public static java.lang.invoke.MethodType methodType(Class<?>, Class<?>[]); |
| 4326 | method public static java.lang.invoke.MethodType methodType(Class<?>, java.util.List<java.lang.Class<?>>); |
| 4327 | method public static java.lang.invoke.MethodType methodType(Class<?>, Class<?>, Class<?>...); |
| 4328 | method public static java.lang.invoke.MethodType methodType(Class<?>); |
| 4329 | method public static java.lang.invoke.MethodType methodType(Class<?>, Class<?>); |
| 4330 | method public static java.lang.invoke.MethodType methodType(Class<?>, java.lang.invoke.MethodType); |
| 4331 | method public Class<?>[] parameterArray(); |
| 4332 | method public int parameterCount(); |
| 4333 | method public java.util.List<java.lang.Class<?>> parameterList(); |
| 4334 | method public Class<?> parameterType(int); |
| 4335 | method public Class<?> returnType(); |
| 4336 | method public String toMethodDescriptorString(); |
| 4337 | method public java.lang.invoke.MethodType unwrap(); |
| 4338 | method public java.lang.invoke.MethodType wrap(); |
| 4339 | } |
| 4340 | |
| 4341 | public class MutableCallSite extends java.lang.invoke.CallSite { |
| 4342 | ctor public MutableCallSite(java.lang.invoke.MethodType); |
| 4343 | ctor public MutableCallSite(java.lang.invoke.MethodHandle); |
| 4344 | method public final java.lang.invoke.MethodHandle dynamicInvoker(); |
| 4345 | method public final java.lang.invoke.MethodHandle getTarget(); |
| 4346 | method public void setTarget(java.lang.invoke.MethodHandle); |
| 4347 | } |
| 4348 | |
| 4349 | public class VolatileCallSite extends java.lang.invoke.CallSite { |
| 4350 | ctor public VolatileCallSite(java.lang.invoke.MethodType); |
| 4351 | ctor public VolatileCallSite(java.lang.invoke.MethodHandle); |
| 4352 | method public final java.lang.invoke.MethodHandle dynamicInvoker(); |
| 4353 | method public final java.lang.invoke.MethodHandle getTarget(); |
| 4354 | method public void setTarget(java.lang.invoke.MethodHandle); |
| 4355 | } |
| 4356 | |
| 4357 | public class WrongMethodTypeException extends java.lang.RuntimeException { |
| 4358 | ctor public WrongMethodTypeException(); |
| 4359 | ctor public WrongMethodTypeException(String); |
| 4360 | } |
| 4361 | |
| 4362 | } |
| 4363 | |
| 4364 | package java.lang.ref { |
| 4365 | |
| 4366 | public class PhantomReference<T> extends java.lang.ref.Reference<T> { |
| 4367 | ctor public PhantomReference(T, java.lang.ref.ReferenceQueue<? super T>); |
| 4368 | } |
| 4369 | |
| 4370 | public abstract class Reference<T> { |
| 4371 | method public void clear(); |
| 4372 | method public boolean enqueue(); |
| 4373 | method public T get(); |
| 4374 | method public boolean isEnqueued(); |
| 4375 | method public static void reachabilityFence(Object); |
| 4376 | } |
| 4377 | |
| 4378 | public class ReferenceQueue<T> { |
| 4379 | ctor public ReferenceQueue(); |
| 4380 | method public java.lang.ref.Reference<? extends T> poll(); |
| 4381 | method public java.lang.ref.Reference<? extends T> remove(long) throws java.lang.IllegalArgumentException, java.lang.InterruptedException; |
| 4382 | method public java.lang.ref.Reference<? extends T> remove() throws java.lang.InterruptedException; |
| 4383 | } |
| 4384 | |
| 4385 | public class SoftReference<T> extends java.lang.ref.Reference<T> { |
| 4386 | ctor public SoftReference(T); |
| 4387 | ctor public SoftReference(T, java.lang.ref.ReferenceQueue<? super T>); |
| 4388 | } |
| 4389 | |
| 4390 | public class WeakReference<T> extends java.lang.ref.Reference<T> { |
| 4391 | ctor public WeakReference(T); |
| 4392 | ctor public WeakReference(T, java.lang.ref.ReferenceQueue<? super T>); |
| 4393 | } |
| 4394 | |
| 4395 | } |
| 4396 | |
| 4397 | package java.lang.reflect { |
| 4398 | |
| 4399 | public class AccessibleObject implements java.lang.reflect.AnnotatedElement { |
| 4400 | ctor protected AccessibleObject(); |
| 4401 | method @Nullable public <T extends java.lang.annotation.Annotation> T getAnnotation(@NonNull Class<T>); |
| 4402 | method @NonNull public java.lang.annotation.Annotation[] getAnnotations(); |
| 4403 | method @NonNull public java.lang.annotation.Annotation[] getDeclaredAnnotations(); |
| 4404 | method public boolean isAccessible(); |
| 4405 | method public static void setAccessible(java.lang.reflect.AccessibleObject[], boolean) throws java.lang.SecurityException; |
| 4406 | method public void setAccessible(boolean) throws java.lang.SecurityException; |
| 4407 | } |
| 4408 | |
| 4409 | public interface AnnotatedElement { |
| 4410 | method @Nullable public <T extends java.lang.annotation.Annotation> T getAnnotation(@NonNull Class<T>); |
| 4411 | method @NonNull public java.lang.annotation.Annotation[] getAnnotations(); |
| 4412 | method public default <T extends java.lang.annotation.Annotation> T[] getAnnotationsByType(@NonNull Class<T>); |
| 4413 | method @Nullable public default <T extends java.lang.annotation.Annotation> T getDeclaredAnnotation(@NonNull Class<T>); |
| 4414 | method @NonNull public java.lang.annotation.Annotation[] getDeclaredAnnotations(); |
| 4415 | method public default <T extends java.lang.annotation.Annotation> T[] getDeclaredAnnotationsByType(@NonNull Class<T>); |
| 4416 | method public default boolean isAnnotationPresent(@NonNull Class<? extends java.lang.annotation.Annotation>); |
| 4417 | } |
| 4418 | |
| 4419 | public final class Array { |
| 4420 | method @Nullable public static Object get(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4421 | method public static boolean getBoolean(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4422 | method public static byte getByte(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4423 | method public static char getChar(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4424 | method public static double getDouble(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4425 | method public static float getFloat(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4426 | method public static int getInt(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4427 | method public static int getLength(@NonNull Object); |
| 4428 | method public static long getLong(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4429 | method public static short getShort(@NonNull Object, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4430 | method @NonNull public static Object newInstance(@NonNull Class<?>, int) throws java.lang.NegativeArraySizeException; |
| 4431 | method @NonNull public static Object newInstance(@NonNull Class<?>, int...) throws java.lang.IllegalArgumentException, java.lang.NegativeArraySizeException; |
| 4432 | method public static void set(@NonNull Object, int, @Nullable Object) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4433 | method public static void setBoolean(@NonNull Object, int, boolean); |
| 4434 | method public static void setByte(@NonNull Object, int, byte) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4435 | method public static void setChar(@NonNull Object, int, char) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4436 | method public static void setDouble(@NonNull Object, int, double) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4437 | method public static void setFloat(@NonNull Object, int, float) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4438 | method public static void setInt(@NonNull Object, int, int) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4439 | method public static void setLong(@NonNull Object, int, long) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4440 | method public static void setShort(@NonNull Object, int, short) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException; |
| 4441 | } |
| 4442 | |
| 4443 | public final class Constructor<T> extends java.lang.reflect.Executable { |
| 4444 | method @NonNull public Class<T> getDeclaringClass(); |
| 4445 | method public Class<?>[] getExceptionTypes(); |
| 4446 | method public int getModifiers(); |
| 4447 | method @NonNull public String getName(); |
| 4448 | method public java.lang.annotation.Annotation[][] getParameterAnnotations(); |
| 4449 | method @NonNull public Class<?>[] getParameterTypes(); |
| 4450 | method public java.lang.reflect.TypeVariable<java.lang.reflect.Constructor<T>>[] getTypeParameters(); |
| 4451 | method @NonNull public T newInstance(java.lang.Object...) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException, java.lang.InstantiationException, java.lang.reflect.InvocationTargetException; |
| 4452 | method @NonNull public String toGenericString(); |
| 4453 | } |
| 4454 | |
| 4455 | public abstract class Executable extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member { |
| 4456 | method @NonNull public abstract Class<?>[] getExceptionTypes(); |
| 4457 | method @NonNull public java.lang.reflect.Type[] getGenericExceptionTypes(); |
| 4458 | method @NonNull public java.lang.reflect.Type[] getGenericParameterTypes(); |
| 4459 | method @NonNull public abstract java.lang.annotation.Annotation[][] getParameterAnnotations(); |
| 4460 | method public int getParameterCount(); |
| 4461 | method @NonNull public abstract Class<?>[] getParameterTypes(); |
| 4462 | method @NonNull public java.lang.reflect.Parameter[] getParameters(); |
| 4463 | method public final boolean isAnnotationPresent(@NonNull Class<? extends java.lang.annotation.Annotation>); |
| 4464 | method public boolean isSynthetic(); |
| 4465 | method public boolean isVarArgs(); |
| 4466 | method @NonNull public abstract String toGenericString(); |
| 4467 | } |
| 4468 | |
| 4469 | public final class Field extends java.lang.reflect.AccessibleObject implements java.lang.reflect.Member { |
| 4470 | method @Nullable public Object get(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4471 | method public boolean getBoolean(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4472 | method public byte getByte(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4473 | method public char getChar(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4474 | method @NonNull public Class<?> getDeclaringClass(); |
| 4475 | method public double getDouble(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4476 | method public float getFloat(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4477 | method @NonNull public java.lang.reflect.Type getGenericType(); |
| 4478 | method public int getInt(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4479 | method public long getLong(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4480 | method public int getModifiers(); |
| 4481 | method @NonNull public String getName(); |
| 4482 | method public short getShort(@Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4483 | method @NonNull public Class<?> getType(); |
| 4484 | method public boolean isEnumConstant(); |
| 4485 | method public boolean isSynthetic(); |
| 4486 | method public void set(@Nullable Object, @Nullable Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4487 | method public void setBoolean(@Nullable Object, boolean) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4488 | method public void setByte(@Nullable Object, byte) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4489 | method public void setChar(@Nullable Object, char) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4490 | method public void setDouble(@Nullable Object, double) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4491 | method public void setFloat(@Nullable Object, float) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4492 | method public void setInt(@Nullable Object, int) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4493 | method public void setLong(@Nullable Object, long) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4494 | method public void setShort(@Nullable Object, short) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; |
| 4495 | method @NonNull public String toGenericString(); |
| 4496 | } |
| 4497 | |
| 4498 | public interface GenericArrayType extends java.lang.reflect.Type { |
| 4499 | method @NonNull public java.lang.reflect.Type getGenericComponentType(); |
| 4500 | } |
| 4501 | |
| 4502 | public interface GenericDeclaration extends java.lang.reflect.AnnotatedElement { |
| 4503 | method @NonNull public java.lang.reflect.TypeVariable<?>[] getTypeParameters(); |
| 4504 | } |
| 4505 | |
| 4506 | public class GenericSignatureFormatError extends java.lang.ClassFormatError { |
| 4507 | ctor public GenericSignatureFormatError(); |
| 4508 | ctor public GenericSignatureFormatError(String); |
| 4509 | } |
| 4510 | |
| 4511 | public interface InvocationHandler { |
| 4512 | method public Object invoke(Object, java.lang.reflect.Method, Object[]) throws java.lang.Throwable; |
| 4513 | } |
| 4514 | |
| 4515 | public class InvocationTargetException extends java.lang.ReflectiveOperationException { |
| 4516 | ctor protected InvocationTargetException(); |
| 4517 | ctor public InvocationTargetException(Throwable); |
| 4518 | ctor public InvocationTargetException(Throwable, String); |
| 4519 | method public Throwable getTargetException(); |
| 4520 | } |
| 4521 | |
| 4522 | public class MalformedParameterizedTypeException extends java.lang.RuntimeException { |
| 4523 | ctor public MalformedParameterizedTypeException(); |
| 4524 | } |
| 4525 | |
| 4526 | public class MalformedParametersException extends java.lang.RuntimeException { |
| 4527 | ctor public MalformedParametersException(); |
| 4528 | ctor public MalformedParametersException(String); |
| 4529 | } |
| 4530 | |
| 4531 | public interface Member { |
| 4532 | method @NonNull public Class<?> getDeclaringClass(); |
| 4533 | method public int getModifiers(); |
| 4534 | method @NonNull public String getName(); |
| 4535 | method public boolean isSynthetic(); |
| 4536 | field public static final int DECLARED = 1; // 0x1 |
| 4537 | field public static final int PUBLIC = 0; // 0x0 |
| 4538 | } |
| 4539 | |
| 4540 | public final class Method extends java.lang.reflect.Executable { |
| 4541 | method @NonNull public Class<?> getDeclaringClass(); |
| 4542 | method @Nullable public Object getDefaultValue(); |
| 4543 | method @NonNull public Class<?>[] getExceptionTypes(); |
| 4544 | method @NonNull public java.lang.reflect.Type getGenericReturnType(); |
| 4545 | method public int getModifiers(); |
| 4546 | method @NonNull public String getName(); |
| 4547 | method @NonNull public java.lang.annotation.Annotation[][] getParameterAnnotations(); |
| 4548 | method @NonNull public Class<?>[] getParameterTypes(); |
| 4549 | method @NonNull public Class<?> getReturnType(); |
| 4550 | method @NonNull public java.lang.reflect.TypeVariable<java.lang.reflect.Method>[] getTypeParameters(); |
| 4551 | method @Nullable public Object invoke(@Nullable Object, @Nullable java.lang.Object...) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException, java.lang.reflect.InvocationTargetException; |
| 4552 | method public boolean isBridge(); |
| 4553 | method public boolean isDefault(); |
| 4554 | method @NonNull public String toGenericString(); |
| 4555 | } |
| 4556 | |
| 4557 | public class Modifier { |
| 4558 | ctor public Modifier(); |
| 4559 | method public static int classModifiers(); |
| 4560 | method public static int constructorModifiers(); |
| 4561 | method public static int fieldModifiers(); |
| 4562 | method public static int interfaceModifiers(); |
| 4563 | method public static boolean isAbstract(int); |
| 4564 | method public static boolean isFinal(int); |
| 4565 | method public static boolean isInterface(int); |
| 4566 | method public static boolean isNative(int); |
| 4567 | method public static boolean isPrivate(int); |
| 4568 | method public static boolean isProtected(int); |
| 4569 | method public static boolean isPublic(int); |
| 4570 | method public static boolean isStatic(int); |
| 4571 | method public static boolean isStrict(int); |
| 4572 | method public static boolean isSynchronized(int); |
| 4573 | method public static boolean isTransient(int); |
| 4574 | method public static boolean isVolatile(int); |
| 4575 | method public static int methodModifiers(); |
| 4576 | method public static int parameterModifiers(); |
| 4577 | method public static String toString(int); |
| 4578 | field public static final int ABSTRACT = 1024; // 0x400 |
| 4579 | field public static final int FINAL = 16; // 0x10 |
| 4580 | field public static final int INTERFACE = 512; // 0x200 |
| 4581 | field public static final int NATIVE = 256; // 0x100 |
| 4582 | field public static final int PRIVATE = 2; // 0x2 |
| 4583 | field public static final int PROTECTED = 4; // 0x4 |
| 4584 | field public static final int PUBLIC = 1; // 0x1 |
| 4585 | field public static final int STATIC = 8; // 0x8 |
| 4586 | field public static final int STRICT = 2048; // 0x800 |
| 4587 | field public static final int SYNCHRONIZED = 32; // 0x20 |
| 4588 | field public static final int TRANSIENT = 128; // 0x80 |
| 4589 | field public static final int VOLATILE = 64; // 0x40 |
| 4590 | } |
| 4591 | |
| 4592 | public final class Parameter implements java.lang.reflect.AnnotatedElement { |
| 4593 | method @Nullable public <T extends java.lang.annotation.Annotation> T getAnnotation(@NonNull Class<T>); |
| 4594 | method @NonNull public java.lang.annotation.Annotation[] getAnnotations(); |
| 4595 | method @NonNull public java.lang.annotation.Annotation[] getDeclaredAnnotations(); |
| 4596 | method @NonNull public java.lang.reflect.Executable getDeclaringExecutable(); |
| 4597 | method public int getModifiers(); |
| 4598 | method @NonNull public String getName(); |
| 4599 | method @NonNull public java.lang.reflect.Type getParameterizedType(); |
| 4600 | method @NonNull public Class<?> getType(); |
| 4601 | method public boolean isImplicit(); |
| 4602 | method public boolean isNamePresent(); |
| 4603 | method public boolean isSynthetic(); |
| 4604 | method public boolean isVarArgs(); |
| 4605 | } |
| 4606 | |
| 4607 | public interface ParameterizedType extends java.lang.reflect.Type { |
| 4608 | method @NonNull public java.lang.reflect.Type[] getActualTypeArguments(); |
| 4609 | method @Nullable public java.lang.reflect.Type getOwnerType(); |
| 4610 | method @NonNull public java.lang.reflect.Type getRawType(); |
| 4611 | } |
| 4612 | |
| 4613 | public class Proxy implements java.io.Serializable { |
| 4614 | ctor protected Proxy(@NonNull java.lang.reflect.InvocationHandler); |
| 4615 | method @NonNull public static java.lang.reflect.InvocationHandler getInvocationHandler(@NonNull Object) throws java.lang.IllegalArgumentException; |
| 4616 | method @NonNull public static Class<?> getProxyClass(@Nullable ClassLoader, @NonNull Class<?>...) throws java.lang.IllegalArgumentException; |
| 4617 | method public static boolean isProxyClass(@NonNull Class<?>); |
| 4618 | method @NonNull public static Object newProxyInstance(@Nullable ClassLoader, @NonNull Class<?>[], @NonNull java.lang.reflect.InvocationHandler) throws java.lang.IllegalArgumentException; |
| 4619 | field protected java.lang.reflect.InvocationHandler h; |
| 4620 | } |
| 4621 | |
| 4622 | public final class ReflectPermission extends java.security.BasicPermission { |
| 4623 | ctor public ReflectPermission(String); |
| 4624 | ctor public ReflectPermission(String, String); |
| 4625 | } |
| 4626 | |
| 4627 | public interface Type { |
| 4628 | method @NonNull public default String getTypeName(); |
| 4629 | } |
| 4630 | |
| 4631 | public interface TypeVariable<D extends java.lang.reflect.GenericDeclaration> extends java.lang.reflect.Type { |
| 4632 | method @NonNull public java.lang.reflect.Type[] getBounds(); |
| 4633 | method @NonNull public D getGenericDeclaration(); |
| 4634 | method @NonNull public String getName(); |
| 4635 | } |
| 4636 | |
| 4637 | public class UndeclaredThrowableException extends java.lang.RuntimeException { |
| 4638 | ctor public UndeclaredThrowableException(Throwable); |
| 4639 | ctor public UndeclaredThrowableException(Throwable, String); |
| 4640 | method public Throwable getUndeclaredThrowable(); |
| 4641 | } |
| 4642 | |
| 4643 | public interface WildcardType extends java.lang.reflect.Type { |
| 4644 | method @NonNull public java.lang.reflect.Type[] getLowerBounds(); |
| 4645 | method @NonNull public java.lang.reflect.Type[] getUpperBounds(); |
| 4646 | } |
| 4647 | |
| 4648 | } |
| 4649 | |
| 4650 | package java.math { |
| 4651 | |
| 4652 | public class BigDecimal extends java.lang.Number implements java.lang.Comparable<java.math.BigDecimal> { |
| 4653 | ctor public BigDecimal(char[], int, int); |
| 4654 | ctor public BigDecimal(char[], int, int, java.math.MathContext); |
| 4655 | ctor public BigDecimal(char[]); |
| 4656 | ctor public BigDecimal(char[], java.math.MathContext); |
| 4657 | ctor public BigDecimal(String); |
| 4658 | ctor public BigDecimal(String, java.math.MathContext); |
| 4659 | ctor public BigDecimal(double); |
| 4660 | ctor public BigDecimal(double, java.math.MathContext); |
| 4661 | ctor public BigDecimal(java.math.BigInteger); |
| 4662 | ctor public BigDecimal(java.math.BigInteger, java.math.MathContext); |
| 4663 | ctor public BigDecimal(java.math.BigInteger, int); |
| 4664 | ctor public BigDecimal(java.math.BigInteger, int, java.math.MathContext); |
| 4665 | ctor public BigDecimal(int); |
| 4666 | ctor public BigDecimal(int, java.math.MathContext); |
| 4667 | ctor public BigDecimal(long); |
| 4668 | ctor public BigDecimal(long, java.math.MathContext); |
| 4669 | method public java.math.BigDecimal abs(); |
| 4670 | method public java.math.BigDecimal abs(java.math.MathContext); |
| 4671 | method public java.math.BigDecimal add(java.math.BigDecimal); |
| 4672 | method public java.math.BigDecimal add(java.math.BigDecimal, java.math.MathContext); |
| 4673 | method public byte byteValueExact(); |
| 4674 | method public int compareTo(java.math.BigDecimal); |
| 4675 | method public java.math.BigDecimal divide(java.math.BigDecimal, int, int); |
| 4676 | method public java.math.BigDecimal divide(java.math.BigDecimal, int, java.math.RoundingMode); |
| 4677 | method public java.math.BigDecimal divide(java.math.BigDecimal, int); |
| 4678 | method public java.math.BigDecimal divide(java.math.BigDecimal, java.math.RoundingMode); |
| 4679 | method public java.math.BigDecimal divide(java.math.BigDecimal); |
| 4680 | method public java.math.BigDecimal divide(java.math.BigDecimal, java.math.MathContext); |
| 4681 | method public java.math.BigDecimal[] divideAndRemainder(java.math.BigDecimal); |
| 4682 | method public java.math.BigDecimal[] divideAndRemainder(java.math.BigDecimal, java.math.MathContext); |
| 4683 | method public java.math.BigDecimal divideToIntegralValue(java.math.BigDecimal); |
| 4684 | method public java.math.BigDecimal divideToIntegralValue(java.math.BigDecimal, java.math.MathContext); |
| 4685 | method public double doubleValue(); |
| 4686 | method public float floatValue(); |
| 4687 | method public int intValue(); |
| 4688 | method public int intValueExact(); |
| 4689 | method public long longValue(); |
| 4690 | method public long longValueExact(); |
| 4691 | method public java.math.BigDecimal max(java.math.BigDecimal); |
| 4692 | method public java.math.BigDecimal min(java.math.BigDecimal); |
| 4693 | method public java.math.BigDecimal movePointLeft(int); |
| 4694 | method public java.math.BigDecimal movePointRight(int); |
| 4695 | method public java.math.BigDecimal multiply(java.math.BigDecimal); |
| 4696 | method public java.math.BigDecimal multiply(java.math.BigDecimal, java.math.MathContext); |
| 4697 | method public java.math.BigDecimal negate(); |
| 4698 | method public java.math.BigDecimal negate(java.math.MathContext); |
| 4699 | method public java.math.BigDecimal plus(); |
| 4700 | method public java.math.BigDecimal plus(java.math.MathContext); |
| 4701 | method public java.math.BigDecimal pow(int); |
| 4702 | method public java.math.BigDecimal pow(int, java.math.MathContext); |
| 4703 | method public int precision(); |
| 4704 | method public java.math.BigDecimal remainder(java.math.BigDecimal); |
| 4705 | method public java.math.BigDecimal remainder(java.math.BigDecimal, java.math.MathContext); |
| 4706 | method public java.math.BigDecimal round(java.math.MathContext); |
| 4707 | method public int scale(); |
| 4708 | method public java.math.BigDecimal scaleByPowerOfTen(int); |
| 4709 | method public java.math.BigDecimal setScale(int, java.math.RoundingMode); |
| 4710 | method public java.math.BigDecimal setScale(int, int); |
| 4711 | method public java.math.BigDecimal setScale(int); |
| 4712 | method public short shortValueExact(); |
| 4713 | method public int signum(); |
| 4714 | method public java.math.BigDecimal stripTrailingZeros(); |
| 4715 | method public java.math.BigDecimal subtract(java.math.BigDecimal); |
| 4716 | method public java.math.BigDecimal subtract(java.math.BigDecimal, java.math.MathContext); |
| 4717 | method public java.math.BigInteger toBigInteger(); |
| 4718 | method public java.math.BigInteger toBigIntegerExact(); |
| 4719 | method public String toEngineeringString(); |
| 4720 | method public String toPlainString(); |
| 4721 | method public java.math.BigDecimal ulp(); |
| 4722 | method public java.math.BigInteger unscaledValue(); |
| 4723 | method public static java.math.BigDecimal valueOf(long, int); |
| 4724 | method public static java.math.BigDecimal valueOf(long); |
| 4725 | method public static java.math.BigDecimal valueOf(double); |
| 4726 | field public static final java.math.BigDecimal ONE; |
| 4727 | field public static final int ROUND_CEILING = 2; // 0x2 |
| 4728 | field public static final int ROUND_DOWN = 1; // 0x1 |
| 4729 | field public static final int ROUND_FLOOR = 3; // 0x3 |
| 4730 | field public static final int ROUND_HALF_DOWN = 5; // 0x5 |
| 4731 | field public static final int ROUND_HALF_EVEN = 6; // 0x6 |
| 4732 | field public static final int ROUND_HALF_UP = 4; // 0x4 |
| 4733 | field public static final int ROUND_UNNECESSARY = 7; // 0x7 |
| 4734 | field public static final int ROUND_UP = 0; // 0x0 |
| 4735 | field public static final java.math.BigDecimal TEN; |
| 4736 | field public static final java.math.BigDecimal ZERO; |
| 4737 | } |
| 4738 | |
| 4739 | public class BigInteger extends java.lang.Number implements java.lang.Comparable<java.math.BigInteger> { |
| 4740 | ctor public BigInteger(byte[]); |
| 4741 | ctor public BigInteger(int, byte[]); |
| 4742 | ctor public BigInteger(@NonNull String, int); |
| 4743 | ctor public BigInteger(@NonNull String); |
| 4744 | ctor public BigInteger(int, @NonNull java.util.Random); |
| 4745 | ctor public BigInteger(int, int, @NonNull java.util.Random); |
| 4746 | method @NonNull public java.math.BigInteger abs(); |
| 4747 | method @NonNull public java.math.BigInteger add(@NonNull java.math.BigInteger); |
| 4748 | method @NonNull public java.math.BigInteger and(@NonNull java.math.BigInteger); |
| 4749 | method @NonNull public java.math.BigInteger andNot(@NonNull java.math.BigInteger); |
| 4750 | method public int bitCount(); |
| 4751 | method public int bitLength(); |
| 4752 | method public byte byteValueExact(); |
| 4753 | method @NonNull public java.math.BigInteger clearBit(int); |
| 4754 | method public int compareTo(@NonNull java.math.BigInteger); |
| 4755 | method @NonNull public java.math.BigInteger divide(@NonNull java.math.BigInteger); |
| 4756 | method @NonNull public java.math.BigInteger[] divideAndRemainder(@NonNull java.math.BigInteger); |
| 4757 | method public double doubleValue(); |
| 4758 | method @NonNull public java.math.BigInteger flipBit(int); |
| 4759 | method public float floatValue(); |
| 4760 | method @NonNull public java.math.BigInteger gcd(@NonNull java.math.BigInteger); |
| 4761 | method public int getLowestSetBit(); |
| 4762 | method public int intValue(); |
| 4763 | method public int intValueExact(); |
| 4764 | method public boolean isProbablePrime(int); |
| 4765 | method public long longValue(); |
| 4766 | method public long longValueExact(); |
| 4767 | method @NonNull public java.math.BigInteger max(@NonNull java.math.BigInteger); |
| 4768 | method @NonNull public java.math.BigInteger min(@NonNull java.math.BigInteger); |
| 4769 | method @NonNull public java.math.BigInteger mod(@NonNull java.math.BigInteger); |
| 4770 | method @NonNull public java.math.BigInteger modInverse(@NonNull java.math.BigInteger); |
| 4771 | method @NonNull public java.math.BigInteger modPow(@NonNull java.math.BigInteger, @NonNull java.math.BigInteger); |
| 4772 | method @NonNull public java.math.BigInteger multiply(@NonNull java.math.BigInteger); |
| 4773 | method @NonNull public java.math.BigInteger negate(); |
| 4774 | method @NonNull public java.math.BigInteger nextProbablePrime(); |
| 4775 | method @NonNull public java.math.BigInteger not(); |
| 4776 | method @NonNull public java.math.BigInteger or(@NonNull java.math.BigInteger); |
| 4777 | method @NonNull public java.math.BigInteger pow(int); |
| 4778 | method @NonNull public static java.math.BigInteger probablePrime(int, @NonNull java.util.Random); |
| 4779 | method @NonNull public java.math.BigInteger remainder(@NonNull java.math.BigInteger); |
| 4780 | method @NonNull public java.math.BigInteger setBit(int); |
| 4781 | method @NonNull public java.math.BigInteger shiftLeft(int); |
| 4782 | method @NonNull public java.math.BigInteger shiftRight(int); |
| 4783 | method public short shortValueExact(); |
| 4784 | method public int signum(); |
| 4785 | method @NonNull public java.math.BigInteger subtract(@NonNull java.math.BigInteger); |
| 4786 | method public boolean testBit(int); |
| 4787 | method public byte[] toByteArray(); |
| 4788 | method @NonNull public String toString(int); |
| 4789 | method @NonNull public static java.math.BigInteger valueOf(long); |
| 4790 | method @NonNull public java.math.BigInteger xor(@NonNull java.math.BigInteger); |
| 4791 | field @NonNull public static final java.math.BigInteger ONE; |
| 4792 | field @NonNull public static final java.math.BigInteger TEN; |
| 4793 | field @NonNull public static final java.math.BigInteger ZERO; |
| 4794 | } |
| 4795 | |
| 4796 | public final class MathContext implements java.io.Serializable { |
| 4797 | ctor public MathContext(int); |
| 4798 | ctor public MathContext(int, java.math.RoundingMode); |
| 4799 | ctor public MathContext(String); |
| 4800 | method public int getPrecision(); |
| 4801 | method public java.math.RoundingMode getRoundingMode(); |
| 4802 | field public static final java.math.MathContext DECIMAL128; |
| 4803 | field public static final java.math.MathContext DECIMAL32; |
| 4804 | field public static final java.math.MathContext DECIMAL64; |
| 4805 | field public static final java.math.MathContext UNLIMITED; |
| 4806 | } |
| 4807 | |
| 4808 | public enum RoundingMode { |
| 4809 | method public static java.math.RoundingMode valueOf(int); |
| 4810 | enum_constant public static final java.math.RoundingMode CEILING; |
| 4811 | enum_constant public static final java.math.RoundingMode DOWN; |
| 4812 | enum_constant public static final java.math.RoundingMode FLOOR; |
| 4813 | enum_constant public static final java.math.RoundingMode HALF_DOWN; |
| 4814 | enum_constant public static final java.math.RoundingMode HALF_EVEN; |
| 4815 | enum_constant public static final java.math.RoundingMode HALF_UP; |
| 4816 | enum_constant public static final java.math.RoundingMode UNNECESSARY; |
| 4817 | enum_constant public static final java.math.RoundingMode UP; |
| 4818 | } |
| 4819 | |
| 4820 | } |
| 4821 | |
| 4822 | package java.net { |
| 4823 | |
| 4824 | public abstract class Authenticator { |
| 4825 | ctor public Authenticator(); |
| 4826 | method protected java.net.PasswordAuthentication getPasswordAuthentication(); |
| 4827 | method protected final String getRequestingHost(); |
| 4828 | method protected final int getRequestingPort(); |
| 4829 | method protected final String getRequestingPrompt(); |
| 4830 | method protected final String getRequestingProtocol(); |
| 4831 | method protected final String getRequestingScheme(); |
| 4832 | method protected final java.net.InetAddress getRequestingSite(); |
| 4833 | method protected java.net.URL getRequestingURL(); |
| 4834 | method protected java.net.Authenticator.RequestorType getRequestorType(); |
| 4835 | method public static java.net.PasswordAuthentication requestPasswordAuthentication(java.net.InetAddress, int, String, String, String); |
| 4836 | method public static java.net.PasswordAuthentication requestPasswordAuthentication(String, java.net.InetAddress, int, String, String, String); |
| 4837 | method public static java.net.PasswordAuthentication requestPasswordAuthentication(String, java.net.InetAddress, int, String, String, String, java.net.URL, java.net.Authenticator.RequestorType); |
| 4838 | method public static void setDefault(java.net.Authenticator); |
| 4839 | } |
| 4840 | |
| 4841 | public enum Authenticator.RequestorType { |
| 4842 | enum_constant public static final java.net.Authenticator.RequestorType PROXY; |
| 4843 | enum_constant public static final java.net.Authenticator.RequestorType SERVER; |
| 4844 | } |
| 4845 | |
| 4846 | public class BindException extends java.net.SocketException { |
| 4847 | ctor public BindException(String); |
| 4848 | ctor public BindException(); |
| 4849 | } |
| 4850 | |
| 4851 | public abstract class CacheRequest { |
| 4852 | ctor public CacheRequest(); |
| 4853 | method public abstract void abort(); |
| 4854 | method public abstract java.io.OutputStream getBody() throws java.io.IOException; |
| 4855 | } |
| 4856 | |
| 4857 | public abstract class CacheResponse { |
| 4858 | ctor public CacheResponse(); |
| 4859 | method public abstract java.io.InputStream getBody() throws java.io.IOException; |
| 4860 | method public abstract java.util.Map<java.lang.String,java.util.List<java.lang.String>> getHeaders() throws java.io.IOException; |
| 4861 | } |
| 4862 | |
| 4863 | public class ConnectException extends java.net.SocketException { |
| 4864 | ctor public ConnectException(String); |
| 4865 | ctor public ConnectException(); |
| 4866 | } |
| 4867 | |
| 4868 | public abstract class ContentHandler { |
| 4869 | ctor public ContentHandler(); |
| 4870 | method public abstract Object getContent(java.net.URLConnection) throws java.io.IOException; |
| 4871 | method public Object getContent(java.net.URLConnection, Class[]) throws java.io.IOException; |
| 4872 | } |
| 4873 | |
| 4874 | public interface ContentHandlerFactory { |
| 4875 | method public java.net.ContentHandler createContentHandler(String); |
| 4876 | } |
| 4877 | |
| 4878 | public abstract class CookieHandler { |
| 4879 | ctor public CookieHandler(); |
| 4880 | method public abstract java.util.Map<java.lang.String,java.util.List<java.lang.String>> get(java.net.URI, java.util.Map<java.lang.String,java.util.List<java.lang.String>>) throws java.io.IOException; |
| 4881 | method public static java.net.CookieHandler getDefault(); |
| 4882 | method public abstract void put(java.net.URI, java.util.Map<java.lang.String,java.util.List<java.lang.String>>) throws java.io.IOException; |
| 4883 | method public static void setDefault(java.net.CookieHandler); |
| 4884 | } |
| 4885 | |
| 4886 | public class CookieManager extends java.net.CookieHandler { |
| 4887 | ctor public CookieManager(); |
| 4888 | ctor public CookieManager(java.net.CookieStore, java.net.CookiePolicy); |
| 4889 | method public java.util.Map<java.lang.String,java.util.List<java.lang.String>> get(java.net.URI, java.util.Map<java.lang.String,java.util.List<java.lang.String>>) throws java.io.IOException; |
| 4890 | method public java.net.CookieStore getCookieStore(); |
| 4891 | method public void put(java.net.URI, java.util.Map<java.lang.String,java.util.List<java.lang.String>>) throws java.io.IOException; |
| 4892 | method public void setCookiePolicy(java.net.CookiePolicy); |
| 4893 | } |
| 4894 | |
| 4895 | public interface CookiePolicy { |
| 4896 | method public boolean shouldAccept(java.net.URI, java.net.HttpCookie); |
| 4897 | field public static final java.net.CookiePolicy ACCEPT_ALL; |
| 4898 | field public static final java.net.CookiePolicy ACCEPT_NONE; |
| 4899 | field public static final java.net.CookiePolicy ACCEPT_ORIGINAL_SERVER; |
| 4900 | } |
| 4901 | |
| 4902 | public interface CookieStore { |
| 4903 | method public void add(java.net.URI, java.net.HttpCookie); |
| 4904 | method public java.util.List<java.net.HttpCookie> get(java.net.URI); |
| 4905 | method public java.util.List<java.net.HttpCookie> getCookies(); |
| 4906 | method public java.util.List<java.net.URI> getURIs(); |
| 4907 | method public boolean remove(java.net.URI, java.net.HttpCookie); |
| 4908 | method public boolean removeAll(); |
| 4909 | } |
| 4910 | |
| 4911 | public final class DatagramPacket { |
| 4912 | ctor public DatagramPacket(byte[], int, int); |
| 4913 | ctor public DatagramPacket(byte[], int); |
| 4914 | ctor public DatagramPacket(byte[], int, int, java.net.InetAddress, int); |
| 4915 | ctor public DatagramPacket(byte[], int, int, java.net.SocketAddress); |
| 4916 | ctor public DatagramPacket(byte[], int, java.net.InetAddress, int); |
| 4917 | ctor public DatagramPacket(byte[], int, java.net.SocketAddress); |
| 4918 | method public java.net.InetAddress getAddress(); |
| 4919 | method public byte[] getData(); |
| 4920 | method public int getLength(); |
| 4921 | method public int getOffset(); |
| 4922 | method public int getPort(); |
| 4923 | method public java.net.SocketAddress getSocketAddress(); |
| 4924 | method public void setAddress(java.net.InetAddress); |
| 4925 | method public void setData(byte[], int, int); |
| 4926 | method public void setData(byte[]); |
| 4927 | method public void setLength(int); |
| 4928 | method public void setPort(int); |
| 4929 | method public void setSocketAddress(java.net.SocketAddress); |
| 4930 | } |
| 4931 | |
| 4932 | public class DatagramSocket implements java.io.Closeable { |
| 4933 | ctor public DatagramSocket() throws java.net.SocketException; |
| 4934 | ctor protected DatagramSocket(java.net.DatagramSocketImpl); |
| 4935 | ctor public DatagramSocket(java.net.SocketAddress) throws java.net.SocketException; |
| 4936 | ctor public DatagramSocket(int) throws java.net.SocketException; |
| 4937 | ctor public DatagramSocket(int, java.net.InetAddress) throws java.net.SocketException; |
| 4938 | method public void bind(java.net.SocketAddress) throws java.net.SocketException; |
| 4939 | method public void close(); |
| 4940 | method public void connect(java.net.InetAddress, int); |
| 4941 | method public void connect(java.net.SocketAddress) throws java.net.SocketException; |
| 4942 | method public void disconnect(); |
| 4943 | method public boolean getBroadcast() throws java.net.SocketException; |
| 4944 | method public java.nio.channels.DatagramChannel getChannel(); |
| 4945 | method public java.net.InetAddress getInetAddress(); |
| 4946 | method public java.net.InetAddress getLocalAddress(); |
| 4947 | method public int getLocalPort(); |
| 4948 | method public java.net.SocketAddress getLocalSocketAddress(); |
| 4949 | method public int getPort(); |
| 4950 | method public int getReceiveBufferSize() throws java.net.SocketException; |
| 4951 | method public java.net.SocketAddress getRemoteSocketAddress(); |
| 4952 | method public boolean getReuseAddress() throws java.net.SocketException; |
| 4953 | method public int getSendBufferSize() throws java.net.SocketException; |
| 4954 | method public int getSoTimeout() throws java.net.SocketException; |
| 4955 | method public int getTrafficClass() throws java.net.SocketException; |
| 4956 | method public boolean isBound(); |
| 4957 | method public boolean isClosed(); |
| 4958 | method public boolean isConnected(); |
| 4959 | method public void receive(java.net.DatagramPacket) throws java.io.IOException; |
| 4960 | method public void send(java.net.DatagramPacket) throws java.io.IOException; |
| 4961 | method public void setBroadcast(boolean) throws java.net.SocketException; |
| 4962 | method public static void setDatagramSocketImplFactory(java.net.DatagramSocketImplFactory) throws java.io.IOException; |
| 4963 | method public void setReceiveBufferSize(int) throws java.net.SocketException; |
| 4964 | method public void setReuseAddress(boolean) throws java.net.SocketException; |
| 4965 | method public void setSendBufferSize(int) throws java.net.SocketException; |
| 4966 | method public void setSoTimeout(int) throws java.net.SocketException; |
| 4967 | method public void setTrafficClass(int) throws java.net.SocketException; |
| 4968 | } |
| 4969 | |
| 4970 | public abstract class DatagramSocketImpl implements java.net.SocketOptions { |
| 4971 | ctor public DatagramSocketImpl(); |
| 4972 | method protected abstract void bind(int, java.net.InetAddress) throws java.net.SocketException; |
| 4973 | method protected abstract void close(); |
| 4974 | method protected void connect(java.net.InetAddress, int) throws java.net.SocketException; |
| 4975 | method protected abstract void create() throws java.net.SocketException; |
| 4976 | method protected void disconnect(); |
| 4977 | method protected java.io.FileDescriptor getFileDescriptor(); |
| 4978 | method protected int getLocalPort(); |
| 4979 | method @Deprecated protected abstract byte getTTL() throws java.io.IOException; |
| 4980 | method protected abstract int getTimeToLive() throws java.io.IOException; |
| 4981 | method protected abstract void join(java.net.InetAddress) throws java.io.IOException; |
| 4982 | method protected abstract void joinGroup(java.net.SocketAddress, java.net.NetworkInterface) throws java.io.IOException; |
| 4983 | method protected abstract void leave(java.net.InetAddress) throws java.io.IOException; |
| 4984 | method protected abstract void leaveGroup(java.net.SocketAddress, java.net.NetworkInterface) throws java.io.IOException; |
| 4985 | method protected abstract int peek(java.net.InetAddress) throws java.io.IOException; |
| 4986 | method protected abstract int peekData(java.net.DatagramPacket) throws java.io.IOException; |
| 4987 | method protected abstract void receive(java.net.DatagramPacket) throws java.io.IOException; |
| 4988 | method protected abstract void send(java.net.DatagramPacket) throws java.io.IOException; |
| 4989 | method @Deprecated protected abstract void setTTL(byte) throws java.io.IOException; |
| 4990 | method protected abstract void setTimeToLive(int) throws java.io.IOException; |
| 4991 | field protected java.io.FileDescriptor fd; |
| 4992 | field protected int localPort; |
| 4993 | } |
| 4994 | |
| 4995 | public interface DatagramSocketImplFactory { |
| 4996 | method public java.net.DatagramSocketImpl createDatagramSocketImpl(); |
| 4997 | } |
| 4998 | |
| 4999 | public interface FileNameMap { |
| 5000 | method public String getContentTypeFor(String); |
| 5001 | } |
| 5002 | |
| 5003 | public final class HttpCookie implements java.lang.Cloneable { |
| 5004 | ctor public HttpCookie(String, String); |
| 5005 | method public Object clone(); |
| 5006 | method public static boolean domainMatches(String, String); |
| 5007 | method public String getComment(); |
| 5008 | method public String getCommentURL(); |
| 5009 | method public boolean getDiscard(); |
| 5010 | method public String getDomain(); |
| 5011 | method public long getMaxAge(); |
| 5012 | method public String getName(); |
| 5013 | method public String getPath(); |
| 5014 | method public String getPortlist(); |
| 5015 | method public boolean getSecure(); |
| 5016 | method public String getValue(); |
| 5017 | method public int getVersion(); |
| 5018 | method public boolean hasExpired(); |
| 5019 | method public boolean isHttpOnly(); |
| 5020 | method public static java.util.List<java.net.HttpCookie> parse(String); |
| 5021 | method public void setComment(String); |
| 5022 | method public void setCommentURL(String); |
| 5023 | method public void setDiscard(boolean); |
| 5024 | method public void setDomain(String); |
| 5025 | method public void setHttpOnly(boolean); |
| 5026 | method public void setMaxAge(long); |
| 5027 | method public void setPath(String); |
| 5028 | method public void setPortlist(String); |
| 5029 | method public void setSecure(boolean); |
| 5030 | method public void setValue(String); |
| 5031 | method public void setVersion(int); |
| 5032 | } |
| 5033 | |
| 5034 | public class HttpRetryException extends java.io.IOException { |
| 5035 | ctor public HttpRetryException(String, int); |
| 5036 | ctor public HttpRetryException(String, int, String); |
| 5037 | method public String getLocation(); |
| 5038 | method public String getReason(); |
| 5039 | method public int responseCode(); |
| 5040 | } |
| 5041 | |
| 5042 | public abstract class HttpURLConnection extends java.net.URLConnection { |
| 5043 | ctor protected HttpURLConnection(java.net.URL); |
| 5044 | method public abstract void disconnect(); |
| 5045 | method public java.io.InputStream getErrorStream(); |
| 5046 | method public static boolean getFollowRedirects(); |
| 5047 | method public boolean getInstanceFollowRedirects(); |
| 5048 | method public String getRequestMethod(); |
| 5049 | method public int getResponseCode() throws java.io.IOException; |
| 5050 | method public String getResponseMessage() throws java.io.IOException; |
| 5051 | method public void setChunkedStreamingMode(int); |
| 5052 | method public void setFixedLengthStreamingMode(int); |
| 5053 | method public void setFixedLengthStreamingMode(long); |
| 5054 | method public static void setFollowRedirects(boolean); |
| 5055 | method public void setInstanceFollowRedirects(boolean); |
| 5056 | method public void setRequestMethod(String) throws java.net.ProtocolException; |
| 5057 | method public abstract boolean usingProxy(); |
| 5058 | field public static final int HTTP_ACCEPTED = 202; // 0xca |
| 5059 | field public static final int HTTP_BAD_GATEWAY = 502; // 0x1f6 |
| 5060 | field public static final int HTTP_BAD_METHOD = 405; // 0x195 |
| 5061 | field public static final int HTTP_BAD_REQUEST = 400; // 0x190 |
| 5062 | field public static final int HTTP_CLIENT_TIMEOUT = 408; // 0x198 |
| 5063 | field public static final int HTTP_CONFLICT = 409; // 0x199 |
| 5064 | field public static final int HTTP_CREATED = 201; // 0xc9 |
| 5065 | field public static final int HTTP_ENTITY_TOO_LARGE = 413; // 0x19d |
| 5066 | field public static final int HTTP_FORBIDDEN = 403; // 0x193 |
| 5067 | field public static final int HTTP_GATEWAY_TIMEOUT = 504; // 0x1f8 |
| 5068 | field public static final int HTTP_GONE = 410; // 0x19a |
| 5069 | field public static final int HTTP_INTERNAL_ERROR = 500; // 0x1f4 |
| 5070 | field public static final int HTTP_LENGTH_REQUIRED = 411; // 0x19b |
| 5071 | field public static final int HTTP_MOVED_PERM = 301; // 0x12d |
| 5072 | field public static final int HTTP_MOVED_TEMP = 302; // 0x12e |
| 5073 | field public static final int HTTP_MULT_CHOICE = 300; // 0x12c |
| 5074 | field public static final int HTTP_NOT_ACCEPTABLE = 406; // 0x196 |
| 5075 | field public static final int HTTP_NOT_AUTHORITATIVE = 203; // 0xcb |
| 5076 | field public static final int HTTP_NOT_FOUND = 404; // 0x194 |
| 5077 | field public static final int HTTP_NOT_IMPLEMENTED = 501; // 0x1f5 |
| 5078 | field public static final int HTTP_NOT_MODIFIED = 304; // 0x130 |
| 5079 | field public static final int HTTP_NO_CONTENT = 204; // 0xcc |
| 5080 | field public static final int HTTP_OK = 200; // 0xc8 |
| 5081 | field public static final int HTTP_PARTIAL = 206; // 0xce |
| 5082 | field public static final int HTTP_PAYMENT_REQUIRED = 402; // 0x192 |
| 5083 | field public static final int HTTP_PRECON_FAILED = 412; // 0x19c |
| 5084 | field public static final int HTTP_PROXY_AUTH = 407; // 0x197 |
| 5085 | field public static final int HTTP_REQ_TOO_LONG = 414; // 0x19e |
| 5086 | field public static final int HTTP_RESET = 205; // 0xcd |
| 5087 | field public static final int HTTP_SEE_OTHER = 303; // 0x12f |
| 5088 | field @Deprecated public static final int HTTP_SERVER_ERROR = 500; // 0x1f4 |
| 5089 | field public static final int HTTP_UNAUTHORIZED = 401; // 0x191 |
| 5090 | field public static final int HTTP_UNAVAILABLE = 503; // 0x1f7 |
| 5091 | field public static final int HTTP_UNSUPPORTED_TYPE = 415; // 0x19f |
| 5092 | field public static final int HTTP_USE_PROXY = 305; // 0x131 |
| 5093 | field public static final int HTTP_VERSION = 505; // 0x1f9 |
| 5094 | field protected int chunkLength; |
| 5095 | field protected int fixedContentLength; |
| 5096 | field protected long fixedContentLengthLong; |
| 5097 | field protected boolean instanceFollowRedirects; |
| 5098 | field protected String method; |
| 5099 | field protected int responseCode; |
| 5100 | field protected String responseMessage; |
| 5101 | } |
| 5102 | |
| 5103 | public final class IDN { |
| 5104 | method public static String toASCII(String, int); |
| 5105 | method public static String toASCII(String); |
| 5106 | method public static String toUnicode(String, int); |
| 5107 | method public static String toUnicode(String); |
| 5108 | field public static final int ALLOW_UNASSIGNED = 1; // 0x1 |
| 5109 | field public static final int USE_STD3_ASCII_RULES = 2; // 0x2 |
| 5110 | } |
| 5111 | |
| 5112 | public final class Inet4Address extends java.net.InetAddress { |
| 5113 | } |
| 5114 | |
| 5115 | public final class Inet6Address extends java.net.InetAddress { |
| 5116 | method public static java.net.Inet6Address getByAddress(String, byte[], java.net.NetworkInterface) throws java.net.UnknownHostException; |
| 5117 | method public static java.net.Inet6Address getByAddress(String, byte[], int) throws java.net.UnknownHostException; |
| 5118 | method public int getScopeId(); |
| 5119 | method public java.net.NetworkInterface getScopedInterface(); |
| 5120 | method public boolean isIPv4CompatibleAddress(); |
| 5121 | } |
| 5122 | |
| 5123 | public class InetAddress implements java.io.Serializable { |
| 5124 | method public byte[] getAddress(); |
| 5125 | method public static java.net.InetAddress[] getAllByName(String) throws java.net.UnknownHostException; |
| 5126 | method public static java.net.InetAddress getByAddress(String, byte[]) throws java.net.UnknownHostException; |
| 5127 | method public static java.net.InetAddress getByAddress(byte[]) throws java.net.UnknownHostException; |
| 5128 | method public static java.net.InetAddress getByName(String) throws java.net.UnknownHostException; |
| 5129 | method public String getCanonicalHostName(); |
| 5130 | method public String getHostAddress(); |
| 5131 | method public String getHostName(); |
| 5132 | method public static java.net.InetAddress getLocalHost() throws java.net.UnknownHostException; |
| 5133 | method public static java.net.InetAddress getLoopbackAddress(); |
| 5134 | method public boolean isAnyLocalAddress(); |
| 5135 | method public boolean isLinkLocalAddress(); |
| 5136 | method public boolean isLoopbackAddress(); |
| 5137 | method public boolean isMCGlobal(); |
| 5138 | method public boolean isMCLinkLocal(); |
| 5139 | method public boolean isMCNodeLocal(); |
| 5140 | method public boolean isMCOrgLocal(); |
| 5141 | method public boolean isMCSiteLocal(); |
| 5142 | method public boolean isMulticastAddress(); |
| 5143 | method public boolean isReachable(int) throws java.io.IOException; |
| 5144 | method public boolean isReachable(java.net.NetworkInterface, int, int) throws java.io.IOException; |
| 5145 | method public boolean isSiteLocalAddress(); |
| 5146 | } |
| 5147 | |
| 5148 | public class InetSocketAddress extends java.net.SocketAddress { |
| 5149 | ctor public InetSocketAddress(int); |
| 5150 | ctor public InetSocketAddress(java.net.InetAddress, int); |
| 5151 | ctor public InetSocketAddress(String, int); |
| 5152 | method public static java.net.InetSocketAddress createUnresolved(String, int); |
| 5153 | method public final boolean equals(Object); |
| 5154 | method public final java.net.InetAddress getAddress(); |
| 5155 | method public final String getHostName(); |
| 5156 | method public final String getHostString(); |
| 5157 | method public final int getPort(); |
| 5158 | method public final int hashCode(); |
| 5159 | method public final boolean isUnresolved(); |
| 5160 | } |
| 5161 | |
| 5162 | public class InterfaceAddress { |
| 5163 | method public java.net.InetAddress getAddress(); |
| 5164 | method public java.net.InetAddress getBroadcast(); |
| 5165 | method public short getNetworkPrefixLength(); |
| 5166 | } |
| 5167 | |
| 5168 | public abstract class JarURLConnection extends java.net.URLConnection { |
| 5169 | ctor protected JarURLConnection(java.net.URL) throws java.net.MalformedURLException; |
| 5170 | method public java.util.jar.Attributes getAttributes() throws java.io.IOException; |
| 5171 | method public java.security.cert.Certificate[] getCertificates() throws java.io.IOException; |
| 5172 | method public String getEntryName(); |
| 5173 | method public java.util.jar.JarEntry getJarEntry() throws java.io.IOException; |
| 5174 | method public abstract java.util.jar.JarFile getJarFile() throws java.io.IOException; |
| 5175 | method public java.net.URL getJarFileURL(); |
| 5176 | method public java.util.jar.Attributes getMainAttributes() throws java.io.IOException; |
| 5177 | method public java.util.jar.Manifest getManifest() throws java.io.IOException; |
| 5178 | field protected java.net.URLConnection jarFileURLConnection; |
| 5179 | } |
| 5180 | |
| 5181 | public class MalformedURLException extends java.io.IOException { |
| 5182 | ctor public MalformedURLException(); |
| 5183 | ctor public MalformedURLException(String); |
| 5184 | } |
| 5185 | |
| 5186 | public class MulticastSocket extends java.net.DatagramSocket { |
| 5187 | ctor public MulticastSocket() throws java.io.IOException; |
| 5188 | ctor public MulticastSocket(int) throws java.io.IOException; |
| 5189 | ctor public MulticastSocket(java.net.SocketAddress) throws java.io.IOException; |
| 5190 | method public java.net.InetAddress getInterface() throws java.net.SocketException; |
| 5191 | method public boolean getLoopbackMode() throws java.net.SocketException; |
| 5192 | method public java.net.NetworkInterface getNetworkInterface() throws java.net.SocketException; |
| 5193 | method @Deprecated public byte getTTL() throws java.io.IOException; |
| 5194 | method public int getTimeToLive() throws java.io.IOException; |
| 5195 | method public void joinGroup(java.net.InetAddress) throws java.io.IOException; |
| 5196 | method public void joinGroup(java.net.SocketAddress, java.net.NetworkInterface) throws java.io.IOException; |
| 5197 | method public void leaveGroup(java.net.InetAddress) throws java.io.IOException; |
| 5198 | method public void leaveGroup(java.net.SocketAddress, java.net.NetworkInterface) throws java.io.IOException; |
| 5199 | method @Deprecated public void send(java.net.DatagramPacket, byte) throws java.io.IOException; |
| 5200 | method public void setInterface(java.net.InetAddress) throws java.net.SocketException; |
| 5201 | method public void setLoopbackMode(boolean) throws java.net.SocketException; |
| 5202 | method public void setNetworkInterface(java.net.NetworkInterface) throws java.net.SocketException; |
| 5203 | method @Deprecated public void setTTL(byte) throws java.io.IOException; |
| 5204 | method public void setTimeToLive(int) throws java.io.IOException; |
| 5205 | } |
| 5206 | |
| 5207 | public final class NetPermission extends java.security.BasicPermission { |
| 5208 | ctor public NetPermission(String); |
| 5209 | ctor public NetPermission(String, String); |
| 5210 | } |
| 5211 | |
| 5212 | public final class NetworkInterface { |
| 5213 | method public static java.net.NetworkInterface getByIndex(int) throws java.net.SocketException; |
| 5214 | method public static java.net.NetworkInterface getByInetAddress(java.net.InetAddress) throws java.net.SocketException; |
| 5215 | method public static java.net.NetworkInterface getByName(String) throws java.net.SocketException; |
| 5216 | method public String getDisplayName(); |
| 5217 | method public byte[] getHardwareAddress() throws java.net.SocketException; |
| 5218 | method public int getIndex(); |
| 5219 | method public java.util.Enumeration<java.net.InetAddress> getInetAddresses(); |
| 5220 | method public java.util.List<java.net.InterfaceAddress> getInterfaceAddresses(); |
| 5221 | method public int getMTU() throws java.net.SocketException; |
| 5222 | method public String getName(); |
| 5223 | method public static java.util.Enumeration<java.net.NetworkInterface> getNetworkInterfaces() throws java.net.SocketException; |
| 5224 | method public java.net.NetworkInterface getParent(); |
| 5225 | method public java.util.Enumeration<java.net.NetworkInterface> getSubInterfaces(); |
| 5226 | method public boolean isLoopback() throws java.net.SocketException; |
| 5227 | method public boolean isPointToPoint() throws java.net.SocketException; |
| 5228 | method public boolean isUp() throws java.net.SocketException; |
| 5229 | method public boolean isVirtual(); |
| 5230 | method public boolean supportsMulticast() throws java.net.SocketException; |
| 5231 | } |
| 5232 | |
| 5233 | public class NoRouteToHostException extends java.net.SocketException { |
| 5234 | ctor public NoRouteToHostException(String); |
| 5235 | ctor public NoRouteToHostException(); |
| 5236 | } |
| 5237 | |
| 5238 | public final class PasswordAuthentication { |
| 5239 | ctor public PasswordAuthentication(String, char[]); |
| 5240 | method public char[] getPassword(); |
| 5241 | method public String getUserName(); |
| 5242 | } |
| 5243 | |
| 5244 | public class PortUnreachableException extends java.net.SocketException { |
| 5245 | ctor public PortUnreachableException(String); |
| 5246 | ctor public PortUnreachableException(); |
| 5247 | } |
| 5248 | |
| 5249 | public class ProtocolException extends java.io.IOException { |
| 5250 | ctor public ProtocolException(String); |
| 5251 | ctor public ProtocolException(); |
| 5252 | } |
| 5253 | |
| 5254 | public interface ProtocolFamily { |
| 5255 | method public String name(); |
| 5256 | } |
| 5257 | |
| 5258 | public class Proxy { |
| 5259 | ctor public Proxy(java.net.Proxy.Type, java.net.SocketAddress); |
| 5260 | method public java.net.SocketAddress address(); |
| 5261 | method public final boolean equals(Object); |
| 5262 | method public final int hashCode(); |
| 5263 | method public java.net.Proxy.Type type(); |
| 5264 | field public static final java.net.Proxy NO_PROXY; |
| 5265 | } |
| 5266 | |
| 5267 | public enum Proxy.Type { |
| 5268 | enum_constant public static final java.net.Proxy.Type DIRECT; |
| 5269 | enum_constant public static final java.net.Proxy.Type HTTP; |
| 5270 | enum_constant public static final java.net.Proxy.Type SOCKS; |
| 5271 | } |
| 5272 | |
| 5273 | public abstract class ProxySelector { |
| 5274 | ctor public ProxySelector(); |
| 5275 | method public abstract void connectFailed(java.net.URI, java.net.SocketAddress, java.io.IOException); |
| 5276 | method public static java.net.ProxySelector getDefault(); |
| 5277 | method public abstract java.util.List<java.net.Proxy> select(java.net.URI); |
| 5278 | method public static void setDefault(java.net.ProxySelector); |
| 5279 | } |
| 5280 | |
| 5281 | public abstract class ResponseCache { |
| 5282 | ctor public ResponseCache(); |
| 5283 | method public abstract java.net.CacheResponse get(java.net.URI, String, java.util.Map<java.lang.String,java.util.List<java.lang.String>>) throws java.io.IOException; |
| 5284 | method public static java.net.ResponseCache getDefault(); |
| 5285 | method public abstract java.net.CacheRequest put(java.net.URI, java.net.URLConnection) throws java.io.IOException; |
| 5286 | method public static void setDefault(java.net.ResponseCache); |
| 5287 | } |
| 5288 | |
| 5289 | public abstract class SecureCacheResponse extends java.net.CacheResponse { |
| 5290 | ctor public SecureCacheResponse(); |
| 5291 | method public abstract String getCipherSuite(); |
| 5292 | method public abstract java.util.List<java.security.cert.Certificate> getLocalCertificateChain(); |
| 5293 | method public abstract java.security.Principal getLocalPrincipal(); |
| 5294 | method public abstract java.security.Principal getPeerPrincipal() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 5295 | method public abstract java.util.List<java.security.cert.Certificate> getServerCertificateChain() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 5296 | } |
| 5297 | |
| 5298 | public class ServerSocket implements java.io.Closeable { |
| 5299 | ctor public ServerSocket() throws java.io.IOException; |
| 5300 | ctor public ServerSocket(int) throws java.io.IOException; |
| 5301 | ctor public ServerSocket(int, int) throws java.io.IOException; |
| 5302 | ctor public ServerSocket(int, int, java.net.InetAddress) throws java.io.IOException; |
| 5303 | method public java.net.Socket accept() throws java.io.IOException; |
| 5304 | method public void bind(java.net.SocketAddress) throws java.io.IOException; |
| 5305 | method public void bind(java.net.SocketAddress, int) throws java.io.IOException; |
| 5306 | method public void close() throws java.io.IOException; |
| 5307 | method public java.nio.channels.ServerSocketChannel getChannel(); |
| 5308 | method public java.net.InetAddress getInetAddress(); |
| 5309 | method public int getLocalPort(); |
| 5310 | method public java.net.SocketAddress getLocalSocketAddress(); |
| 5311 | method public int getReceiveBufferSize() throws java.net.SocketException; |
| 5312 | method public boolean getReuseAddress() throws java.net.SocketException; |
| 5313 | method public int getSoTimeout() throws java.io.IOException; |
| 5314 | method protected final void implAccept(java.net.Socket) throws java.io.IOException; |
| 5315 | method public boolean isBound(); |
| 5316 | method public boolean isClosed(); |
| 5317 | method public void setPerformancePreferences(int, int, int); |
| 5318 | method public void setReceiveBufferSize(int) throws java.net.SocketException; |
| 5319 | method public void setReuseAddress(boolean) throws java.net.SocketException; |
| 5320 | method public void setSoTimeout(int) throws java.net.SocketException; |
| 5321 | method public static void setSocketFactory(java.net.SocketImplFactory) throws java.io.IOException; |
| 5322 | } |
| 5323 | |
| 5324 | public class Socket implements java.io.Closeable { |
| 5325 | ctor public Socket(); |
| 5326 | ctor public Socket(java.net.Proxy); |
| 5327 | ctor protected Socket(java.net.SocketImpl) throws java.net.SocketException; |
| 5328 | ctor public Socket(String, int) throws java.io.IOException, java.net.UnknownHostException; |
| 5329 | ctor public Socket(java.net.InetAddress, int) throws java.io.IOException; |
| 5330 | ctor public Socket(String, int, java.net.InetAddress, int) throws java.io.IOException; |
| 5331 | ctor public Socket(java.net.InetAddress, int, java.net.InetAddress, int) throws java.io.IOException; |
| 5332 | ctor @Deprecated public Socket(String, int, boolean) throws java.io.IOException; |
| 5333 | ctor @Deprecated public Socket(java.net.InetAddress, int, boolean) throws java.io.IOException; |
| 5334 | method public void bind(java.net.SocketAddress) throws java.io.IOException; |
| 5335 | method public void close() throws java.io.IOException; |
| 5336 | method public void connect(java.net.SocketAddress) throws java.io.IOException; |
| 5337 | method public void connect(java.net.SocketAddress, int) throws java.io.IOException; |
| 5338 | method public java.nio.channels.SocketChannel getChannel(); |
| 5339 | method public java.net.InetAddress getInetAddress(); |
| 5340 | method public java.io.InputStream getInputStream() throws java.io.IOException; |
| 5341 | method public boolean getKeepAlive() throws java.net.SocketException; |
| 5342 | method public java.net.InetAddress getLocalAddress(); |
| 5343 | method public int getLocalPort(); |
| 5344 | method public java.net.SocketAddress getLocalSocketAddress(); |
| 5345 | method public boolean getOOBInline() throws java.net.SocketException; |
| 5346 | method public java.io.OutputStream getOutputStream() throws java.io.IOException; |
| 5347 | method public int getPort(); |
| 5348 | method public int getReceiveBufferSize() throws java.net.SocketException; |
| 5349 | method public java.net.SocketAddress getRemoteSocketAddress(); |
| 5350 | method public boolean getReuseAddress() throws java.net.SocketException; |
| 5351 | method public int getSendBufferSize() throws java.net.SocketException; |
| 5352 | method public int getSoLinger() throws java.net.SocketException; |
| 5353 | method public int getSoTimeout() throws java.net.SocketException; |
| 5354 | method public boolean getTcpNoDelay() throws java.net.SocketException; |
| 5355 | method public int getTrafficClass() throws java.net.SocketException; |
| 5356 | method public boolean isBound(); |
| 5357 | method public boolean isClosed(); |
| 5358 | method public boolean isConnected(); |
| 5359 | method public boolean isInputShutdown(); |
| 5360 | method public boolean isOutputShutdown(); |
| 5361 | method public void sendUrgentData(int) throws java.io.IOException; |
| 5362 | method public void setKeepAlive(boolean) throws java.net.SocketException; |
| 5363 | method public void setOOBInline(boolean) throws java.net.SocketException; |
| 5364 | method public void setPerformancePreferences(int, int, int); |
| 5365 | method public void setReceiveBufferSize(int) throws java.net.SocketException; |
| 5366 | method public void setReuseAddress(boolean) throws java.net.SocketException; |
| 5367 | method public void setSendBufferSize(int) throws java.net.SocketException; |
| 5368 | method public void setSoLinger(boolean, int) throws java.net.SocketException; |
| 5369 | method public void setSoTimeout(int) throws java.net.SocketException; |
| 5370 | method public static void setSocketImplFactory(java.net.SocketImplFactory) throws java.io.IOException; |
| 5371 | method public void setTcpNoDelay(boolean) throws java.net.SocketException; |
| 5372 | method public void setTrafficClass(int) throws java.net.SocketException; |
| 5373 | method public void shutdownInput() throws java.io.IOException; |
| 5374 | method public void shutdownOutput() throws java.io.IOException; |
| 5375 | } |
| 5376 | |
| 5377 | public abstract class SocketAddress implements java.io.Serializable { |
| 5378 | ctor public SocketAddress(); |
| 5379 | } |
| 5380 | |
| 5381 | public class SocketException extends java.io.IOException { |
| 5382 | ctor public SocketException(String); |
| 5383 | ctor public SocketException(); |
| 5384 | } |
| 5385 | |
| 5386 | public abstract class SocketImpl implements java.net.SocketOptions { |
| 5387 | ctor public SocketImpl(); |
| 5388 | method protected abstract void accept(java.net.SocketImpl) throws java.io.IOException; |
| 5389 | method protected abstract int available() throws java.io.IOException; |
| 5390 | method protected abstract void bind(java.net.InetAddress, int) throws java.io.IOException; |
| 5391 | method protected abstract void close() throws java.io.IOException; |
| 5392 | method protected abstract void connect(String, int) throws java.io.IOException; |
| 5393 | method protected abstract void connect(java.net.InetAddress, int) throws java.io.IOException; |
| 5394 | method protected abstract void connect(java.net.SocketAddress, int) throws java.io.IOException; |
| 5395 | method protected abstract void create(boolean) throws java.io.IOException; |
| 5396 | method protected java.io.FileDescriptor getFileDescriptor(); |
| 5397 | method protected java.net.InetAddress getInetAddress(); |
| 5398 | method protected abstract java.io.InputStream getInputStream() throws java.io.IOException; |
| 5399 | method protected int getLocalPort(); |
| 5400 | method protected abstract java.io.OutputStream getOutputStream() throws java.io.IOException; |
| 5401 | method protected int getPort(); |
| 5402 | method protected abstract void listen(int) throws java.io.IOException; |
| 5403 | method protected abstract void sendUrgentData(int) throws java.io.IOException; |
| 5404 | method protected void setPerformancePreferences(int, int, int); |
| 5405 | method protected void shutdownInput() throws java.io.IOException; |
| 5406 | method protected void shutdownOutput() throws java.io.IOException; |
| 5407 | method protected boolean supportsUrgentData(); |
| 5408 | field protected java.net.InetAddress address; |
| 5409 | field protected java.io.FileDescriptor fd; |
| 5410 | field protected int localport; |
| 5411 | field protected int port; |
| 5412 | } |
| 5413 | |
| 5414 | public interface SocketImplFactory { |
| 5415 | method public java.net.SocketImpl createSocketImpl(); |
| 5416 | } |
| 5417 | |
| 5418 | public interface SocketOption<T> { |
| 5419 | method public String name(); |
| 5420 | method public Class<T> type(); |
| 5421 | } |
| 5422 | |
| 5423 | public interface SocketOptions { |
| 5424 | method public Object getOption(int) throws java.net.SocketException; |
| 5425 | method public void setOption(int, Object) throws java.net.SocketException; |
| 5426 | field public static final int IP_MULTICAST_IF = 16; // 0x10 |
| 5427 | field public static final int IP_MULTICAST_IF2 = 31; // 0x1f |
| 5428 | field public static final int IP_MULTICAST_LOOP = 18; // 0x12 |
| 5429 | field public static final int IP_TOS = 3; // 0x3 |
| 5430 | field public static final int SO_BINDADDR = 15; // 0xf |
| 5431 | field public static final int SO_BROADCAST = 32; // 0x20 |
| 5432 | field public static final int SO_KEEPALIVE = 8; // 0x8 |
| 5433 | field public static final int SO_LINGER = 128; // 0x80 |
| 5434 | field public static final int SO_OOBINLINE = 4099; // 0x1003 |
| 5435 | field public static final int SO_RCVBUF = 4098; // 0x1002 |
| 5436 | field public static final int SO_REUSEADDR = 4; // 0x4 |
| 5437 | field public static final int SO_SNDBUF = 4097; // 0x1001 |
| 5438 | field public static final int SO_TIMEOUT = 4102; // 0x1006 |
| 5439 | field public static final int TCP_NODELAY = 1; // 0x1 |
| 5440 | } |
| 5441 | |
| 5442 | public final class SocketPermission extends java.security.Permission implements java.io.Serializable { |
| 5443 | ctor public SocketPermission(String, String); |
| 5444 | method public String getActions(); |
| 5445 | method public boolean implies(java.security.Permission); |
| 5446 | } |
| 5447 | |
| 5448 | public class SocketTimeoutException extends java.io.InterruptedIOException { |
| 5449 | ctor public SocketTimeoutException(String); |
| 5450 | ctor public SocketTimeoutException(); |
| 5451 | } |
| 5452 | |
| 5453 | public enum StandardProtocolFamily implements java.net.ProtocolFamily { |
| 5454 | enum_constant public static final java.net.StandardProtocolFamily INET; |
| 5455 | enum_constant public static final java.net.StandardProtocolFamily INET6; |
| 5456 | } |
| 5457 | |
| 5458 | public final class StandardSocketOptions { |
| 5459 | field public static final java.net.SocketOption<java.net.NetworkInterface> IP_MULTICAST_IF; |
| 5460 | field public static final java.net.SocketOption<java.lang.Boolean> IP_MULTICAST_LOOP; |
| 5461 | field public static final java.net.SocketOption<java.lang.Integer> IP_MULTICAST_TTL; |
| 5462 | field public static final java.net.SocketOption<java.lang.Integer> IP_TOS; |
| 5463 | field public static final java.net.SocketOption<java.lang.Boolean> SO_BROADCAST; |
| 5464 | field public static final java.net.SocketOption<java.lang.Boolean> SO_KEEPALIVE; |
| 5465 | field public static final java.net.SocketOption<java.lang.Integer> SO_LINGER; |
| 5466 | field public static final java.net.SocketOption<java.lang.Integer> SO_RCVBUF; |
| 5467 | field public static final java.net.SocketOption<java.lang.Boolean> SO_REUSEADDR; |
| 5468 | field public static final java.net.SocketOption<java.lang.Integer> SO_SNDBUF; |
| 5469 | field public static final java.net.SocketOption<java.lang.Boolean> TCP_NODELAY; |
| 5470 | } |
| 5471 | |
| 5472 | public final class URI implements java.lang.Comparable<java.net.URI> java.io.Serializable { |
| 5473 | ctor public URI(String) throws java.net.URISyntaxException; |
| 5474 | ctor public URI(String, String, String, int, String, String, String) throws java.net.URISyntaxException; |
| 5475 | ctor public URI(String, String, String, String, String) throws java.net.URISyntaxException; |
| 5476 | ctor public URI(String, String, String, String) throws java.net.URISyntaxException; |
| 5477 | ctor public URI(String, String, String) throws java.net.URISyntaxException; |
| 5478 | method public int compareTo(java.net.URI); |
| 5479 | method public static java.net.URI create(String); |
| 5480 | method public String getAuthority(); |
| 5481 | method public String getFragment(); |
| 5482 | method public String getHost(); |
| 5483 | method public String getPath(); |
| 5484 | method public int getPort(); |
| 5485 | method public String getQuery(); |
| 5486 | method public String getRawAuthority(); |
| 5487 | method public String getRawFragment(); |
| 5488 | method public String getRawPath(); |
| 5489 | method public String getRawQuery(); |
| 5490 | method public String getRawSchemeSpecificPart(); |
| 5491 | method public String getRawUserInfo(); |
| 5492 | method public String getScheme(); |
| 5493 | method public String getSchemeSpecificPart(); |
| 5494 | method public String getUserInfo(); |
| 5495 | method public boolean isAbsolute(); |
| 5496 | method public boolean isOpaque(); |
| 5497 | method public java.net.URI normalize(); |
| 5498 | method public java.net.URI parseServerAuthority() throws java.net.URISyntaxException; |
| 5499 | method public java.net.URI relativize(java.net.URI); |
| 5500 | method public java.net.URI resolve(java.net.URI); |
| 5501 | method public java.net.URI resolve(String); |
| 5502 | method public String toASCIIString(); |
| 5503 | method public java.net.URL toURL() throws java.net.MalformedURLException; |
| 5504 | } |
| 5505 | |
| 5506 | public class URISyntaxException extends java.lang.Exception { |
| 5507 | ctor public URISyntaxException(String, String, int); |
| 5508 | ctor public URISyntaxException(String, String); |
| 5509 | method public int getIndex(); |
| 5510 | method public String getInput(); |
| 5511 | method public String getReason(); |
| 5512 | } |
| 5513 | |
| 5514 | public final class URL implements java.io.Serializable { |
| 5515 | ctor public URL(String, String, int, String) throws java.net.MalformedURLException; |
| 5516 | ctor public URL(String, String, String) throws java.net.MalformedURLException; |
| 5517 | ctor public URL(String, String, int, String, java.net.URLStreamHandler) throws java.net.MalformedURLException; |
| 5518 | ctor public URL(String) throws java.net.MalformedURLException; |
| 5519 | ctor public URL(java.net.URL, String) throws java.net.MalformedURLException; |
| 5520 | ctor public URL(java.net.URL, String, java.net.URLStreamHandler) throws java.net.MalformedURLException; |
| 5521 | method public String getAuthority(); |
| 5522 | method public Object getContent() throws java.io.IOException; |
| 5523 | method public Object getContent(Class[]) throws java.io.IOException; |
| 5524 | method public int getDefaultPort(); |
| 5525 | method public String getFile(); |
| 5526 | method public String getHost(); |
| 5527 | method public String getPath(); |
| 5528 | method public int getPort(); |
| 5529 | method public String getProtocol(); |
| 5530 | method public String getQuery(); |
| 5531 | method public String getRef(); |
| 5532 | method public String getUserInfo(); |
| 5533 | method public java.net.URLConnection openConnection() throws java.io.IOException; |
| 5534 | method public java.net.URLConnection openConnection(java.net.Proxy) throws java.io.IOException; |
| 5535 | method public java.io.InputStream openStream() throws java.io.IOException; |
| 5536 | method public boolean sameFile(java.net.URL); |
| 5537 | method public static void setURLStreamHandlerFactory(java.net.URLStreamHandlerFactory); |
| 5538 | method public String toExternalForm(); |
| 5539 | method public java.net.URI toURI() throws java.net.URISyntaxException; |
| 5540 | } |
| 5541 | |
| 5542 | public class URLClassLoader extends java.security.SecureClassLoader implements java.io.Closeable { |
| 5543 | ctor public URLClassLoader(java.net.URL[], ClassLoader); |
| 5544 | ctor public URLClassLoader(java.net.URL[]); |
| 5545 | ctor public URLClassLoader(java.net.URL[], ClassLoader, java.net.URLStreamHandlerFactory); |
| 5546 | method protected void addURL(java.net.URL); |
| 5547 | method public void close() throws java.io.IOException; |
| 5548 | method protected Package definePackage(String, java.util.jar.Manifest, java.net.URL) throws java.lang.IllegalArgumentException; |
| 5549 | method public java.net.URL findResource(String); |
| 5550 | method public java.util.Enumeration<java.net.URL> findResources(String) throws java.io.IOException; |
| 5551 | method public java.net.URL[] getURLs(); |
| 5552 | method public static java.net.URLClassLoader newInstance(java.net.URL[], ClassLoader); |
| 5553 | method public static java.net.URLClassLoader newInstance(java.net.URL[]); |
| 5554 | } |
| 5555 | |
| 5556 | public abstract class URLConnection { |
| 5557 | ctor protected URLConnection(java.net.URL); |
| 5558 | method public void addRequestProperty(String, String); |
| 5559 | method public abstract void connect() throws java.io.IOException; |
| 5560 | method public boolean getAllowUserInteraction(); |
| 5561 | method public int getConnectTimeout(); |
| 5562 | method public Object getContent() throws java.io.IOException; |
| 5563 | method public Object getContent(Class[]) throws java.io.IOException; |
| 5564 | method public String getContentEncoding(); |
| 5565 | method public int getContentLength(); |
| 5566 | method public long getContentLengthLong(); |
| 5567 | method public String getContentType(); |
| 5568 | method public long getDate(); |
| 5569 | method public static boolean getDefaultAllowUserInteraction(); |
| 5570 | method @Deprecated public static String getDefaultRequestProperty(String); |
| 5571 | method public boolean getDefaultUseCaches(); |
| 5572 | method public boolean getDoInput(); |
| 5573 | method public boolean getDoOutput(); |
| 5574 | method public long getExpiration(); |
| 5575 | method public static java.net.FileNameMap getFileNameMap(); |
| 5576 | method public String getHeaderField(String); |
| 5577 | method public String getHeaderField(int); |
| 5578 | method public long getHeaderFieldDate(String, long); |
| 5579 | method public int getHeaderFieldInt(String, int); |
| 5580 | method public String getHeaderFieldKey(int); |
| 5581 | method public long getHeaderFieldLong(String, long); |
| 5582 | method public java.util.Map<java.lang.String,java.util.List<java.lang.String>> getHeaderFields(); |
| 5583 | method public long getIfModifiedSince(); |
| 5584 | method public java.io.InputStream getInputStream() throws java.io.IOException; |
| 5585 | method public long getLastModified(); |
| 5586 | method public java.io.OutputStream getOutputStream() throws java.io.IOException; |
| 5587 | method public java.security.Permission getPermission() throws java.io.IOException; |
| 5588 | method public int getReadTimeout(); |
| 5589 | method public java.util.Map<java.lang.String,java.util.List<java.lang.String>> getRequestProperties(); |
| 5590 | method public String getRequestProperty(String); |
| 5591 | method public java.net.URL getURL(); |
| 5592 | method public boolean getUseCaches(); |
| 5593 | method public static String guessContentTypeFromName(String); |
| 5594 | method public static String guessContentTypeFromStream(java.io.InputStream) throws java.io.IOException; |
| 5595 | method public void setAllowUserInteraction(boolean); |
| 5596 | method public void setConnectTimeout(int); |
| 5597 | method public static void setContentHandlerFactory(java.net.ContentHandlerFactory); |
| 5598 | method public static void setDefaultAllowUserInteraction(boolean); |
| 5599 | method @Deprecated public static void setDefaultRequestProperty(String, String); |
| 5600 | method public void setDefaultUseCaches(boolean); |
| 5601 | method public void setDoInput(boolean); |
| 5602 | method public void setDoOutput(boolean); |
| 5603 | method public static void setFileNameMap(java.net.FileNameMap); |
| 5604 | method public void setIfModifiedSince(long); |
| 5605 | method public void setReadTimeout(int); |
| 5606 | method public void setRequestProperty(String, String); |
| 5607 | method public void setUseCaches(boolean); |
| 5608 | field protected boolean allowUserInteraction; |
| 5609 | field protected boolean connected; |
| 5610 | field protected boolean doInput; |
| 5611 | field protected boolean doOutput; |
| 5612 | field protected long ifModifiedSince; |
| 5613 | field protected java.net.URL url; |
| 5614 | field protected boolean useCaches; |
| 5615 | } |
| 5616 | |
| 5617 | public class URLDecoder { |
| 5618 | ctor public URLDecoder(); |
| 5619 | method @Deprecated public static String decode(String); |
| 5620 | method public static String decode(String, String) throws java.io.UnsupportedEncodingException; |
| 5621 | } |
| 5622 | |
| 5623 | public class URLEncoder { |
| 5624 | method @Deprecated public static String encode(String); |
| 5625 | method public static String encode(String, String) throws java.io.UnsupportedEncodingException; |
| 5626 | } |
| 5627 | |
| 5628 | public abstract class URLStreamHandler { |
| 5629 | ctor public URLStreamHandler(); |
| 5630 | method protected boolean equals(java.net.URL, java.net.URL); |
| 5631 | method protected int getDefaultPort(); |
| 5632 | method protected java.net.InetAddress getHostAddress(java.net.URL); |
| 5633 | method protected int hashCode(java.net.URL); |
| 5634 | method protected boolean hostsEqual(java.net.URL, java.net.URL); |
| 5635 | method protected abstract java.net.URLConnection openConnection(java.net.URL) throws java.io.IOException; |
| 5636 | method protected java.net.URLConnection openConnection(java.net.URL, java.net.Proxy) throws java.io.IOException; |
| 5637 | method protected void parseURL(java.net.URL, String, int, int); |
| 5638 | method protected boolean sameFile(java.net.URL, java.net.URL); |
| 5639 | method protected void setURL(java.net.URL, String, String, int, String, String, String, String, String); |
| 5640 | method @Deprecated protected void setURL(java.net.URL, String, String, int, String, String); |
| 5641 | method protected String toExternalForm(java.net.URL); |
| 5642 | } |
| 5643 | |
| 5644 | public interface URLStreamHandlerFactory { |
| 5645 | method public java.net.URLStreamHandler createURLStreamHandler(String); |
| 5646 | } |
| 5647 | |
| 5648 | public class UnknownHostException extends java.io.IOException { |
| 5649 | ctor public UnknownHostException(String); |
| 5650 | ctor public UnknownHostException(); |
| 5651 | } |
| 5652 | |
| 5653 | public class UnknownServiceException extends java.io.IOException { |
| 5654 | ctor public UnknownServiceException(); |
| 5655 | ctor public UnknownServiceException(String); |
| 5656 | } |
| 5657 | |
| 5658 | } |
| 5659 | |
| 5660 | package java.nio { |
| 5661 | |
| 5662 | public abstract class Buffer { |
| 5663 | method public abstract Object array(); |
| 5664 | method public abstract int arrayOffset(); |
| 5665 | method public final int capacity(); |
| 5666 | method public java.nio.Buffer clear(); |
| 5667 | method public java.nio.Buffer flip(); |
| 5668 | method public abstract boolean hasArray(); |
| 5669 | method public final boolean hasRemaining(); |
| 5670 | method public abstract boolean isDirect(); |
| 5671 | method public abstract boolean isReadOnly(); |
| 5672 | method public final int limit(); |
| 5673 | method public java.nio.Buffer limit(int); |
| 5674 | method public java.nio.Buffer mark(); |
| 5675 | method public final int position(); |
| 5676 | method public java.nio.Buffer position(int); |
| 5677 | method public final int remaining(); |
| 5678 | method public java.nio.Buffer reset(); |
| 5679 | method public java.nio.Buffer rewind(); |
| 5680 | } |
| 5681 | |
| 5682 | public class BufferOverflowException extends java.lang.RuntimeException { |
| 5683 | ctor public BufferOverflowException(); |
| 5684 | } |
| 5685 | |
| 5686 | public class BufferUnderflowException extends java.lang.RuntimeException { |
| 5687 | ctor public BufferUnderflowException(); |
| 5688 | } |
| 5689 | |
| 5690 | public abstract class ByteBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.ByteBuffer> { |
| 5691 | method @NonNull public static java.nio.ByteBuffer allocate(int); |
| 5692 | method @NonNull public static java.nio.ByteBuffer allocateDirect(int); |
| 5693 | method @NonNull public final byte[] array(); |
| 5694 | method public final int arrayOffset(); |
| 5695 | method @NonNull public abstract java.nio.CharBuffer asCharBuffer(); |
| 5696 | method @NonNull public abstract java.nio.DoubleBuffer asDoubleBuffer(); |
| 5697 | method @NonNull public abstract java.nio.FloatBuffer asFloatBuffer(); |
| 5698 | method @NonNull public abstract java.nio.IntBuffer asIntBuffer(); |
| 5699 | method @NonNull public abstract java.nio.LongBuffer asLongBuffer(); |
| 5700 | method @NonNull public abstract java.nio.ByteBuffer asReadOnlyBuffer(); |
| 5701 | method @NonNull public abstract java.nio.ShortBuffer asShortBuffer(); |
| 5702 | method @NonNull public abstract java.nio.ByteBuffer compact(); |
| 5703 | method public int compareTo(@NonNull java.nio.ByteBuffer); |
| 5704 | method @NonNull public abstract java.nio.ByteBuffer duplicate(); |
| 5705 | method public abstract byte get(); |
| 5706 | method public abstract byte get(int); |
| 5707 | method @NonNull public java.nio.ByteBuffer get(@NonNull byte[], int, int); |
| 5708 | method @NonNull public java.nio.ByteBuffer get(@NonNull byte[]); |
| 5709 | method public abstract char getChar(); |
| 5710 | method public abstract char getChar(int); |
| 5711 | method public abstract double getDouble(); |
| 5712 | method public abstract double getDouble(int); |
| 5713 | method public abstract float getFloat(); |
| 5714 | method public abstract float getFloat(int); |
| 5715 | method public abstract int getInt(); |
| 5716 | method public abstract int getInt(int); |
| 5717 | method public abstract long getLong(); |
| 5718 | method public abstract long getLong(int); |
| 5719 | method public abstract short getShort(); |
| 5720 | method public abstract short getShort(int); |
| 5721 | method public final boolean hasArray(); |
| 5722 | method @NonNull public final java.nio.ByteOrder order(); |
| 5723 | method @NonNull public final java.nio.ByteBuffer order(@NonNull java.nio.ByteOrder); |
| 5724 | method @NonNull public abstract java.nio.ByteBuffer put(byte); |
| 5725 | method @NonNull public abstract java.nio.ByteBuffer put(int, byte); |
| 5726 | method @NonNull public java.nio.ByteBuffer put(@NonNull java.nio.ByteBuffer); |
| 5727 | method @NonNull public java.nio.ByteBuffer put(@NonNull byte[], int, int); |
| 5728 | method @NonNull public final java.nio.ByteBuffer put(@NonNull byte[]); |
| 5729 | method @NonNull public abstract java.nio.ByteBuffer putChar(char); |
| 5730 | method @NonNull public abstract java.nio.ByteBuffer putChar(int, char); |
| 5731 | method @NonNull public abstract java.nio.ByteBuffer putDouble(double); |
| 5732 | method @NonNull public abstract java.nio.ByteBuffer putDouble(int, double); |
| 5733 | method @NonNull public abstract java.nio.ByteBuffer putFloat(float); |
| 5734 | method @NonNull public abstract java.nio.ByteBuffer putFloat(int, float); |
| 5735 | method @NonNull public abstract java.nio.ByteBuffer putInt(int); |
| 5736 | method @NonNull public abstract java.nio.ByteBuffer putInt(int, int); |
| 5737 | method @NonNull public abstract java.nio.ByteBuffer putLong(long); |
| 5738 | method @NonNull public abstract java.nio.ByteBuffer putLong(int, long); |
| 5739 | method @NonNull public abstract java.nio.ByteBuffer putShort(short); |
| 5740 | method @NonNull public abstract java.nio.ByteBuffer putShort(int, short); |
| 5741 | method @NonNull public abstract java.nio.ByteBuffer slice(); |
| 5742 | method @NonNull public static java.nio.ByteBuffer wrap(@NonNull byte[], int, int); |
| 5743 | method @NonNull public static java.nio.ByteBuffer wrap(@NonNull byte[]); |
| 5744 | } |
| 5745 | |
| 5746 | public final class ByteOrder { |
| 5747 | method public static java.nio.ByteOrder nativeOrder(); |
| 5748 | field public static final java.nio.ByteOrder BIG_ENDIAN; |
| 5749 | field public static final java.nio.ByteOrder LITTLE_ENDIAN; |
| 5750 | } |
| 5751 | |
| 5752 | public abstract class CharBuffer extends java.nio.Buffer implements java.lang.Appendable java.lang.CharSequence java.lang.Comparable<java.nio.CharBuffer> java.lang.Readable { |
| 5753 | method public static java.nio.CharBuffer allocate(int); |
| 5754 | method public java.nio.CharBuffer append(CharSequence); |
| 5755 | method public java.nio.CharBuffer append(CharSequence, int, int); |
| 5756 | method public java.nio.CharBuffer append(char); |
| 5757 | method public final char[] array(); |
| 5758 | method public final int arrayOffset(); |
| 5759 | method public abstract java.nio.CharBuffer asReadOnlyBuffer(); |
| 5760 | method public final char charAt(int); |
| 5761 | method public abstract java.nio.CharBuffer compact(); |
| 5762 | method public int compareTo(java.nio.CharBuffer); |
| 5763 | method public abstract java.nio.CharBuffer duplicate(); |
| 5764 | method public abstract char get(); |
| 5765 | method public abstract char get(int); |
| 5766 | method public java.nio.CharBuffer get(char[], int, int); |
| 5767 | method public java.nio.CharBuffer get(char[]); |
| 5768 | method public final boolean hasArray(); |
| 5769 | method public final int length(); |
| 5770 | method public abstract java.nio.ByteOrder order(); |
| 5771 | method public abstract java.nio.CharBuffer put(char); |
| 5772 | method public abstract java.nio.CharBuffer put(int, char); |
| 5773 | method public java.nio.CharBuffer put(java.nio.CharBuffer); |
| 5774 | method public java.nio.CharBuffer put(char[], int, int); |
| 5775 | method public final java.nio.CharBuffer put(char[]); |
| 5776 | method public java.nio.CharBuffer put(String, int, int); |
| 5777 | method public final java.nio.CharBuffer put(String); |
| 5778 | method public int read(java.nio.CharBuffer) throws java.io.IOException; |
| 5779 | method public abstract java.nio.CharBuffer slice(); |
| 5780 | method public abstract java.nio.CharBuffer subSequence(int, int); |
| 5781 | method public static java.nio.CharBuffer wrap(char[], int, int); |
| 5782 | method public static java.nio.CharBuffer wrap(char[]); |
| 5783 | method public static java.nio.CharBuffer wrap(CharSequence, int, int); |
| 5784 | method public static java.nio.CharBuffer wrap(CharSequence); |
| 5785 | } |
| 5786 | |
| 5787 | public abstract class DoubleBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.DoubleBuffer> { |
| 5788 | method public static java.nio.DoubleBuffer allocate(int); |
| 5789 | method public final double[] array(); |
| 5790 | method public final int arrayOffset(); |
| 5791 | method public abstract java.nio.DoubleBuffer asReadOnlyBuffer(); |
| 5792 | method public abstract java.nio.DoubleBuffer compact(); |
| 5793 | method public int compareTo(java.nio.DoubleBuffer); |
| 5794 | method public abstract java.nio.DoubleBuffer duplicate(); |
| 5795 | method public abstract double get(); |
| 5796 | method public abstract double get(int); |
| 5797 | method public java.nio.DoubleBuffer get(double[], int, int); |
| 5798 | method public java.nio.DoubleBuffer get(double[]); |
| 5799 | method public final boolean hasArray(); |
| 5800 | method public abstract java.nio.ByteOrder order(); |
| 5801 | method public abstract java.nio.DoubleBuffer put(double); |
| 5802 | method public abstract java.nio.DoubleBuffer put(int, double); |
| 5803 | method public java.nio.DoubleBuffer put(java.nio.DoubleBuffer); |
| 5804 | method public java.nio.DoubleBuffer put(double[], int, int); |
| 5805 | method public final java.nio.DoubleBuffer put(double[]); |
| 5806 | method public abstract java.nio.DoubleBuffer slice(); |
| 5807 | method public static java.nio.DoubleBuffer wrap(double[], int, int); |
| 5808 | method public static java.nio.DoubleBuffer wrap(double[]); |
| 5809 | } |
| 5810 | |
| 5811 | public abstract class FloatBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.FloatBuffer> { |
| 5812 | method public static java.nio.FloatBuffer allocate(int); |
| 5813 | method public final float[] array(); |
| 5814 | method public final int arrayOffset(); |
| 5815 | method public abstract java.nio.FloatBuffer asReadOnlyBuffer(); |
| 5816 | method public abstract java.nio.FloatBuffer compact(); |
| 5817 | method public int compareTo(java.nio.FloatBuffer); |
| 5818 | method public abstract java.nio.FloatBuffer duplicate(); |
| 5819 | method public abstract float get(); |
| 5820 | method public abstract float get(int); |
| 5821 | method public java.nio.FloatBuffer get(float[], int, int); |
| 5822 | method public java.nio.FloatBuffer get(float[]); |
| 5823 | method public final boolean hasArray(); |
| 5824 | method public abstract java.nio.ByteOrder order(); |
| 5825 | method public abstract java.nio.FloatBuffer put(float); |
| 5826 | method public abstract java.nio.FloatBuffer put(int, float); |
| 5827 | method public java.nio.FloatBuffer put(java.nio.FloatBuffer); |
| 5828 | method public java.nio.FloatBuffer put(float[], int, int); |
| 5829 | method public final java.nio.FloatBuffer put(float[]); |
| 5830 | method public abstract java.nio.FloatBuffer slice(); |
| 5831 | method public static java.nio.FloatBuffer wrap(float[], int, int); |
| 5832 | method public static java.nio.FloatBuffer wrap(float[]); |
| 5833 | } |
| 5834 | |
| 5835 | public abstract class IntBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.IntBuffer> { |
| 5836 | method public static java.nio.IntBuffer allocate(int); |
| 5837 | method public final int[] array(); |
| 5838 | method public final int arrayOffset(); |
| 5839 | method public abstract java.nio.IntBuffer asReadOnlyBuffer(); |
| 5840 | method public abstract java.nio.IntBuffer compact(); |
| 5841 | method public int compareTo(java.nio.IntBuffer); |
| 5842 | method public abstract java.nio.IntBuffer duplicate(); |
| 5843 | method public abstract int get(); |
| 5844 | method public abstract int get(int); |
| 5845 | method public java.nio.IntBuffer get(int[], int, int); |
| 5846 | method public java.nio.IntBuffer get(int[]); |
| 5847 | method public final boolean hasArray(); |
| 5848 | method public abstract java.nio.ByteOrder order(); |
| 5849 | method public abstract java.nio.IntBuffer put(int); |
| 5850 | method public abstract java.nio.IntBuffer put(int, int); |
| 5851 | method public java.nio.IntBuffer put(java.nio.IntBuffer); |
| 5852 | method public java.nio.IntBuffer put(int[], int, int); |
| 5853 | method public final java.nio.IntBuffer put(int[]); |
| 5854 | method public abstract java.nio.IntBuffer slice(); |
| 5855 | method public static java.nio.IntBuffer wrap(int[], int, int); |
| 5856 | method public static java.nio.IntBuffer wrap(int[]); |
| 5857 | } |
| 5858 | |
| 5859 | public class InvalidMarkException extends java.lang.IllegalStateException { |
| 5860 | ctor public InvalidMarkException(); |
| 5861 | } |
| 5862 | |
| 5863 | public abstract class LongBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.LongBuffer> { |
| 5864 | method public static java.nio.LongBuffer allocate(int); |
| 5865 | method public final long[] array(); |
| 5866 | method public final int arrayOffset(); |
| 5867 | method public abstract java.nio.LongBuffer asReadOnlyBuffer(); |
| 5868 | method public abstract java.nio.LongBuffer compact(); |
| 5869 | method public int compareTo(java.nio.LongBuffer); |
| 5870 | method public abstract java.nio.LongBuffer duplicate(); |
| 5871 | method public abstract long get(); |
| 5872 | method public abstract long get(int); |
| 5873 | method public java.nio.LongBuffer get(long[], int, int); |
| 5874 | method public java.nio.LongBuffer get(long[]); |
| 5875 | method public final boolean hasArray(); |
| 5876 | method public abstract java.nio.ByteOrder order(); |
| 5877 | method public abstract java.nio.LongBuffer put(long); |
| 5878 | method public abstract java.nio.LongBuffer put(int, long); |
| 5879 | method public java.nio.LongBuffer put(java.nio.LongBuffer); |
| 5880 | method public java.nio.LongBuffer put(long[], int, int); |
| 5881 | method public final java.nio.LongBuffer put(long[]); |
| 5882 | method public abstract java.nio.LongBuffer slice(); |
| 5883 | method public static java.nio.LongBuffer wrap(long[], int, int); |
| 5884 | method public static java.nio.LongBuffer wrap(long[]); |
| 5885 | } |
| 5886 | |
| 5887 | public abstract class MappedByteBuffer extends java.nio.ByteBuffer { |
| 5888 | method public final java.nio.MappedByteBuffer force(); |
| 5889 | method public final boolean isLoaded(); |
| 5890 | method public final java.nio.MappedByteBuffer load(); |
| 5891 | } |
| 5892 | |
| 5893 | public class ReadOnlyBufferException extends java.lang.UnsupportedOperationException { |
| 5894 | ctor public ReadOnlyBufferException(); |
| 5895 | } |
| 5896 | |
| 5897 | public abstract class ShortBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.ShortBuffer> { |
| 5898 | method public static java.nio.ShortBuffer allocate(int); |
| 5899 | method public final short[] array(); |
| 5900 | method public final int arrayOffset(); |
| 5901 | method public abstract java.nio.ShortBuffer asReadOnlyBuffer(); |
| 5902 | method public abstract java.nio.ShortBuffer compact(); |
| 5903 | method public int compareTo(java.nio.ShortBuffer); |
| 5904 | method public abstract java.nio.ShortBuffer duplicate(); |
| 5905 | method public abstract short get(); |
| 5906 | method public abstract short get(int); |
| 5907 | method public java.nio.ShortBuffer get(short[], int, int); |
| 5908 | method public java.nio.ShortBuffer get(short[]); |
| 5909 | method public final boolean hasArray(); |
| 5910 | method public abstract java.nio.ByteOrder order(); |
| 5911 | method public abstract java.nio.ShortBuffer put(short); |
| 5912 | method public abstract java.nio.ShortBuffer put(int, short); |
| 5913 | method public java.nio.ShortBuffer put(java.nio.ShortBuffer); |
| 5914 | method public java.nio.ShortBuffer put(short[], int, int); |
| 5915 | method public final java.nio.ShortBuffer put(short[]); |
| 5916 | method public abstract java.nio.ShortBuffer slice(); |
| 5917 | method public static java.nio.ShortBuffer wrap(short[], int, int); |
| 5918 | method public static java.nio.ShortBuffer wrap(short[]); |
| 5919 | } |
| 5920 | |
| 5921 | } |
| 5922 | |
| 5923 | package java.nio.channels { |
| 5924 | |
| 5925 | public class AcceptPendingException extends java.lang.IllegalStateException { |
| 5926 | ctor public AcceptPendingException(); |
| 5927 | } |
| 5928 | |
| 5929 | public class AlreadyBoundException extends java.lang.IllegalStateException { |
| 5930 | ctor public AlreadyBoundException(); |
| 5931 | } |
| 5932 | |
| 5933 | public class AlreadyConnectedException extends java.lang.IllegalStateException { |
| 5934 | ctor public AlreadyConnectedException(); |
| 5935 | } |
| 5936 | |
| 5937 | public interface AsynchronousByteChannel extends java.nio.channels.AsynchronousChannel { |
| 5938 | method public <A> void read(java.nio.ByteBuffer, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 5939 | method public java.util.concurrent.Future<java.lang.Integer> read(java.nio.ByteBuffer); |
| 5940 | method public <A> void write(java.nio.ByteBuffer, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 5941 | method public java.util.concurrent.Future<java.lang.Integer> write(java.nio.ByteBuffer); |
| 5942 | } |
| 5943 | |
| 5944 | public interface AsynchronousChannel extends java.nio.channels.Channel { |
| 5945 | } |
| 5946 | |
| 5947 | public abstract class AsynchronousChannelGroup { |
| 5948 | ctor protected AsynchronousChannelGroup(java.nio.channels.spi.AsynchronousChannelProvider); |
| 5949 | method public abstract boolean awaitTermination(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 5950 | method public abstract boolean isShutdown(); |
| 5951 | method public abstract boolean isTerminated(); |
| 5952 | method public final java.nio.channels.spi.AsynchronousChannelProvider provider(); |
| 5953 | method public abstract void shutdown(); |
| 5954 | method public abstract void shutdownNow() throws java.io.IOException; |
| 5955 | method public static java.nio.channels.AsynchronousChannelGroup withCachedThreadPool(java.util.concurrent.ExecutorService, int) throws java.io.IOException; |
| 5956 | method public static java.nio.channels.AsynchronousChannelGroup withFixedThreadPool(int, java.util.concurrent.ThreadFactory) throws java.io.IOException; |
| 5957 | method public static java.nio.channels.AsynchronousChannelGroup withThreadPool(java.util.concurrent.ExecutorService) throws java.io.IOException; |
| 5958 | } |
| 5959 | |
| 5960 | public class AsynchronousCloseException extends java.nio.channels.ClosedChannelException { |
| 5961 | ctor public AsynchronousCloseException(); |
| 5962 | } |
| 5963 | |
| 5964 | public abstract class AsynchronousFileChannel implements java.nio.channels.AsynchronousChannel { |
| 5965 | ctor protected AsynchronousFileChannel(); |
| 5966 | method public abstract void force(boolean) throws java.io.IOException; |
| 5967 | method public abstract <A> void lock(long, long, boolean, A, java.nio.channels.CompletionHandler<java.nio.channels.FileLock,? super A>); |
| 5968 | method public final <A> void lock(A, java.nio.channels.CompletionHandler<java.nio.channels.FileLock,? super A>); |
| 5969 | method public abstract java.util.concurrent.Future<java.nio.channels.FileLock> lock(long, long, boolean); |
| 5970 | method public final java.util.concurrent.Future<java.nio.channels.FileLock> lock(); |
| 5971 | method public static java.nio.channels.AsynchronousFileChannel open(java.nio.file.Path, java.util.Set<? extends java.nio.file.OpenOption>, java.util.concurrent.ExecutorService, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 5972 | method public static java.nio.channels.AsynchronousFileChannel open(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 5973 | method public abstract <A> void read(java.nio.ByteBuffer, long, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 5974 | method public abstract java.util.concurrent.Future<java.lang.Integer> read(java.nio.ByteBuffer, long); |
| 5975 | method public abstract long size() throws java.io.IOException; |
| 5976 | method public abstract java.nio.channels.AsynchronousFileChannel truncate(long) throws java.io.IOException; |
| 5977 | method public abstract java.nio.channels.FileLock tryLock(long, long, boolean) throws java.io.IOException; |
| 5978 | method public final java.nio.channels.FileLock tryLock() throws java.io.IOException; |
| 5979 | method public abstract <A> void write(java.nio.ByteBuffer, long, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 5980 | method public abstract java.util.concurrent.Future<java.lang.Integer> write(java.nio.ByteBuffer, long); |
| 5981 | } |
| 5982 | |
| 5983 | public abstract class AsynchronousServerSocketChannel implements java.nio.channels.AsynchronousChannel java.nio.channels.NetworkChannel { |
| 5984 | ctor protected AsynchronousServerSocketChannel(java.nio.channels.spi.AsynchronousChannelProvider); |
| 5985 | method public abstract <A> void accept(A, java.nio.channels.CompletionHandler<java.nio.channels.AsynchronousSocketChannel,? super A>); |
| 5986 | method public abstract java.util.concurrent.Future<java.nio.channels.AsynchronousSocketChannel> accept(); |
| 5987 | method public final java.nio.channels.AsynchronousServerSocketChannel bind(java.net.SocketAddress) throws java.io.IOException; |
| 5988 | method public abstract java.nio.channels.AsynchronousServerSocketChannel bind(java.net.SocketAddress, int) throws java.io.IOException; |
| 5989 | method public static java.nio.channels.AsynchronousServerSocketChannel open(java.nio.channels.AsynchronousChannelGroup) throws java.io.IOException; |
| 5990 | method public static java.nio.channels.AsynchronousServerSocketChannel open() throws java.io.IOException; |
| 5991 | method public final java.nio.channels.spi.AsynchronousChannelProvider provider(); |
| 5992 | method public abstract <T> java.nio.channels.AsynchronousServerSocketChannel setOption(java.net.SocketOption<T>, T) throws java.io.IOException; |
| 5993 | } |
| 5994 | |
| 5995 | public abstract class AsynchronousSocketChannel implements java.nio.channels.AsynchronousByteChannel java.nio.channels.NetworkChannel { |
| 5996 | ctor protected AsynchronousSocketChannel(java.nio.channels.spi.AsynchronousChannelProvider); |
| 5997 | method public abstract java.nio.channels.AsynchronousSocketChannel bind(java.net.SocketAddress) throws java.io.IOException; |
| 5998 | method public abstract <A> void connect(java.net.SocketAddress, A, java.nio.channels.CompletionHandler<java.lang.Void,? super A>); |
| 5999 | method public abstract java.util.concurrent.Future<java.lang.Void> connect(java.net.SocketAddress); |
| 6000 | method public abstract java.net.SocketAddress getRemoteAddress() throws java.io.IOException; |
| 6001 | method public static java.nio.channels.AsynchronousSocketChannel open(java.nio.channels.AsynchronousChannelGroup) throws java.io.IOException; |
| 6002 | method public static java.nio.channels.AsynchronousSocketChannel open() throws java.io.IOException; |
| 6003 | method public final java.nio.channels.spi.AsynchronousChannelProvider provider(); |
| 6004 | method public abstract <A> void read(java.nio.ByteBuffer, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 6005 | method public final <A> void read(java.nio.ByteBuffer, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 6006 | method public abstract <A> void read(java.nio.ByteBuffer[], int, int, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Long,? super A>); |
| 6007 | method public abstract <T> java.nio.channels.AsynchronousSocketChannel setOption(java.net.SocketOption<T>, T) throws java.io.IOException; |
| 6008 | method public abstract java.nio.channels.AsynchronousSocketChannel shutdownInput() throws java.io.IOException; |
| 6009 | method public abstract java.nio.channels.AsynchronousSocketChannel shutdownOutput() throws java.io.IOException; |
| 6010 | method public abstract <A> void write(java.nio.ByteBuffer, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 6011 | method public final <A> void write(java.nio.ByteBuffer, A, java.nio.channels.CompletionHandler<java.lang.Integer,? super A>); |
| 6012 | method public abstract <A> void write(java.nio.ByteBuffer[], int, int, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Long,? super A>); |
| 6013 | } |
| 6014 | |
| 6015 | public interface ByteChannel extends java.nio.channels.ReadableByteChannel java.nio.channels.WritableByteChannel { |
| 6016 | } |
| 6017 | |
| 6018 | public class CancelledKeyException extends java.lang.IllegalStateException { |
| 6019 | ctor public CancelledKeyException(); |
| 6020 | } |
| 6021 | |
| 6022 | public interface Channel extends java.io.Closeable { |
| 6023 | method public boolean isOpen(); |
| 6024 | } |
| 6025 | |
| 6026 | public final class Channels { |
| 6027 | method public static java.nio.channels.ReadableByteChannel newChannel(java.io.InputStream); |
| 6028 | method public static java.nio.channels.WritableByteChannel newChannel(java.io.OutputStream); |
| 6029 | method public static java.io.InputStream newInputStream(java.nio.channels.ReadableByteChannel); |
| 6030 | method public static java.io.InputStream newInputStream(java.nio.channels.AsynchronousByteChannel); |
| 6031 | method public static java.io.OutputStream newOutputStream(java.nio.channels.WritableByteChannel); |
| 6032 | method public static java.io.OutputStream newOutputStream(java.nio.channels.AsynchronousByteChannel); |
| 6033 | method public static java.io.Reader newReader(java.nio.channels.ReadableByteChannel, java.nio.charset.CharsetDecoder, int); |
| 6034 | method public static java.io.Reader newReader(java.nio.channels.ReadableByteChannel, String); |
| 6035 | method public static java.io.Writer newWriter(java.nio.channels.WritableByteChannel, java.nio.charset.CharsetEncoder, int); |
| 6036 | method public static java.io.Writer newWriter(java.nio.channels.WritableByteChannel, String); |
| 6037 | } |
| 6038 | |
| 6039 | public class ClosedByInterruptException extends java.nio.channels.AsynchronousCloseException { |
| 6040 | ctor public ClosedByInterruptException(); |
| 6041 | } |
| 6042 | |
| 6043 | public class ClosedChannelException extends java.io.IOException { |
| 6044 | ctor public ClosedChannelException(); |
| 6045 | } |
| 6046 | |
| 6047 | public class ClosedSelectorException extends java.lang.IllegalStateException { |
| 6048 | ctor public ClosedSelectorException(); |
| 6049 | } |
| 6050 | |
| 6051 | public interface CompletionHandler<V, A> { |
| 6052 | method public void completed(V, A); |
| 6053 | method public void failed(Throwable, A); |
| 6054 | } |
| 6055 | |
| 6056 | public class ConnectionPendingException extends java.lang.IllegalStateException { |
| 6057 | ctor public ConnectionPendingException(); |
| 6058 | } |
| 6059 | |
| 6060 | public abstract class DatagramChannel extends java.nio.channels.spi.AbstractSelectableChannel implements java.nio.channels.ByteChannel java.nio.channels.GatheringByteChannel java.nio.channels.MulticastChannel java.nio.channels.ScatteringByteChannel { |
| 6061 | ctor protected DatagramChannel(java.nio.channels.spi.SelectorProvider); |
| 6062 | method public abstract java.nio.channels.DatagramChannel bind(java.net.SocketAddress) throws java.io.IOException; |
| 6063 | method public abstract java.nio.channels.DatagramChannel connect(java.net.SocketAddress) throws java.io.IOException; |
| 6064 | method public abstract java.nio.channels.DatagramChannel disconnect() throws java.io.IOException; |
| 6065 | method public abstract java.net.SocketAddress getRemoteAddress() throws java.io.IOException; |
| 6066 | method public abstract boolean isConnected(); |
| 6067 | method public static java.nio.channels.DatagramChannel open() throws java.io.IOException; |
| 6068 | method public static java.nio.channels.DatagramChannel open(java.net.ProtocolFamily) throws java.io.IOException; |
| 6069 | method public final long read(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6070 | method public abstract java.net.SocketAddress receive(java.nio.ByteBuffer) throws java.io.IOException; |
| 6071 | method public abstract int send(java.nio.ByteBuffer, java.net.SocketAddress) throws java.io.IOException; |
| 6072 | method public abstract <T> java.nio.channels.DatagramChannel setOption(java.net.SocketOption<T>, T) throws java.io.IOException; |
| 6073 | method public abstract java.net.DatagramSocket socket(); |
| 6074 | method public final int validOps(); |
| 6075 | method public final long write(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6076 | } |
| 6077 | |
| 6078 | public abstract class FileChannel extends java.nio.channels.spi.AbstractInterruptibleChannel implements java.nio.channels.GatheringByteChannel java.nio.channels.ScatteringByteChannel java.nio.channels.SeekableByteChannel { |
| 6079 | ctor protected FileChannel(); |
| 6080 | method public abstract void force(boolean) throws java.io.IOException; |
| 6081 | method public abstract java.nio.channels.FileLock lock(long, long, boolean) throws java.io.IOException; |
| 6082 | method public final java.nio.channels.FileLock lock() throws java.io.IOException; |
| 6083 | method public abstract java.nio.MappedByteBuffer map(java.nio.channels.FileChannel.MapMode, long, long) throws java.io.IOException; |
| 6084 | method public static java.nio.channels.FileChannel open(java.nio.file.Path, java.util.Set<? extends java.nio.file.OpenOption>, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6085 | method public static java.nio.channels.FileChannel open(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6086 | method public abstract java.nio.channels.FileChannel position(long) throws java.io.IOException; |
| 6087 | method public final long read(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6088 | method public abstract int read(java.nio.ByteBuffer, long) throws java.io.IOException; |
| 6089 | method public abstract long transferFrom(java.nio.channels.ReadableByteChannel, long, long) throws java.io.IOException; |
| 6090 | method public abstract long transferTo(long, long, java.nio.channels.WritableByteChannel) throws java.io.IOException; |
| 6091 | method public abstract java.nio.channels.FileChannel truncate(long) throws java.io.IOException; |
| 6092 | method public abstract java.nio.channels.FileLock tryLock(long, long, boolean) throws java.io.IOException; |
| 6093 | method public final java.nio.channels.FileLock tryLock() throws java.io.IOException; |
| 6094 | method public final long write(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6095 | method public abstract int write(java.nio.ByteBuffer, long) throws java.io.IOException; |
| 6096 | } |
| 6097 | |
| 6098 | public static class FileChannel.MapMode { |
| 6099 | field public static final java.nio.channels.FileChannel.MapMode PRIVATE; |
| 6100 | field public static final java.nio.channels.FileChannel.MapMode READ_ONLY; |
| 6101 | field public static final java.nio.channels.FileChannel.MapMode READ_WRITE; |
| 6102 | } |
| 6103 | |
| 6104 | public abstract class FileLock implements java.lang.AutoCloseable { |
| 6105 | ctor protected FileLock(java.nio.channels.FileChannel, long, long, boolean); |
| 6106 | ctor protected FileLock(java.nio.channels.AsynchronousFileChannel, long, long, boolean); |
| 6107 | method public java.nio.channels.Channel acquiredBy(); |
| 6108 | method public final java.nio.channels.FileChannel channel(); |
| 6109 | method public final void close() throws java.io.IOException; |
| 6110 | method public final boolean isShared(); |
| 6111 | method public abstract boolean isValid(); |
| 6112 | method public final boolean overlaps(long, long); |
| 6113 | method public final long position(); |
| 6114 | method public abstract void release() throws java.io.IOException; |
| 6115 | method public final long size(); |
| 6116 | method public final String toString(); |
| 6117 | } |
| 6118 | |
| 6119 | public class FileLockInterruptionException extends java.io.IOException { |
| 6120 | ctor public FileLockInterruptionException(); |
| 6121 | } |
| 6122 | |
| 6123 | public interface GatheringByteChannel extends java.nio.channels.WritableByteChannel { |
| 6124 | method public long write(java.nio.ByteBuffer[], int, int) throws java.io.IOException; |
| 6125 | method public long write(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6126 | } |
| 6127 | |
| 6128 | public class IllegalBlockingModeException extends java.lang.IllegalStateException { |
| 6129 | ctor public IllegalBlockingModeException(); |
| 6130 | } |
| 6131 | |
| 6132 | public class IllegalChannelGroupException extends java.lang.IllegalArgumentException { |
| 6133 | ctor public IllegalChannelGroupException(); |
| 6134 | } |
| 6135 | |
| 6136 | public class IllegalSelectorException extends java.lang.IllegalArgumentException { |
| 6137 | ctor public IllegalSelectorException(); |
| 6138 | } |
| 6139 | |
| 6140 | public class InterruptedByTimeoutException extends java.io.IOException { |
| 6141 | ctor public InterruptedByTimeoutException(); |
| 6142 | } |
| 6143 | |
| 6144 | public interface InterruptibleChannel extends java.nio.channels.Channel { |
| 6145 | } |
| 6146 | |
| 6147 | public abstract class MembershipKey { |
| 6148 | ctor protected MembershipKey(); |
| 6149 | method public abstract java.nio.channels.MembershipKey block(java.net.InetAddress) throws java.io.IOException; |
| 6150 | method public abstract java.nio.channels.MulticastChannel channel(); |
| 6151 | method public abstract void drop(); |
| 6152 | method public abstract java.net.InetAddress group(); |
| 6153 | method public abstract boolean isValid(); |
| 6154 | method public abstract java.net.NetworkInterface networkInterface(); |
| 6155 | method public abstract java.net.InetAddress sourceAddress(); |
| 6156 | method public abstract java.nio.channels.MembershipKey unblock(java.net.InetAddress); |
| 6157 | } |
| 6158 | |
| 6159 | public interface MulticastChannel extends java.nio.channels.NetworkChannel { |
| 6160 | method public java.nio.channels.MembershipKey join(java.net.InetAddress, java.net.NetworkInterface) throws java.io.IOException; |
| 6161 | method public java.nio.channels.MembershipKey join(java.net.InetAddress, java.net.NetworkInterface, java.net.InetAddress) throws java.io.IOException; |
| 6162 | } |
| 6163 | |
| 6164 | public interface NetworkChannel extends java.nio.channels.Channel { |
| 6165 | method public java.nio.channels.NetworkChannel bind(java.net.SocketAddress) throws java.io.IOException; |
| 6166 | method public java.net.SocketAddress getLocalAddress() throws java.io.IOException; |
| 6167 | method public <T> T getOption(java.net.SocketOption<T>) throws java.io.IOException; |
| 6168 | method public <T> java.nio.channels.NetworkChannel setOption(java.net.SocketOption<T>, T) throws java.io.IOException; |
| 6169 | method public java.util.Set<java.net.SocketOption<?>> supportedOptions(); |
| 6170 | } |
| 6171 | |
| 6172 | public class NoConnectionPendingException extends java.lang.IllegalStateException { |
| 6173 | ctor public NoConnectionPendingException(); |
| 6174 | } |
| 6175 | |
| 6176 | public class NonReadableChannelException extends java.lang.IllegalStateException { |
| 6177 | ctor public NonReadableChannelException(); |
| 6178 | } |
| 6179 | |
| 6180 | public class NonWritableChannelException extends java.lang.IllegalStateException { |
| 6181 | ctor public NonWritableChannelException(); |
| 6182 | } |
| 6183 | |
| 6184 | public class NotYetBoundException extends java.lang.IllegalStateException { |
| 6185 | ctor public NotYetBoundException(); |
| 6186 | } |
| 6187 | |
| 6188 | public class NotYetConnectedException extends java.lang.IllegalStateException { |
| 6189 | ctor public NotYetConnectedException(); |
| 6190 | } |
| 6191 | |
| 6192 | public class OverlappingFileLockException extends java.lang.IllegalStateException { |
| 6193 | ctor public OverlappingFileLockException(); |
| 6194 | } |
| 6195 | |
| 6196 | public abstract class Pipe { |
| 6197 | ctor protected Pipe(); |
| 6198 | method public static java.nio.channels.Pipe open() throws java.io.IOException; |
| 6199 | method public abstract java.nio.channels.Pipe.SinkChannel sink(); |
| 6200 | method public abstract java.nio.channels.Pipe.SourceChannel source(); |
| 6201 | } |
| 6202 | |
| 6203 | public abstract static class Pipe.SinkChannel extends java.nio.channels.spi.AbstractSelectableChannel implements java.nio.channels.GatheringByteChannel java.nio.channels.WritableByteChannel { |
| 6204 | ctor protected Pipe.SinkChannel(java.nio.channels.spi.SelectorProvider); |
| 6205 | method public final int validOps(); |
| 6206 | } |
| 6207 | |
| 6208 | public abstract static class Pipe.SourceChannel extends java.nio.channels.spi.AbstractSelectableChannel implements java.nio.channels.ReadableByteChannel java.nio.channels.ScatteringByteChannel { |
| 6209 | ctor protected Pipe.SourceChannel(java.nio.channels.spi.SelectorProvider); |
| 6210 | method public final int validOps(); |
| 6211 | } |
| 6212 | |
| 6213 | public class ReadPendingException extends java.lang.IllegalStateException { |
| 6214 | ctor public ReadPendingException(); |
| 6215 | } |
| 6216 | |
| 6217 | public interface ReadableByteChannel extends java.nio.channels.Channel { |
| 6218 | method public int read(java.nio.ByteBuffer) throws java.io.IOException; |
| 6219 | } |
| 6220 | |
| 6221 | public interface ScatteringByteChannel extends java.nio.channels.ReadableByteChannel { |
| 6222 | method public long read(java.nio.ByteBuffer[], int, int) throws java.io.IOException; |
| 6223 | method public long read(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6224 | } |
| 6225 | |
| 6226 | public interface SeekableByteChannel extends java.nio.channels.ByteChannel { |
| 6227 | method public long position() throws java.io.IOException; |
| 6228 | method public java.nio.channels.SeekableByteChannel position(long) throws java.io.IOException; |
| 6229 | method public long size() throws java.io.IOException; |
| 6230 | method public java.nio.channels.SeekableByteChannel truncate(long) throws java.io.IOException; |
| 6231 | } |
| 6232 | |
| 6233 | public abstract class SelectableChannel extends java.nio.channels.spi.AbstractInterruptibleChannel implements java.nio.channels.Channel { |
| 6234 | ctor protected SelectableChannel(); |
| 6235 | method public abstract Object blockingLock(); |
| 6236 | method public abstract java.nio.channels.SelectableChannel configureBlocking(boolean) throws java.io.IOException; |
| 6237 | method public abstract boolean isBlocking(); |
| 6238 | method public abstract boolean isRegistered(); |
| 6239 | method public abstract java.nio.channels.SelectionKey keyFor(java.nio.channels.Selector); |
| 6240 | method public abstract java.nio.channels.spi.SelectorProvider provider(); |
| 6241 | method public abstract java.nio.channels.SelectionKey register(java.nio.channels.Selector, int, Object) throws java.nio.channels.ClosedChannelException; |
| 6242 | method public final java.nio.channels.SelectionKey register(java.nio.channels.Selector, int) throws java.nio.channels.ClosedChannelException; |
| 6243 | method public abstract int validOps(); |
| 6244 | } |
| 6245 | |
| 6246 | public abstract class SelectionKey { |
| 6247 | ctor protected SelectionKey(); |
| 6248 | method public final Object attach(Object); |
| 6249 | method public final Object attachment(); |
| 6250 | method public abstract void cancel(); |
| 6251 | method public abstract java.nio.channels.SelectableChannel channel(); |
| 6252 | method public abstract int interestOps(); |
| 6253 | method public abstract java.nio.channels.SelectionKey interestOps(int); |
| 6254 | method public final boolean isAcceptable(); |
| 6255 | method public final boolean isConnectable(); |
| 6256 | method public final boolean isReadable(); |
| 6257 | method public abstract boolean isValid(); |
| 6258 | method public final boolean isWritable(); |
| 6259 | method public abstract int readyOps(); |
| 6260 | method public abstract java.nio.channels.Selector selector(); |
| 6261 | field public static final int OP_ACCEPT = 16; // 0x10 |
| 6262 | field public static final int OP_CONNECT = 8; // 0x8 |
| 6263 | field public static final int OP_READ = 1; // 0x1 |
| 6264 | field public static final int OP_WRITE = 4; // 0x4 |
| 6265 | } |
| 6266 | |
| 6267 | public abstract class Selector implements java.io.Closeable { |
| 6268 | ctor protected Selector(); |
| 6269 | method public abstract boolean isOpen(); |
| 6270 | method public abstract java.util.Set<java.nio.channels.SelectionKey> keys(); |
| 6271 | method public static java.nio.channels.Selector open() throws java.io.IOException; |
| 6272 | method public abstract java.nio.channels.spi.SelectorProvider provider(); |
| 6273 | method public abstract int select(long) throws java.io.IOException; |
| 6274 | method public abstract int select() throws java.io.IOException; |
| 6275 | method public abstract int selectNow() throws java.io.IOException; |
| 6276 | method public abstract java.util.Set<java.nio.channels.SelectionKey> selectedKeys(); |
| 6277 | method public abstract java.nio.channels.Selector wakeup(); |
| 6278 | } |
| 6279 | |
| 6280 | public abstract class ServerSocketChannel extends java.nio.channels.spi.AbstractSelectableChannel implements java.nio.channels.NetworkChannel { |
| 6281 | ctor protected ServerSocketChannel(java.nio.channels.spi.SelectorProvider); |
| 6282 | method public abstract java.nio.channels.SocketChannel accept() throws java.io.IOException; |
| 6283 | method public final java.nio.channels.ServerSocketChannel bind(java.net.SocketAddress) throws java.io.IOException; |
| 6284 | method public abstract java.nio.channels.ServerSocketChannel bind(java.net.SocketAddress, int) throws java.io.IOException; |
| 6285 | method public static java.nio.channels.ServerSocketChannel open() throws java.io.IOException; |
| 6286 | method public abstract <T> java.nio.channels.ServerSocketChannel setOption(java.net.SocketOption<T>, T) throws java.io.IOException; |
| 6287 | method public abstract java.net.ServerSocket socket(); |
| 6288 | method public final int validOps(); |
| 6289 | } |
| 6290 | |
| 6291 | public class ShutdownChannelGroupException extends java.lang.IllegalStateException { |
| 6292 | ctor public ShutdownChannelGroupException(); |
| 6293 | } |
| 6294 | |
| 6295 | public abstract class SocketChannel extends java.nio.channels.spi.AbstractSelectableChannel implements java.nio.channels.ByteChannel java.nio.channels.GatheringByteChannel java.nio.channels.NetworkChannel java.nio.channels.ScatteringByteChannel { |
| 6296 | ctor protected SocketChannel(java.nio.channels.spi.SelectorProvider); |
| 6297 | method public abstract java.nio.channels.SocketChannel bind(java.net.SocketAddress) throws java.io.IOException; |
| 6298 | method public abstract boolean connect(java.net.SocketAddress) throws java.io.IOException; |
| 6299 | method public abstract boolean finishConnect() throws java.io.IOException; |
| 6300 | method public abstract java.net.SocketAddress getRemoteAddress() throws java.io.IOException; |
| 6301 | method public abstract boolean isConnected(); |
| 6302 | method public abstract boolean isConnectionPending(); |
| 6303 | method public static java.nio.channels.SocketChannel open() throws java.io.IOException; |
| 6304 | method public static java.nio.channels.SocketChannel open(java.net.SocketAddress) throws java.io.IOException; |
| 6305 | method public final long read(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6306 | method public abstract <T> java.nio.channels.SocketChannel setOption(java.net.SocketOption<T>, T) throws java.io.IOException; |
| 6307 | method public abstract java.nio.channels.SocketChannel shutdownInput() throws java.io.IOException; |
| 6308 | method public abstract java.nio.channels.SocketChannel shutdownOutput() throws java.io.IOException; |
| 6309 | method public abstract java.net.Socket socket(); |
| 6310 | method public final int validOps(); |
| 6311 | method public final long write(java.nio.ByteBuffer[]) throws java.io.IOException; |
| 6312 | } |
| 6313 | |
| 6314 | public class UnresolvedAddressException extends java.lang.IllegalArgumentException { |
| 6315 | ctor public UnresolvedAddressException(); |
| 6316 | } |
| 6317 | |
| 6318 | public class UnsupportedAddressTypeException extends java.lang.IllegalArgumentException { |
| 6319 | ctor public UnsupportedAddressTypeException(); |
| 6320 | } |
| 6321 | |
| 6322 | public interface WritableByteChannel extends java.nio.channels.Channel { |
| 6323 | method public int write(java.nio.ByteBuffer) throws java.io.IOException; |
| 6324 | } |
| 6325 | |
| 6326 | public class WritePendingException extends java.lang.IllegalStateException { |
| 6327 | ctor public WritePendingException(); |
| 6328 | } |
| 6329 | |
| 6330 | } |
| 6331 | |
| 6332 | package java.nio.channels.spi { |
| 6333 | |
| 6334 | public abstract class AbstractInterruptibleChannel implements java.nio.channels.Channel java.nio.channels.InterruptibleChannel { |
| 6335 | ctor protected AbstractInterruptibleChannel(); |
| 6336 | method protected final void begin(); |
| 6337 | method public final void close() throws java.io.IOException; |
| 6338 | method protected final void end(boolean) throws java.nio.channels.AsynchronousCloseException; |
| 6339 | method protected abstract void implCloseChannel() throws java.io.IOException; |
| 6340 | method public final boolean isOpen(); |
| 6341 | } |
| 6342 | |
| 6343 | public abstract class AbstractSelectableChannel extends java.nio.channels.SelectableChannel { |
| 6344 | ctor protected AbstractSelectableChannel(java.nio.channels.spi.SelectorProvider); |
| 6345 | method public final Object blockingLock(); |
| 6346 | method public final java.nio.channels.SelectableChannel configureBlocking(boolean) throws java.io.IOException; |
| 6347 | method protected final void implCloseChannel() throws java.io.IOException; |
| 6348 | method protected abstract void implCloseSelectableChannel() throws java.io.IOException; |
| 6349 | method protected abstract void implConfigureBlocking(boolean) throws java.io.IOException; |
| 6350 | method public final boolean isBlocking(); |
| 6351 | method public final boolean isRegistered(); |
| 6352 | method public final java.nio.channels.SelectionKey keyFor(java.nio.channels.Selector); |
| 6353 | method public final java.nio.channels.spi.SelectorProvider provider(); |
| 6354 | method public final java.nio.channels.SelectionKey register(java.nio.channels.Selector, int, Object) throws java.nio.channels.ClosedChannelException; |
| 6355 | } |
| 6356 | |
| 6357 | public abstract class AbstractSelectionKey extends java.nio.channels.SelectionKey { |
| 6358 | ctor protected AbstractSelectionKey(); |
| 6359 | method public final void cancel(); |
| 6360 | method public final boolean isValid(); |
| 6361 | } |
| 6362 | |
| 6363 | public abstract class AbstractSelector extends java.nio.channels.Selector { |
| 6364 | ctor protected AbstractSelector(java.nio.channels.spi.SelectorProvider); |
| 6365 | method protected final void begin(); |
| 6366 | method protected final java.util.Set<java.nio.channels.SelectionKey> cancelledKeys(); |
| 6367 | method public final void close() throws java.io.IOException; |
| 6368 | method protected final void deregister(java.nio.channels.spi.AbstractSelectionKey); |
| 6369 | method protected final void end(); |
| 6370 | method protected abstract void implCloseSelector() throws java.io.IOException; |
| 6371 | method public final boolean isOpen(); |
| 6372 | method public final java.nio.channels.spi.SelectorProvider provider(); |
| 6373 | method protected abstract java.nio.channels.SelectionKey register(java.nio.channels.spi.AbstractSelectableChannel, int, Object); |
| 6374 | } |
| 6375 | |
| 6376 | public abstract class AsynchronousChannelProvider { |
| 6377 | ctor protected AsynchronousChannelProvider(); |
| 6378 | method public abstract java.nio.channels.AsynchronousChannelGroup openAsynchronousChannelGroup(int, java.util.concurrent.ThreadFactory) throws java.io.IOException; |
| 6379 | method public abstract java.nio.channels.AsynchronousChannelGroup openAsynchronousChannelGroup(java.util.concurrent.ExecutorService, int) throws java.io.IOException; |
| 6380 | method public abstract java.nio.channels.AsynchronousServerSocketChannel openAsynchronousServerSocketChannel(java.nio.channels.AsynchronousChannelGroup) throws java.io.IOException; |
| 6381 | method public abstract java.nio.channels.AsynchronousSocketChannel openAsynchronousSocketChannel(java.nio.channels.AsynchronousChannelGroup) throws java.io.IOException; |
| 6382 | method public static java.nio.channels.spi.AsynchronousChannelProvider provider(); |
| 6383 | } |
| 6384 | |
| 6385 | public abstract class SelectorProvider { |
| 6386 | ctor protected SelectorProvider(); |
| 6387 | method public java.nio.channels.Channel inheritedChannel() throws java.io.IOException; |
| 6388 | method public abstract java.nio.channels.DatagramChannel openDatagramChannel() throws java.io.IOException; |
| 6389 | method public abstract java.nio.channels.DatagramChannel openDatagramChannel(java.net.ProtocolFamily) throws java.io.IOException; |
| 6390 | method public abstract java.nio.channels.Pipe openPipe() throws java.io.IOException; |
| 6391 | method public abstract java.nio.channels.spi.AbstractSelector openSelector() throws java.io.IOException; |
| 6392 | method public abstract java.nio.channels.ServerSocketChannel openServerSocketChannel() throws java.io.IOException; |
| 6393 | method public abstract java.nio.channels.SocketChannel openSocketChannel() throws java.io.IOException; |
| 6394 | method public static java.nio.channels.spi.SelectorProvider provider(); |
| 6395 | } |
| 6396 | |
| 6397 | } |
| 6398 | |
| 6399 | package java.nio.charset { |
| 6400 | |
| 6401 | public class CharacterCodingException extends java.io.IOException { |
| 6402 | ctor public CharacterCodingException(); |
| 6403 | } |
| 6404 | |
| 6405 | public abstract class Charset implements java.lang.Comparable<java.nio.charset.Charset> { |
| 6406 | ctor protected Charset(String, String[]); |
| 6407 | method public final java.util.Set<java.lang.String> aliases(); |
| 6408 | method public static java.util.SortedMap<java.lang.String,java.nio.charset.Charset> availableCharsets(); |
| 6409 | method public boolean canEncode(); |
| 6410 | method public final int compareTo(java.nio.charset.Charset); |
| 6411 | method public abstract boolean contains(java.nio.charset.Charset); |
| 6412 | method public final java.nio.CharBuffer decode(java.nio.ByteBuffer); |
| 6413 | method public static java.nio.charset.Charset defaultCharset(); |
| 6414 | method public String displayName(); |
| 6415 | method public String displayName(java.util.Locale); |
| 6416 | method public final java.nio.ByteBuffer encode(java.nio.CharBuffer); |
| 6417 | method public final java.nio.ByteBuffer encode(String); |
| 6418 | method public final boolean equals(Object); |
| 6419 | method public static java.nio.charset.Charset forName(String); |
| 6420 | method public final int hashCode(); |
| 6421 | method public final boolean isRegistered(); |
| 6422 | method public static boolean isSupported(String); |
| 6423 | method public final String name(); |
| 6424 | method public abstract java.nio.charset.CharsetDecoder newDecoder(); |
| 6425 | method public abstract java.nio.charset.CharsetEncoder newEncoder(); |
| 6426 | method public final String toString(); |
| 6427 | } |
| 6428 | |
| 6429 | public abstract class CharsetDecoder { |
| 6430 | ctor protected CharsetDecoder(java.nio.charset.Charset, float, float); |
| 6431 | method public final float averageCharsPerByte(); |
| 6432 | method public final java.nio.charset.Charset charset(); |
| 6433 | method public final java.nio.charset.CoderResult decode(java.nio.ByteBuffer, java.nio.CharBuffer, boolean); |
| 6434 | method public final java.nio.CharBuffer decode(java.nio.ByteBuffer) throws java.nio.charset.CharacterCodingException; |
| 6435 | method protected abstract java.nio.charset.CoderResult decodeLoop(java.nio.ByteBuffer, java.nio.CharBuffer); |
| 6436 | method public java.nio.charset.Charset detectedCharset(); |
| 6437 | method public final java.nio.charset.CoderResult flush(java.nio.CharBuffer); |
| 6438 | method protected java.nio.charset.CoderResult implFlush(java.nio.CharBuffer); |
| 6439 | method protected void implOnMalformedInput(java.nio.charset.CodingErrorAction); |
| 6440 | method protected void implOnUnmappableCharacter(java.nio.charset.CodingErrorAction); |
| 6441 | method protected void implReplaceWith(String); |
| 6442 | method protected void implReset(); |
| 6443 | method public boolean isAutoDetecting(); |
| 6444 | method public boolean isCharsetDetected(); |
| 6445 | method public java.nio.charset.CodingErrorAction malformedInputAction(); |
| 6446 | method public final float maxCharsPerByte(); |
| 6447 | method public final java.nio.charset.CharsetDecoder onMalformedInput(java.nio.charset.CodingErrorAction); |
| 6448 | method public final java.nio.charset.CharsetDecoder onUnmappableCharacter(java.nio.charset.CodingErrorAction); |
| 6449 | method public final java.nio.charset.CharsetDecoder replaceWith(String); |
| 6450 | method public final String replacement(); |
| 6451 | method public final java.nio.charset.CharsetDecoder reset(); |
| 6452 | method public java.nio.charset.CodingErrorAction unmappableCharacterAction(); |
| 6453 | } |
| 6454 | |
| 6455 | public abstract class CharsetEncoder { |
| 6456 | ctor protected CharsetEncoder(java.nio.charset.Charset, float, float, byte[]); |
| 6457 | ctor protected CharsetEncoder(java.nio.charset.Charset, float, float); |
| 6458 | method public final float averageBytesPerChar(); |
| 6459 | method public boolean canEncode(char); |
| 6460 | method public boolean canEncode(CharSequence); |
| 6461 | method public final java.nio.charset.Charset charset(); |
| 6462 | method public final java.nio.charset.CoderResult encode(java.nio.CharBuffer, java.nio.ByteBuffer, boolean); |
| 6463 | method public final java.nio.ByteBuffer encode(java.nio.CharBuffer) throws java.nio.charset.CharacterCodingException; |
| 6464 | method protected abstract java.nio.charset.CoderResult encodeLoop(java.nio.CharBuffer, java.nio.ByteBuffer); |
| 6465 | method public final java.nio.charset.CoderResult flush(java.nio.ByteBuffer); |
| 6466 | method protected java.nio.charset.CoderResult implFlush(java.nio.ByteBuffer); |
| 6467 | method protected void implOnMalformedInput(java.nio.charset.CodingErrorAction); |
| 6468 | method protected void implOnUnmappableCharacter(java.nio.charset.CodingErrorAction); |
| 6469 | method protected void implReplaceWith(byte[]); |
| 6470 | method protected void implReset(); |
| 6471 | method public boolean isLegalReplacement(byte[]); |
| 6472 | method public java.nio.charset.CodingErrorAction malformedInputAction(); |
| 6473 | method public final float maxBytesPerChar(); |
| 6474 | method public final java.nio.charset.CharsetEncoder onMalformedInput(java.nio.charset.CodingErrorAction); |
| 6475 | method public final java.nio.charset.CharsetEncoder onUnmappableCharacter(java.nio.charset.CodingErrorAction); |
| 6476 | method public final java.nio.charset.CharsetEncoder replaceWith(byte[]); |
| 6477 | method public final byte[] replacement(); |
| 6478 | method public final java.nio.charset.CharsetEncoder reset(); |
| 6479 | method public java.nio.charset.CodingErrorAction unmappableCharacterAction(); |
| 6480 | } |
| 6481 | |
| 6482 | public class CoderMalfunctionError extends java.lang.Error { |
| 6483 | ctor public CoderMalfunctionError(Exception); |
| 6484 | } |
| 6485 | |
| 6486 | public class CoderResult { |
| 6487 | method public boolean isError(); |
| 6488 | method public boolean isMalformed(); |
| 6489 | method public boolean isOverflow(); |
| 6490 | method public boolean isUnderflow(); |
| 6491 | method public boolean isUnmappable(); |
| 6492 | method public int length(); |
| 6493 | method public static java.nio.charset.CoderResult malformedForLength(int); |
| 6494 | method public void throwException() throws java.nio.charset.CharacterCodingException; |
| 6495 | method public static java.nio.charset.CoderResult unmappableForLength(int); |
| 6496 | field public static final java.nio.charset.CoderResult OVERFLOW; |
| 6497 | field public static final java.nio.charset.CoderResult UNDERFLOW; |
| 6498 | } |
| 6499 | |
| 6500 | public class CodingErrorAction { |
| 6501 | field public static final java.nio.charset.CodingErrorAction IGNORE; |
| 6502 | field public static final java.nio.charset.CodingErrorAction REPLACE; |
| 6503 | field public static final java.nio.charset.CodingErrorAction REPORT; |
| 6504 | } |
| 6505 | |
| 6506 | public class IllegalCharsetNameException extends java.lang.IllegalArgumentException { |
| 6507 | ctor public IllegalCharsetNameException(String); |
| 6508 | method public String getCharsetName(); |
| 6509 | } |
| 6510 | |
| 6511 | public class MalformedInputException extends java.nio.charset.CharacterCodingException { |
| 6512 | ctor public MalformedInputException(int); |
| 6513 | method public int getInputLength(); |
| 6514 | } |
| 6515 | |
| 6516 | public final class StandardCharsets { |
| 6517 | field public static final java.nio.charset.Charset ISO_8859_1; |
| 6518 | field public static final java.nio.charset.Charset US_ASCII; |
| 6519 | field public static final java.nio.charset.Charset UTF_16; |
| 6520 | field public static final java.nio.charset.Charset UTF_16BE; |
| 6521 | field public static final java.nio.charset.Charset UTF_16LE; |
| 6522 | field public static final java.nio.charset.Charset UTF_8; |
| 6523 | } |
| 6524 | |
| 6525 | public class UnmappableCharacterException extends java.nio.charset.CharacterCodingException { |
| 6526 | ctor public UnmappableCharacterException(int); |
| 6527 | method public int getInputLength(); |
| 6528 | } |
| 6529 | |
| 6530 | public class UnsupportedCharsetException extends java.lang.IllegalArgumentException { |
| 6531 | ctor public UnsupportedCharsetException(String); |
| 6532 | method public String getCharsetName(); |
| 6533 | } |
| 6534 | |
| 6535 | } |
| 6536 | |
| 6537 | package java.nio.charset.spi { |
| 6538 | |
| 6539 | public abstract class CharsetProvider { |
| 6540 | ctor protected CharsetProvider(); |
| 6541 | method public abstract java.nio.charset.Charset charsetForName(String); |
| 6542 | method public abstract java.util.Iterator<java.nio.charset.Charset> charsets(); |
| 6543 | } |
| 6544 | |
| 6545 | } |
| 6546 | |
| 6547 | package java.nio.file { |
| 6548 | |
| 6549 | public class AccessDeniedException extends java.nio.file.FileSystemException { |
| 6550 | ctor public AccessDeniedException(String); |
| 6551 | ctor public AccessDeniedException(String, String, String); |
| 6552 | } |
| 6553 | |
| 6554 | public enum AccessMode { |
| 6555 | enum_constant public static final java.nio.file.AccessMode EXECUTE; |
| 6556 | enum_constant public static final java.nio.file.AccessMode READ; |
| 6557 | enum_constant public static final java.nio.file.AccessMode WRITE; |
| 6558 | } |
| 6559 | |
| 6560 | public class AtomicMoveNotSupportedException extends java.nio.file.FileSystemException { |
| 6561 | ctor public AtomicMoveNotSupportedException(String, String, String); |
| 6562 | } |
| 6563 | |
| 6564 | public class ClosedDirectoryStreamException extends java.lang.IllegalStateException { |
| 6565 | ctor public ClosedDirectoryStreamException(); |
| 6566 | } |
| 6567 | |
| 6568 | public class ClosedFileSystemException extends java.lang.IllegalStateException { |
| 6569 | ctor public ClosedFileSystemException(); |
| 6570 | } |
| 6571 | |
| 6572 | public class ClosedWatchServiceException extends java.lang.IllegalStateException { |
| 6573 | ctor public ClosedWatchServiceException(); |
| 6574 | } |
| 6575 | |
| 6576 | public interface CopyOption { |
| 6577 | } |
| 6578 | |
| 6579 | public final class DirectoryIteratorException extends java.util.ConcurrentModificationException { |
| 6580 | ctor public DirectoryIteratorException(java.io.IOException); |
| 6581 | method public java.io.IOException getCause(); |
| 6582 | } |
| 6583 | |
| 6584 | public class DirectoryNotEmptyException extends java.nio.file.FileSystemException { |
| 6585 | ctor public DirectoryNotEmptyException(String); |
| 6586 | } |
| 6587 | |
| 6588 | public interface DirectoryStream<T> extends java.io.Closeable java.lang.Iterable<T> { |
| 6589 | } |
| 6590 | |
| 6591 | @java.lang.FunctionalInterface public static interface DirectoryStream.Filter<T> { |
| 6592 | method public boolean accept(T) throws java.io.IOException; |
| 6593 | } |
| 6594 | |
| 6595 | public class FileAlreadyExistsException extends java.nio.file.FileSystemException { |
| 6596 | ctor public FileAlreadyExistsException(String); |
| 6597 | ctor public FileAlreadyExistsException(String, String, String); |
| 6598 | } |
| 6599 | |
| 6600 | public abstract class FileStore { |
| 6601 | ctor protected FileStore(); |
| 6602 | method public abstract Object getAttribute(String) throws java.io.IOException; |
| 6603 | method public abstract <V extends java.nio.file.attribute.FileStoreAttributeView> V getFileStoreAttributeView(Class<V>); |
| 6604 | method public abstract long getTotalSpace() throws java.io.IOException; |
| 6605 | method public abstract long getUnallocatedSpace() throws java.io.IOException; |
| 6606 | method public abstract long getUsableSpace() throws java.io.IOException; |
| 6607 | method public abstract boolean isReadOnly(); |
| 6608 | method public abstract String name(); |
| 6609 | method public abstract boolean supportsFileAttributeView(Class<? extends java.nio.file.attribute.FileAttributeView>); |
| 6610 | method public abstract boolean supportsFileAttributeView(String); |
| 6611 | method public abstract String type(); |
| 6612 | } |
| 6613 | |
| 6614 | public abstract class FileSystem implements java.io.Closeable { |
| 6615 | ctor protected FileSystem(); |
| 6616 | method public abstract Iterable<java.nio.file.FileStore> getFileStores(); |
| 6617 | method public abstract java.nio.file.Path getPath(String, java.lang.String...); |
| 6618 | method public abstract java.nio.file.PathMatcher getPathMatcher(String); |
| 6619 | method public abstract Iterable<java.nio.file.Path> getRootDirectories(); |
| 6620 | method public abstract String getSeparator(); |
| 6621 | method public abstract java.nio.file.attribute.UserPrincipalLookupService getUserPrincipalLookupService(); |
| 6622 | method public abstract boolean isOpen(); |
| 6623 | method public abstract boolean isReadOnly(); |
| 6624 | method public abstract java.nio.file.WatchService newWatchService() throws java.io.IOException; |
| 6625 | method public abstract java.nio.file.spi.FileSystemProvider provider(); |
| 6626 | method public abstract java.util.Set<java.lang.String> supportedFileAttributeViews(); |
| 6627 | } |
| 6628 | |
| 6629 | public class FileSystemAlreadyExistsException extends java.lang.RuntimeException { |
| 6630 | ctor public FileSystemAlreadyExistsException(); |
| 6631 | ctor public FileSystemAlreadyExistsException(String); |
| 6632 | } |
| 6633 | |
| 6634 | public class FileSystemException extends java.io.IOException { |
| 6635 | ctor public FileSystemException(String); |
| 6636 | ctor public FileSystemException(String, String, String); |
| 6637 | method public String getFile(); |
| 6638 | method public String getOtherFile(); |
| 6639 | method public String getReason(); |
| 6640 | } |
| 6641 | |
| 6642 | public class FileSystemLoopException extends java.nio.file.FileSystemException { |
| 6643 | ctor public FileSystemLoopException(String); |
| 6644 | } |
| 6645 | |
| 6646 | public class FileSystemNotFoundException extends java.lang.RuntimeException { |
| 6647 | ctor public FileSystemNotFoundException(); |
| 6648 | ctor public FileSystemNotFoundException(String); |
| 6649 | } |
| 6650 | |
| 6651 | public final class FileSystems { |
| 6652 | method public static java.nio.file.FileSystem getDefault(); |
| 6653 | method public static java.nio.file.FileSystem getFileSystem(java.net.URI); |
| 6654 | method public static java.nio.file.FileSystem newFileSystem(java.net.URI, java.util.Map<java.lang.String,?>) throws java.io.IOException; |
| 6655 | method public static java.nio.file.FileSystem newFileSystem(java.net.URI, java.util.Map<java.lang.String,?>, ClassLoader) throws java.io.IOException; |
| 6656 | method public static java.nio.file.FileSystem newFileSystem(java.nio.file.Path, ClassLoader) throws java.io.IOException; |
| 6657 | } |
| 6658 | |
| 6659 | public enum FileVisitOption { |
| 6660 | enum_constant public static final java.nio.file.FileVisitOption FOLLOW_LINKS; |
| 6661 | } |
| 6662 | |
| 6663 | public enum FileVisitResult { |
| 6664 | enum_constant public static final java.nio.file.FileVisitResult CONTINUE; |
| 6665 | enum_constant public static final java.nio.file.FileVisitResult SKIP_SIBLINGS; |
| 6666 | enum_constant public static final java.nio.file.FileVisitResult SKIP_SUBTREE; |
| 6667 | enum_constant public static final java.nio.file.FileVisitResult TERMINATE; |
| 6668 | } |
| 6669 | |
| 6670 | public interface FileVisitor<T> { |
| 6671 | method public java.nio.file.FileVisitResult postVisitDirectory(T, java.io.IOException) throws java.io.IOException; |
| 6672 | method public java.nio.file.FileVisitResult preVisitDirectory(T, java.nio.file.attribute.BasicFileAttributes) throws java.io.IOException; |
| 6673 | method public java.nio.file.FileVisitResult visitFile(T, java.nio.file.attribute.BasicFileAttributes) throws java.io.IOException; |
| 6674 | method public java.nio.file.FileVisitResult visitFileFailed(T, java.io.IOException) throws java.io.IOException; |
| 6675 | } |
| 6676 | |
| 6677 | public final class Files { |
| 6678 | method public static java.nio.file.Path copy(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption...) throws java.io.IOException; |
| 6679 | method public static long copy(java.io.InputStream, java.nio.file.Path, java.nio.file.CopyOption...) throws java.io.IOException; |
| 6680 | method public static long copy(java.nio.file.Path, java.io.OutputStream) throws java.io.IOException; |
| 6681 | method public static java.nio.file.Path createDirectories(java.nio.file.Path, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6682 | method public static java.nio.file.Path createDirectory(java.nio.file.Path, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6683 | method public static java.nio.file.Path createFile(java.nio.file.Path, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6684 | method public static java.nio.file.Path createLink(java.nio.file.Path, java.nio.file.Path) throws java.io.IOException; |
| 6685 | method public static java.nio.file.Path createSymbolicLink(java.nio.file.Path, java.nio.file.Path, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6686 | method public static java.nio.file.Path createTempDirectory(java.nio.file.Path, String, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6687 | method public static java.nio.file.Path createTempDirectory(String, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6688 | method public static java.nio.file.Path createTempFile(java.nio.file.Path, String, String, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6689 | method public static java.nio.file.Path createTempFile(String, String, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6690 | method public static void delete(java.nio.file.Path) throws java.io.IOException; |
| 6691 | method public static boolean deleteIfExists(java.nio.file.Path) throws java.io.IOException; |
| 6692 | method public static boolean exists(java.nio.file.Path, java.nio.file.LinkOption...); |
| 6693 | method public static java.util.stream.Stream<java.nio.file.Path> find(java.nio.file.Path, int, java.util.function.BiPredicate<java.nio.file.Path,java.nio.file.attribute.BasicFileAttributes>, java.nio.file.FileVisitOption...) throws java.io.IOException; |
| 6694 | method public static Object getAttribute(java.nio.file.Path, String, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6695 | method public static <V extends java.nio.file.attribute.FileAttributeView> V getFileAttributeView(java.nio.file.Path, Class<V>, java.nio.file.LinkOption...); |
| 6696 | method public static java.nio.file.FileStore getFileStore(java.nio.file.Path) throws java.io.IOException; |
| 6697 | method public static java.nio.file.attribute.FileTime getLastModifiedTime(java.nio.file.Path, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6698 | method public static java.nio.file.attribute.UserPrincipal getOwner(java.nio.file.Path, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6699 | method public static java.util.Set<java.nio.file.attribute.PosixFilePermission> getPosixFilePermissions(java.nio.file.Path, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6700 | method public static boolean isDirectory(java.nio.file.Path, java.nio.file.LinkOption...); |
| 6701 | method public static boolean isExecutable(java.nio.file.Path); |
| 6702 | method public static boolean isHidden(java.nio.file.Path) throws java.io.IOException; |
| 6703 | method public static boolean isReadable(java.nio.file.Path); |
| 6704 | method public static boolean isRegularFile(java.nio.file.Path, java.nio.file.LinkOption...); |
| 6705 | method public static boolean isSameFile(java.nio.file.Path, java.nio.file.Path) throws java.io.IOException; |
| 6706 | method public static boolean isSymbolicLink(java.nio.file.Path); |
| 6707 | method public static boolean isWritable(java.nio.file.Path); |
| 6708 | method public static java.util.stream.Stream<java.lang.String> lines(java.nio.file.Path, java.nio.charset.Charset) throws java.io.IOException; |
| 6709 | method public static java.util.stream.Stream<java.lang.String> lines(java.nio.file.Path) throws java.io.IOException; |
| 6710 | method public static java.util.stream.Stream<java.nio.file.Path> list(java.nio.file.Path) throws java.io.IOException; |
| 6711 | method public static java.nio.file.Path move(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption...) throws java.io.IOException; |
| 6712 | method public static java.io.BufferedReader newBufferedReader(java.nio.file.Path, java.nio.charset.Charset) throws java.io.IOException; |
| 6713 | method public static java.io.BufferedReader newBufferedReader(java.nio.file.Path) throws java.io.IOException; |
| 6714 | method public static java.io.BufferedWriter newBufferedWriter(java.nio.file.Path, java.nio.charset.Charset, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6715 | method public static java.io.BufferedWriter newBufferedWriter(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6716 | method public static java.nio.channels.SeekableByteChannel newByteChannel(java.nio.file.Path, java.util.Set<? extends java.nio.file.OpenOption>, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6717 | method public static java.nio.channels.SeekableByteChannel newByteChannel(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6718 | method public static java.nio.file.DirectoryStream<java.nio.file.Path> newDirectoryStream(java.nio.file.Path) throws java.io.IOException; |
| 6719 | method public static java.nio.file.DirectoryStream<java.nio.file.Path> newDirectoryStream(java.nio.file.Path, String) throws java.io.IOException; |
| 6720 | method public static java.nio.file.DirectoryStream<java.nio.file.Path> newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream.Filter<? super java.nio.file.Path>) throws java.io.IOException; |
| 6721 | method public static java.io.InputStream newInputStream(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6722 | method public static java.io.OutputStream newOutputStream(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6723 | method public static boolean notExists(java.nio.file.Path, java.nio.file.LinkOption...); |
| 6724 | method public static String probeContentType(java.nio.file.Path) throws java.io.IOException; |
| 6725 | method public static byte[] readAllBytes(java.nio.file.Path) throws java.io.IOException; |
| 6726 | method public static java.util.List<java.lang.String> readAllLines(java.nio.file.Path, java.nio.charset.Charset) throws java.io.IOException; |
| 6727 | method public static java.util.List<java.lang.String> readAllLines(java.nio.file.Path) throws java.io.IOException; |
| 6728 | method public static <A extends java.nio.file.attribute.BasicFileAttributes> A readAttributes(java.nio.file.Path, Class<A>, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6729 | method public static java.util.Map<java.lang.String,java.lang.Object> readAttributes(java.nio.file.Path, String, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6730 | method public static java.nio.file.Path readSymbolicLink(java.nio.file.Path) throws java.io.IOException; |
| 6731 | method public static java.nio.file.Path setAttribute(java.nio.file.Path, String, Object, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6732 | method public static java.nio.file.Path setLastModifiedTime(java.nio.file.Path, java.nio.file.attribute.FileTime) throws java.io.IOException; |
| 6733 | method public static java.nio.file.Path setOwner(java.nio.file.Path, java.nio.file.attribute.UserPrincipal) throws java.io.IOException; |
| 6734 | method public static java.nio.file.Path setPosixFilePermissions(java.nio.file.Path, java.util.Set<java.nio.file.attribute.PosixFilePermission>) throws java.io.IOException; |
| 6735 | method public static long size(java.nio.file.Path) throws java.io.IOException; |
| 6736 | method public static java.util.stream.Stream<java.nio.file.Path> walk(java.nio.file.Path, int, java.nio.file.FileVisitOption...) throws java.io.IOException; |
| 6737 | method public static java.util.stream.Stream<java.nio.file.Path> walk(java.nio.file.Path, java.nio.file.FileVisitOption...) throws java.io.IOException; |
| 6738 | method public static java.nio.file.Path walkFileTree(java.nio.file.Path, java.util.Set<java.nio.file.FileVisitOption>, int, java.nio.file.FileVisitor<? super java.nio.file.Path>) throws java.io.IOException; |
| 6739 | method public static java.nio.file.Path walkFileTree(java.nio.file.Path, java.nio.file.FileVisitor<? super java.nio.file.Path>) throws java.io.IOException; |
| 6740 | method public static java.nio.file.Path write(java.nio.file.Path, byte[], java.nio.file.OpenOption...) throws java.io.IOException; |
| 6741 | method public static java.nio.file.Path write(java.nio.file.Path, Iterable<? extends java.lang.CharSequence>, java.nio.charset.Charset, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6742 | method public static java.nio.file.Path write(java.nio.file.Path, Iterable<? extends java.lang.CharSequence>, java.nio.file.OpenOption...) throws java.io.IOException; |
| 6743 | } |
| 6744 | |
| 6745 | public class InvalidPathException extends java.lang.IllegalArgumentException { |
| 6746 | ctor public InvalidPathException(String, String, int); |
| 6747 | ctor public InvalidPathException(String, String); |
| 6748 | method public int getIndex(); |
| 6749 | method public String getInput(); |
| 6750 | method public String getReason(); |
| 6751 | } |
| 6752 | |
| 6753 | public enum LinkOption implements java.nio.file.CopyOption java.nio.file.OpenOption { |
| 6754 | enum_constant public static final java.nio.file.LinkOption NOFOLLOW_LINKS; |
| 6755 | } |
| 6756 | |
| 6757 | public final class LinkPermission extends java.security.BasicPermission { |
| 6758 | ctor public LinkPermission(String); |
| 6759 | ctor public LinkPermission(String, String); |
| 6760 | } |
| 6761 | |
| 6762 | public class NoSuchFileException extends java.nio.file.FileSystemException { |
| 6763 | ctor public NoSuchFileException(String); |
| 6764 | ctor public NoSuchFileException(String, String, String); |
| 6765 | } |
| 6766 | |
| 6767 | public class NotDirectoryException extends java.nio.file.FileSystemException { |
| 6768 | ctor public NotDirectoryException(String); |
| 6769 | } |
| 6770 | |
| 6771 | public class NotLinkException extends java.nio.file.FileSystemException { |
| 6772 | ctor public NotLinkException(String); |
| 6773 | ctor public NotLinkException(String, String, String); |
| 6774 | } |
| 6775 | |
| 6776 | public interface OpenOption { |
| 6777 | } |
| 6778 | |
| 6779 | public interface Path extends java.lang.Comparable<java.nio.file.Path> java.lang.Iterable<java.nio.file.Path> java.nio.file.Watchable { |
| 6780 | method public int compareTo(java.nio.file.Path); |
| 6781 | method public boolean endsWith(java.nio.file.Path); |
| 6782 | method public boolean endsWith(String); |
| 6783 | method public boolean equals(Object); |
| 6784 | method public java.nio.file.Path getFileName(); |
| 6785 | method public java.nio.file.FileSystem getFileSystem(); |
| 6786 | method public java.nio.file.Path getName(int); |
| 6787 | method public int getNameCount(); |
| 6788 | method public java.nio.file.Path getParent(); |
| 6789 | method public java.nio.file.Path getRoot(); |
| 6790 | method public int hashCode(); |
| 6791 | method public boolean isAbsolute(); |
| 6792 | method public java.util.Iterator<java.nio.file.Path> iterator(); |
| 6793 | method public java.nio.file.Path normalize(); |
| 6794 | method public java.nio.file.Path relativize(java.nio.file.Path); |
| 6795 | method public java.nio.file.Path resolve(java.nio.file.Path); |
| 6796 | method public java.nio.file.Path resolve(String); |
| 6797 | method public java.nio.file.Path resolveSibling(java.nio.file.Path); |
| 6798 | method public java.nio.file.Path resolveSibling(String); |
| 6799 | method public boolean startsWith(java.nio.file.Path); |
| 6800 | method public boolean startsWith(String); |
| 6801 | method public java.nio.file.Path subpath(int, int); |
| 6802 | method public java.nio.file.Path toAbsolutePath(); |
| 6803 | method public java.io.File toFile(); |
| 6804 | method public java.nio.file.Path toRealPath(java.nio.file.LinkOption...) throws java.io.IOException; |
| 6805 | method public String toString(); |
| 6806 | method public java.net.URI toUri(); |
| 6807 | } |
| 6808 | |
| 6809 | @java.lang.FunctionalInterface public interface PathMatcher { |
| 6810 | method public boolean matches(java.nio.file.Path); |
| 6811 | } |
| 6812 | |
| 6813 | public final class Paths { |
| 6814 | method public static java.nio.file.Path get(String, java.lang.String...); |
| 6815 | method public static java.nio.file.Path get(java.net.URI); |
| 6816 | } |
| 6817 | |
| 6818 | public class ProviderMismatchException extends java.lang.IllegalArgumentException { |
| 6819 | ctor public ProviderMismatchException(); |
| 6820 | ctor public ProviderMismatchException(String); |
| 6821 | } |
| 6822 | |
| 6823 | public class ProviderNotFoundException extends java.lang.RuntimeException { |
| 6824 | ctor public ProviderNotFoundException(); |
| 6825 | ctor public ProviderNotFoundException(String); |
| 6826 | } |
| 6827 | |
| 6828 | public class ReadOnlyFileSystemException extends java.lang.UnsupportedOperationException { |
| 6829 | ctor public ReadOnlyFileSystemException(); |
| 6830 | } |
| 6831 | |
| 6832 | public interface SecureDirectoryStream<T> extends java.nio.file.DirectoryStream<T> { |
| 6833 | method public void deleteDirectory(T) throws java.io.IOException; |
| 6834 | method public void deleteFile(T) throws java.io.IOException; |
| 6835 | method public <V extends java.nio.file.attribute.FileAttributeView> V getFileAttributeView(Class<V>); |
| 6836 | method public <V extends java.nio.file.attribute.FileAttributeView> V getFileAttributeView(T, Class<V>, java.nio.file.LinkOption...); |
| 6837 | method public void move(T, java.nio.file.SecureDirectoryStream<T>, T) throws java.io.IOException; |
| 6838 | method public java.nio.channels.SeekableByteChannel newByteChannel(T, java.util.Set<? extends java.nio.file.OpenOption>, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 6839 | method public java.nio.file.SecureDirectoryStream<T> newDirectoryStream(T, java.nio.file.LinkOption...) throws java.io.IOException; |
| 6840 | } |
| 6841 | |
| 6842 | public class SimpleFileVisitor<T> implements java.nio.file.FileVisitor<T> { |
| 6843 | ctor protected SimpleFileVisitor(); |
| 6844 | method public java.nio.file.FileVisitResult postVisitDirectory(T, java.io.IOException) throws java.io.IOException; |
| 6845 | method public java.nio.file.FileVisitResult preVisitDirectory(T, java.nio.file.attribute.BasicFileAttributes) throws java.io.IOException; |
| 6846 | method public java.nio.file.FileVisitResult visitFile(T, java.nio.file.attribute.BasicFileAttributes) throws java.io.IOException; |
| 6847 | method public java.nio.file.FileVisitResult visitFileFailed(T, java.io.IOException) throws java.io.IOException; |
| 6848 | } |
| 6849 | |
| 6850 | public enum StandardCopyOption implements java.nio.file.CopyOption { |
| 6851 | enum_constant public static final java.nio.file.StandardCopyOption ATOMIC_MOVE; |
| 6852 | enum_constant public static final java.nio.file.StandardCopyOption COPY_ATTRIBUTES; |
| 6853 | enum_constant public static final java.nio.file.StandardCopyOption REPLACE_EXISTING; |
| 6854 | } |
| 6855 | |
| 6856 | public enum StandardOpenOption implements java.nio.file.OpenOption { |
| 6857 | enum_constant public static final java.nio.file.StandardOpenOption APPEND; |
| 6858 | enum_constant public static final java.nio.file.StandardOpenOption CREATE; |
| 6859 | enum_constant public static final java.nio.file.StandardOpenOption CREATE_NEW; |
| 6860 | enum_constant public static final java.nio.file.StandardOpenOption DELETE_ON_CLOSE; |
| 6861 | enum_constant public static final java.nio.file.StandardOpenOption DSYNC; |
| 6862 | enum_constant public static final java.nio.file.StandardOpenOption READ; |
| 6863 | enum_constant public static final java.nio.file.StandardOpenOption SPARSE; |
| 6864 | enum_constant public static final java.nio.file.StandardOpenOption SYNC; |
| 6865 | enum_constant public static final java.nio.file.StandardOpenOption TRUNCATE_EXISTING; |
| 6866 | enum_constant public static final java.nio.file.StandardOpenOption WRITE; |
| 6867 | } |
| 6868 | |
| 6869 | public final class StandardWatchEventKinds { |
| 6870 | field public static final java.nio.file.WatchEvent.Kind<java.nio.file.Path> ENTRY_CREATE; |
| 6871 | field public static final java.nio.file.WatchEvent.Kind<java.nio.file.Path> ENTRY_DELETE; |
| 6872 | field public static final java.nio.file.WatchEvent.Kind<java.nio.file.Path> ENTRY_MODIFY; |
| 6873 | field public static final java.nio.file.WatchEvent.Kind<java.lang.Object> OVERFLOW; |
| 6874 | } |
| 6875 | |
| 6876 | public interface WatchEvent<T> { |
| 6877 | method public T context(); |
| 6878 | method public int count(); |
| 6879 | method public java.nio.file.WatchEvent.Kind<T> kind(); |
| 6880 | } |
| 6881 | |
| 6882 | public static interface WatchEvent.Kind<T> { |
| 6883 | method public String name(); |
| 6884 | method public Class<T> type(); |
| 6885 | } |
| 6886 | |
| 6887 | public static interface WatchEvent.Modifier { |
| 6888 | method public String name(); |
| 6889 | } |
| 6890 | |
| 6891 | public interface WatchKey { |
| 6892 | method public void cancel(); |
| 6893 | method public boolean isValid(); |
| 6894 | method public java.util.List<java.nio.file.WatchEvent<?>> pollEvents(); |
| 6895 | method public boolean reset(); |
| 6896 | method public java.nio.file.Watchable watchable(); |
| 6897 | } |
| 6898 | |
| 6899 | public interface WatchService extends java.io.Closeable { |
| 6900 | method public java.nio.file.WatchKey poll(); |
| 6901 | method public java.nio.file.WatchKey poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 6902 | method public java.nio.file.WatchKey take() throws java.lang.InterruptedException; |
| 6903 | } |
| 6904 | |
| 6905 | public interface Watchable { |
| 6906 | method public java.nio.file.WatchKey register(java.nio.file.WatchService, java.nio.file.WatchEvent.Kind<?>[], java.nio.file.WatchEvent.Modifier...) throws java.io.IOException; |
| 6907 | method public java.nio.file.WatchKey register(java.nio.file.WatchService, java.nio.file.WatchEvent.Kind<?>...) throws java.io.IOException; |
| 6908 | } |
| 6909 | |
| 6910 | } |
| 6911 | |
| 6912 | package java.nio.file.attribute { |
| 6913 | |
| 6914 | public final class AclEntry { |
| 6915 | method public java.util.Set<java.nio.file.attribute.AclEntryFlag> flags(); |
| 6916 | method public static java.nio.file.attribute.AclEntry.Builder newBuilder(); |
| 6917 | method public static java.nio.file.attribute.AclEntry.Builder newBuilder(java.nio.file.attribute.AclEntry); |
| 6918 | method public java.util.Set<java.nio.file.attribute.AclEntryPermission> permissions(); |
| 6919 | method public java.nio.file.attribute.UserPrincipal principal(); |
| 6920 | method public java.nio.file.attribute.AclEntryType type(); |
| 6921 | } |
| 6922 | |
| 6923 | public static final class AclEntry.Builder { |
| 6924 | method public java.nio.file.attribute.AclEntry build(); |
| 6925 | method public java.nio.file.attribute.AclEntry.Builder setFlags(java.util.Set<java.nio.file.attribute.AclEntryFlag>); |
| 6926 | method public java.nio.file.attribute.AclEntry.Builder setFlags(java.nio.file.attribute.AclEntryFlag...); |
| 6927 | method public java.nio.file.attribute.AclEntry.Builder setPermissions(java.util.Set<java.nio.file.attribute.AclEntryPermission>); |
| 6928 | method public java.nio.file.attribute.AclEntry.Builder setPermissions(java.nio.file.attribute.AclEntryPermission...); |
| 6929 | method public java.nio.file.attribute.AclEntry.Builder setPrincipal(java.nio.file.attribute.UserPrincipal); |
| 6930 | method public java.nio.file.attribute.AclEntry.Builder setType(java.nio.file.attribute.AclEntryType); |
| 6931 | } |
| 6932 | |
| 6933 | public enum AclEntryFlag { |
| 6934 | enum_constant public static final java.nio.file.attribute.AclEntryFlag DIRECTORY_INHERIT; |
| 6935 | enum_constant public static final java.nio.file.attribute.AclEntryFlag FILE_INHERIT; |
| 6936 | enum_constant public static final java.nio.file.attribute.AclEntryFlag INHERIT_ONLY; |
| 6937 | enum_constant public static final java.nio.file.attribute.AclEntryFlag NO_PROPAGATE_INHERIT; |
| 6938 | } |
| 6939 | |
| 6940 | public enum AclEntryPermission { |
| 6941 | enum_constant public static final java.nio.file.attribute.AclEntryPermission APPEND_DATA; |
| 6942 | enum_constant public static final java.nio.file.attribute.AclEntryPermission DELETE; |
| 6943 | enum_constant public static final java.nio.file.attribute.AclEntryPermission DELETE_CHILD; |
| 6944 | enum_constant public static final java.nio.file.attribute.AclEntryPermission EXECUTE; |
| 6945 | enum_constant public static final java.nio.file.attribute.AclEntryPermission READ_ACL; |
| 6946 | enum_constant public static final java.nio.file.attribute.AclEntryPermission READ_ATTRIBUTES; |
| 6947 | enum_constant public static final java.nio.file.attribute.AclEntryPermission READ_DATA; |
| 6948 | enum_constant public static final java.nio.file.attribute.AclEntryPermission READ_NAMED_ATTRS; |
| 6949 | enum_constant public static final java.nio.file.attribute.AclEntryPermission SYNCHRONIZE; |
| 6950 | enum_constant public static final java.nio.file.attribute.AclEntryPermission WRITE_ACL; |
| 6951 | enum_constant public static final java.nio.file.attribute.AclEntryPermission WRITE_ATTRIBUTES; |
| 6952 | enum_constant public static final java.nio.file.attribute.AclEntryPermission WRITE_DATA; |
| 6953 | enum_constant public static final java.nio.file.attribute.AclEntryPermission WRITE_NAMED_ATTRS; |
| 6954 | enum_constant public static final java.nio.file.attribute.AclEntryPermission WRITE_OWNER; |
| 6955 | field public static final java.nio.file.attribute.AclEntryPermission ADD_FILE; |
| 6956 | field public static final java.nio.file.attribute.AclEntryPermission ADD_SUBDIRECTORY; |
| 6957 | field public static final java.nio.file.attribute.AclEntryPermission LIST_DIRECTORY; |
| 6958 | } |
| 6959 | |
| 6960 | public enum AclEntryType { |
| 6961 | enum_constant public static final java.nio.file.attribute.AclEntryType ALARM; |
| 6962 | enum_constant public static final java.nio.file.attribute.AclEntryType ALLOW; |
| 6963 | enum_constant public static final java.nio.file.attribute.AclEntryType AUDIT; |
| 6964 | enum_constant public static final java.nio.file.attribute.AclEntryType DENY; |
| 6965 | } |
| 6966 | |
| 6967 | public interface AclFileAttributeView extends java.nio.file.attribute.FileOwnerAttributeView { |
| 6968 | method public java.util.List<java.nio.file.attribute.AclEntry> getAcl() throws java.io.IOException; |
| 6969 | method public void setAcl(java.util.List<java.nio.file.attribute.AclEntry>) throws java.io.IOException; |
| 6970 | } |
| 6971 | |
| 6972 | public interface AttributeView { |
| 6973 | method public String name(); |
| 6974 | } |
| 6975 | |
| 6976 | public interface BasicFileAttributeView extends java.nio.file.attribute.FileAttributeView { |
| 6977 | method public java.nio.file.attribute.BasicFileAttributes readAttributes() throws java.io.IOException; |
| 6978 | method public void setTimes(java.nio.file.attribute.FileTime, java.nio.file.attribute.FileTime, java.nio.file.attribute.FileTime) throws java.io.IOException; |
| 6979 | } |
| 6980 | |
| 6981 | public interface BasicFileAttributes { |
| 6982 | method public java.nio.file.attribute.FileTime creationTime(); |
| 6983 | method public Object fileKey(); |
| 6984 | method public boolean isDirectory(); |
| 6985 | method public boolean isOther(); |
| 6986 | method public boolean isRegularFile(); |
| 6987 | method public boolean isSymbolicLink(); |
| 6988 | method public java.nio.file.attribute.FileTime lastAccessTime(); |
| 6989 | method public java.nio.file.attribute.FileTime lastModifiedTime(); |
| 6990 | method public long size(); |
| 6991 | } |
| 6992 | |
| 6993 | public interface DosFileAttributeView extends java.nio.file.attribute.BasicFileAttributeView { |
| 6994 | method public java.nio.file.attribute.DosFileAttributes readAttributes() throws java.io.IOException; |
| 6995 | method public void setArchive(boolean) throws java.io.IOException; |
| 6996 | method public void setHidden(boolean) throws java.io.IOException; |
| 6997 | method public void setReadOnly(boolean) throws java.io.IOException; |
| 6998 | method public void setSystem(boolean) throws java.io.IOException; |
| 6999 | } |
| 7000 | |
| 7001 | public interface DosFileAttributes extends java.nio.file.attribute.BasicFileAttributes { |
| 7002 | method public boolean isArchive(); |
| 7003 | method public boolean isHidden(); |
| 7004 | method public boolean isReadOnly(); |
| 7005 | method public boolean isSystem(); |
| 7006 | } |
| 7007 | |
| 7008 | public interface FileAttribute<T> { |
| 7009 | method public String name(); |
| 7010 | method public T value(); |
| 7011 | } |
| 7012 | |
| 7013 | public interface FileAttributeView extends java.nio.file.attribute.AttributeView { |
| 7014 | } |
| 7015 | |
| 7016 | public interface FileOwnerAttributeView extends java.nio.file.attribute.FileAttributeView { |
| 7017 | method public java.nio.file.attribute.UserPrincipal getOwner() throws java.io.IOException; |
| 7018 | method public void setOwner(java.nio.file.attribute.UserPrincipal) throws java.io.IOException; |
| 7019 | } |
| 7020 | |
| 7021 | public interface FileStoreAttributeView extends java.nio.file.attribute.AttributeView { |
| 7022 | } |
| 7023 | |
| 7024 | public final class FileTime implements java.lang.Comparable<java.nio.file.attribute.FileTime> { |
| 7025 | method public int compareTo(java.nio.file.attribute.FileTime); |
| 7026 | method public static java.nio.file.attribute.FileTime from(long, java.util.concurrent.TimeUnit); |
| 7027 | method public static java.nio.file.attribute.FileTime from(java.time.Instant); |
| 7028 | method public static java.nio.file.attribute.FileTime fromMillis(long); |
| 7029 | method public long to(java.util.concurrent.TimeUnit); |
| 7030 | method public java.time.Instant toInstant(); |
| 7031 | method public long toMillis(); |
| 7032 | } |
| 7033 | |
| 7034 | public interface GroupPrincipal extends java.nio.file.attribute.UserPrincipal { |
| 7035 | } |
| 7036 | |
| 7037 | public interface PosixFileAttributeView extends java.nio.file.attribute.BasicFileAttributeView java.nio.file.attribute.FileOwnerAttributeView { |
| 7038 | method public java.nio.file.attribute.PosixFileAttributes readAttributes() throws java.io.IOException; |
| 7039 | method public void setGroup(java.nio.file.attribute.GroupPrincipal) throws java.io.IOException; |
| 7040 | method public void setPermissions(java.util.Set<java.nio.file.attribute.PosixFilePermission>) throws java.io.IOException; |
| 7041 | } |
| 7042 | |
| 7043 | public interface PosixFileAttributes extends java.nio.file.attribute.BasicFileAttributes { |
| 7044 | method public java.nio.file.attribute.GroupPrincipal group(); |
| 7045 | method public java.nio.file.attribute.UserPrincipal owner(); |
| 7046 | method public java.util.Set<java.nio.file.attribute.PosixFilePermission> permissions(); |
| 7047 | } |
| 7048 | |
| 7049 | public enum PosixFilePermission { |
| 7050 | enum_constant public static final java.nio.file.attribute.PosixFilePermission GROUP_EXECUTE; |
| 7051 | enum_constant public static final java.nio.file.attribute.PosixFilePermission GROUP_READ; |
| 7052 | enum_constant public static final java.nio.file.attribute.PosixFilePermission GROUP_WRITE; |
| 7053 | enum_constant public static final java.nio.file.attribute.PosixFilePermission OTHERS_EXECUTE; |
| 7054 | enum_constant public static final java.nio.file.attribute.PosixFilePermission OTHERS_READ; |
| 7055 | enum_constant public static final java.nio.file.attribute.PosixFilePermission OTHERS_WRITE; |
| 7056 | enum_constant public static final java.nio.file.attribute.PosixFilePermission OWNER_EXECUTE; |
| 7057 | enum_constant public static final java.nio.file.attribute.PosixFilePermission OWNER_READ; |
| 7058 | enum_constant public static final java.nio.file.attribute.PosixFilePermission OWNER_WRITE; |
| 7059 | } |
| 7060 | |
| 7061 | public final class PosixFilePermissions { |
| 7062 | method public static java.nio.file.attribute.FileAttribute<java.util.Set<java.nio.file.attribute.PosixFilePermission>> asFileAttribute(java.util.Set<java.nio.file.attribute.PosixFilePermission>); |
| 7063 | method public static java.util.Set<java.nio.file.attribute.PosixFilePermission> fromString(String); |
| 7064 | method public static String toString(java.util.Set<java.nio.file.attribute.PosixFilePermission>); |
| 7065 | } |
| 7066 | |
| 7067 | public interface UserDefinedFileAttributeView extends java.nio.file.attribute.FileAttributeView { |
| 7068 | method public void delete(String) throws java.io.IOException; |
| 7069 | method public java.util.List<java.lang.String> list() throws java.io.IOException; |
| 7070 | method public int read(String, java.nio.ByteBuffer) throws java.io.IOException; |
| 7071 | method public int size(String) throws java.io.IOException; |
| 7072 | method public int write(String, java.nio.ByteBuffer) throws java.io.IOException; |
| 7073 | } |
| 7074 | |
| 7075 | public interface UserPrincipal extends java.security.Principal { |
| 7076 | } |
| 7077 | |
| 7078 | public abstract class UserPrincipalLookupService { |
| 7079 | ctor protected UserPrincipalLookupService(); |
| 7080 | method public abstract java.nio.file.attribute.GroupPrincipal lookupPrincipalByGroupName(String) throws java.io.IOException; |
| 7081 | method public abstract java.nio.file.attribute.UserPrincipal lookupPrincipalByName(String) throws java.io.IOException; |
| 7082 | } |
| 7083 | |
| 7084 | public class UserPrincipalNotFoundException extends java.io.IOException { |
| 7085 | ctor public UserPrincipalNotFoundException(String); |
| 7086 | method public String getName(); |
| 7087 | } |
| 7088 | |
| 7089 | } |
| 7090 | |
| 7091 | package java.nio.file.spi { |
| 7092 | |
| 7093 | public abstract class FileSystemProvider { |
| 7094 | ctor protected FileSystemProvider(); |
| 7095 | method public abstract void checkAccess(java.nio.file.Path, java.nio.file.AccessMode...) throws java.io.IOException; |
| 7096 | method public abstract void copy(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption...) throws java.io.IOException; |
| 7097 | method public abstract void createDirectory(java.nio.file.Path, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 7098 | method public void createLink(java.nio.file.Path, java.nio.file.Path) throws java.io.IOException; |
| 7099 | method public void createSymbolicLink(java.nio.file.Path, java.nio.file.Path, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 7100 | method public abstract void delete(java.nio.file.Path) throws java.io.IOException; |
| 7101 | method public boolean deleteIfExists(java.nio.file.Path) throws java.io.IOException; |
| 7102 | method public abstract <V extends java.nio.file.attribute.FileAttributeView> V getFileAttributeView(java.nio.file.Path, Class<V>, java.nio.file.LinkOption...); |
| 7103 | method public abstract java.nio.file.FileStore getFileStore(java.nio.file.Path) throws java.io.IOException; |
| 7104 | method public abstract java.nio.file.FileSystem getFileSystem(java.net.URI); |
| 7105 | method public abstract java.nio.file.Path getPath(java.net.URI); |
| 7106 | method public abstract String getScheme(); |
| 7107 | method public static java.util.List<java.nio.file.spi.FileSystemProvider> installedProviders(); |
| 7108 | method public abstract boolean isHidden(java.nio.file.Path) throws java.io.IOException; |
| 7109 | method public abstract boolean isSameFile(java.nio.file.Path, java.nio.file.Path) throws java.io.IOException; |
| 7110 | method public abstract void move(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption...) throws java.io.IOException; |
| 7111 | method public java.nio.channels.AsynchronousFileChannel newAsynchronousFileChannel(java.nio.file.Path, java.util.Set<? extends java.nio.file.OpenOption>, java.util.concurrent.ExecutorService, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 7112 | method public abstract java.nio.channels.SeekableByteChannel newByteChannel(java.nio.file.Path, java.util.Set<? extends java.nio.file.OpenOption>, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 7113 | method public abstract java.nio.file.DirectoryStream<java.nio.file.Path> newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream.Filter<? super java.nio.file.Path>) throws java.io.IOException; |
| 7114 | method public java.nio.channels.FileChannel newFileChannel(java.nio.file.Path, java.util.Set<? extends java.nio.file.OpenOption>, java.nio.file.attribute.FileAttribute<?>...) throws java.io.IOException; |
| 7115 | method public abstract java.nio.file.FileSystem newFileSystem(java.net.URI, java.util.Map<java.lang.String,?>) throws java.io.IOException; |
| 7116 | method public java.nio.file.FileSystem newFileSystem(java.nio.file.Path, java.util.Map<java.lang.String,?>) throws java.io.IOException; |
| 7117 | method public java.io.InputStream newInputStream(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 7118 | method public java.io.OutputStream newOutputStream(java.nio.file.Path, java.nio.file.OpenOption...) throws java.io.IOException; |
| 7119 | method public abstract <A extends java.nio.file.attribute.BasicFileAttributes> A readAttributes(java.nio.file.Path, Class<A>, java.nio.file.LinkOption...) throws java.io.IOException; |
| 7120 | method public abstract java.util.Map<java.lang.String,java.lang.Object> readAttributes(java.nio.file.Path, String, java.nio.file.LinkOption...) throws java.io.IOException; |
| 7121 | method public java.nio.file.Path readSymbolicLink(java.nio.file.Path) throws java.io.IOException; |
| 7122 | method public abstract void setAttribute(java.nio.file.Path, String, Object, java.nio.file.LinkOption...) throws java.io.IOException; |
| 7123 | } |
| 7124 | |
| 7125 | public abstract class FileTypeDetector { |
| 7126 | ctor protected FileTypeDetector(); |
| 7127 | method public abstract String probeContentType(java.nio.file.Path) throws java.io.IOException; |
| 7128 | } |
| 7129 | |
| 7130 | } |
| 7131 | |
| 7132 | package java.security { |
| 7133 | |
| 7134 | public final class AccessControlContext { |
| 7135 | ctor public AccessControlContext(java.security.ProtectionDomain[]); |
| 7136 | ctor public AccessControlContext(java.security.AccessControlContext, java.security.DomainCombiner); |
| 7137 | method public void checkPermission(java.security.Permission) throws java.security.AccessControlException; |
| 7138 | method public java.security.DomainCombiner getDomainCombiner(); |
| 7139 | } |
| 7140 | |
| 7141 | public class AccessControlException extends java.lang.SecurityException { |
| 7142 | ctor public AccessControlException(String); |
| 7143 | ctor public AccessControlException(String, java.security.Permission); |
| 7144 | method public java.security.Permission getPermission(); |
| 7145 | } |
| 7146 | |
| 7147 | public final class AccessController { |
| 7148 | method public static void checkPermission(java.security.Permission) throws java.security.AccessControlException; |
| 7149 | method public static <T> T doPrivileged(java.security.PrivilegedAction<T>); |
| 7150 | method public static <T> T doPrivileged(java.security.PrivilegedAction<T>, java.security.AccessControlContext); |
| 7151 | method public static <T> T doPrivileged(java.security.PrivilegedExceptionAction<T>) throws java.security.PrivilegedActionException; |
| 7152 | method public static <T> T doPrivileged(java.security.PrivilegedExceptionAction<T>, java.security.AccessControlContext) throws java.security.PrivilegedActionException; |
| 7153 | method public static <T> T doPrivilegedWithCombiner(java.security.PrivilegedAction<T>); |
| 7154 | method public static <T> T doPrivilegedWithCombiner(java.security.PrivilegedExceptionAction<T>) throws java.security.PrivilegedActionException; |
| 7155 | method public static java.security.AccessControlContext getContext(); |
| 7156 | } |
| 7157 | |
| 7158 | public interface AlgorithmConstraints { |
| 7159 | method public boolean permits(java.util.Set<java.security.CryptoPrimitive>, String, java.security.AlgorithmParameters); |
| 7160 | method public boolean permits(java.util.Set<java.security.CryptoPrimitive>, java.security.Key); |
| 7161 | method public boolean permits(java.util.Set<java.security.CryptoPrimitive>, String, java.security.Key, java.security.AlgorithmParameters); |
| 7162 | } |
| 7163 | |
| 7164 | public class AlgorithmParameterGenerator { |
| 7165 | ctor protected AlgorithmParameterGenerator(java.security.AlgorithmParameterGeneratorSpi, java.security.Provider, String); |
| 7166 | method public final java.security.AlgorithmParameters generateParameters(); |
| 7167 | method public final String getAlgorithm(); |
| 7168 | method public static java.security.AlgorithmParameterGenerator getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 7169 | method public static java.security.AlgorithmParameterGenerator getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7170 | method public static java.security.AlgorithmParameterGenerator getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7171 | method public final java.security.Provider getProvider(); |
| 7172 | method public final void init(int); |
| 7173 | method public final void init(int, java.security.SecureRandom); |
| 7174 | method public final void init(java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException; |
| 7175 | method public final void init(java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException; |
| 7176 | } |
| 7177 | |
| 7178 | public abstract class AlgorithmParameterGeneratorSpi { |
| 7179 | ctor public AlgorithmParameterGeneratorSpi(); |
| 7180 | method protected abstract java.security.AlgorithmParameters engineGenerateParameters(); |
| 7181 | method protected abstract void engineInit(int, java.security.SecureRandom); |
| 7182 | method protected abstract void engineInit(java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException; |
| 7183 | } |
| 7184 | |
| 7185 | public class AlgorithmParameters { |
| 7186 | ctor protected AlgorithmParameters(java.security.AlgorithmParametersSpi, java.security.Provider, String); |
| 7187 | method public final String getAlgorithm(); |
| 7188 | method public final byte[] getEncoded() throws java.io.IOException; |
| 7189 | method public final byte[] getEncoded(String) throws java.io.IOException; |
| 7190 | method public static java.security.AlgorithmParameters getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 7191 | method public static java.security.AlgorithmParameters getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7192 | method public static java.security.AlgorithmParameters getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7193 | method public final <T extends java.security.spec.AlgorithmParameterSpec> T getParameterSpec(Class<T>) throws java.security.spec.InvalidParameterSpecException; |
| 7194 | method public final java.security.Provider getProvider(); |
| 7195 | method public final void init(java.security.spec.AlgorithmParameterSpec) throws java.security.spec.InvalidParameterSpecException; |
| 7196 | method public final void init(byte[]) throws java.io.IOException; |
| 7197 | method public final void init(byte[], String) throws java.io.IOException; |
| 7198 | method public final String toString(); |
| 7199 | } |
| 7200 | |
| 7201 | public abstract class AlgorithmParametersSpi { |
| 7202 | ctor public AlgorithmParametersSpi(); |
| 7203 | method protected abstract byte[] engineGetEncoded() throws java.io.IOException; |
| 7204 | method protected abstract byte[] engineGetEncoded(String) throws java.io.IOException; |
| 7205 | method protected abstract <T extends java.security.spec.AlgorithmParameterSpec> T engineGetParameterSpec(Class<T>) throws java.security.spec.InvalidParameterSpecException; |
| 7206 | method protected abstract void engineInit(java.security.spec.AlgorithmParameterSpec) throws java.security.spec.InvalidParameterSpecException; |
| 7207 | method protected abstract void engineInit(byte[]) throws java.io.IOException; |
| 7208 | method protected abstract void engineInit(byte[], String) throws java.io.IOException; |
| 7209 | method protected abstract String engineToString(); |
| 7210 | } |
| 7211 | |
| 7212 | public final class AllPermission extends java.security.Permission { |
| 7213 | ctor public AllPermission(); |
| 7214 | ctor public AllPermission(String, String); |
| 7215 | method public String getActions(); |
| 7216 | method public boolean implies(java.security.Permission); |
| 7217 | } |
| 7218 | |
| 7219 | public abstract class AuthProvider extends java.security.Provider { |
| 7220 | ctor protected AuthProvider(String, double, String); |
| 7221 | method public abstract void login(javax.security.auth.Subject, javax.security.auth.callback.CallbackHandler) throws javax.security.auth.login.LoginException; |
| 7222 | method public abstract void logout() throws javax.security.auth.login.LoginException; |
| 7223 | method public abstract void setCallbackHandler(javax.security.auth.callback.CallbackHandler); |
| 7224 | } |
| 7225 | |
| 7226 | public abstract class BasicPermission extends java.security.Permission implements java.io.Serializable { |
| 7227 | ctor public BasicPermission(String); |
| 7228 | ctor public BasicPermission(String, String); |
| 7229 | method public String getActions(); |
| 7230 | method public boolean implies(java.security.Permission); |
| 7231 | } |
| 7232 | |
| 7233 | @Deprecated public interface Certificate { |
| 7234 | method @Deprecated public void decode(java.io.InputStream) throws java.io.IOException, java.security.KeyException; |
| 7235 | method @Deprecated public void encode(java.io.OutputStream) throws java.io.IOException, java.security.KeyException; |
| 7236 | method @Deprecated public String getFormat(); |
| 7237 | method @Deprecated public java.security.Principal getGuarantor(); |
| 7238 | method @Deprecated public java.security.Principal getPrincipal(); |
| 7239 | method @Deprecated public java.security.PublicKey getPublicKey(); |
| 7240 | method @Deprecated public String toString(boolean); |
| 7241 | } |
| 7242 | |
| 7243 | public final class CodeSigner implements java.io.Serializable { |
| 7244 | ctor public CodeSigner(java.security.cert.CertPath, java.security.Timestamp); |
| 7245 | method public java.security.cert.CertPath getSignerCertPath(); |
| 7246 | method public java.security.Timestamp getTimestamp(); |
| 7247 | } |
| 7248 | |
| 7249 | public class CodeSource implements java.io.Serializable { |
| 7250 | ctor public CodeSource(java.net.URL, java.security.cert.Certificate[]); |
| 7251 | ctor public CodeSource(java.net.URL, java.security.CodeSigner[]); |
| 7252 | method public final java.security.cert.Certificate[] getCertificates(); |
| 7253 | method public final java.security.CodeSigner[] getCodeSigners(); |
| 7254 | method public final java.net.URL getLocation(); |
| 7255 | method public boolean implies(java.security.CodeSource); |
| 7256 | } |
| 7257 | |
| 7258 | public enum CryptoPrimitive { |
| 7259 | enum_constant public static final java.security.CryptoPrimitive BLOCK_CIPHER; |
| 7260 | enum_constant public static final java.security.CryptoPrimitive KEY_AGREEMENT; |
| 7261 | enum_constant public static final java.security.CryptoPrimitive KEY_ENCAPSULATION; |
| 7262 | enum_constant public static final java.security.CryptoPrimitive KEY_WRAP; |
| 7263 | enum_constant public static final java.security.CryptoPrimitive MAC; |
| 7264 | enum_constant public static final java.security.CryptoPrimitive MESSAGE_DIGEST; |
| 7265 | enum_constant public static final java.security.CryptoPrimitive PUBLIC_KEY_ENCRYPTION; |
| 7266 | enum_constant public static final java.security.CryptoPrimitive SECURE_RANDOM; |
| 7267 | enum_constant public static final java.security.CryptoPrimitive SIGNATURE; |
| 7268 | enum_constant public static final java.security.CryptoPrimitive STREAM_CIPHER; |
| 7269 | } |
| 7270 | |
| 7271 | public class DigestException extends java.security.GeneralSecurityException { |
| 7272 | ctor public DigestException(); |
| 7273 | ctor public DigestException(String); |
| 7274 | ctor public DigestException(String, Throwable); |
| 7275 | ctor public DigestException(Throwable); |
| 7276 | } |
| 7277 | |
| 7278 | public class DigestInputStream extends java.io.FilterInputStream { |
| 7279 | ctor public DigestInputStream(java.io.InputStream, java.security.MessageDigest); |
| 7280 | method public java.security.MessageDigest getMessageDigest(); |
| 7281 | method public void on(boolean); |
| 7282 | method public void setMessageDigest(java.security.MessageDigest); |
| 7283 | field protected java.security.MessageDigest digest; |
| 7284 | } |
| 7285 | |
| 7286 | public class DigestOutputStream extends java.io.FilterOutputStream { |
| 7287 | ctor public DigestOutputStream(java.io.OutputStream, java.security.MessageDigest); |
| 7288 | method public java.security.MessageDigest getMessageDigest(); |
| 7289 | method public void on(boolean); |
| 7290 | method public void setMessageDigest(java.security.MessageDigest); |
| 7291 | field protected java.security.MessageDigest digest; |
| 7292 | } |
| 7293 | |
| 7294 | public interface DomainCombiner { |
| 7295 | method public java.security.ProtectionDomain[] combine(java.security.ProtectionDomain[], java.security.ProtectionDomain[]); |
| 7296 | } |
| 7297 | |
| 7298 | public final class DomainLoadStoreParameter implements java.security.KeyStore.LoadStoreParameter { |
| 7299 | ctor public DomainLoadStoreParameter(java.net.URI, java.util.Map<java.lang.String,java.security.KeyStore.ProtectionParameter>); |
| 7300 | method public java.net.URI getConfiguration(); |
| 7301 | method public java.security.KeyStore.ProtectionParameter getProtectionParameter(); |
| 7302 | method public java.util.Map<java.lang.String,java.security.KeyStore.ProtectionParameter> getProtectionParams(); |
| 7303 | } |
| 7304 | |
| 7305 | public class GeneralSecurityException extends java.lang.Exception { |
| 7306 | ctor public GeneralSecurityException(); |
| 7307 | ctor public GeneralSecurityException(String); |
| 7308 | ctor public GeneralSecurityException(String, Throwable); |
| 7309 | ctor public GeneralSecurityException(Throwable); |
| 7310 | } |
| 7311 | |
| 7312 | public interface Guard { |
| 7313 | method public void checkGuard(Object) throws java.lang.SecurityException; |
| 7314 | } |
| 7315 | |
| 7316 | public class GuardedObject implements java.io.Serializable { |
| 7317 | ctor public GuardedObject(Object, java.security.Guard); |
| 7318 | method public Object getObject() throws java.lang.SecurityException; |
| 7319 | } |
| 7320 | |
| 7321 | @Deprecated public abstract class Identity implements java.security.Principal java.io.Serializable { |
| 7322 | ctor @Deprecated protected Identity(); |
| 7323 | ctor @Deprecated public Identity(String, java.security.IdentityScope) throws java.security.KeyManagementException; |
| 7324 | ctor @Deprecated public Identity(String); |
| 7325 | method @Deprecated public void addCertificate(java.security.Certificate) throws java.security.KeyManagementException; |
| 7326 | method @Deprecated public java.security.Certificate[] certificates(); |
| 7327 | method @Deprecated public final boolean equals(Object); |
| 7328 | method @Deprecated public String getInfo(); |
| 7329 | method @Deprecated public final String getName(); |
| 7330 | method @Deprecated public java.security.PublicKey getPublicKey(); |
| 7331 | method @Deprecated public final java.security.IdentityScope getScope(); |
| 7332 | method @Deprecated protected boolean identityEquals(java.security.Identity); |
| 7333 | method @Deprecated public void removeCertificate(java.security.Certificate) throws java.security.KeyManagementException; |
| 7334 | method @Deprecated public void setInfo(String); |
| 7335 | method @Deprecated public void setPublicKey(java.security.PublicKey) throws java.security.KeyManagementException; |
| 7336 | method @Deprecated public String toString(boolean); |
| 7337 | } |
| 7338 | |
| 7339 | @Deprecated public abstract class IdentityScope extends java.security.Identity { |
| 7340 | ctor @Deprecated protected IdentityScope(); |
| 7341 | ctor @Deprecated public IdentityScope(String); |
| 7342 | ctor @Deprecated public IdentityScope(String, java.security.IdentityScope) throws java.security.KeyManagementException; |
| 7343 | method @Deprecated public abstract void addIdentity(java.security.Identity) throws java.security.KeyManagementException; |
| 7344 | method @Deprecated public abstract java.security.Identity getIdentity(String); |
| 7345 | method @Deprecated public java.security.Identity getIdentity(java.security.Principal); |
| 7346 | method @Deprecated public abstract java.security.Identity getIdentity(java.security.PublicKey); |
| 7347 | method @Deprecated public static java.security.IdentityScope getSystemScope(); |
| 7348 | method @Deprecated public abstract java.util.Enumeration<java.security.Identity> identities(); |
| 7349 | method @Deprecated public abstract void removeIdentity(java.security.Identity) throws java.security.KeyManagementException; |
| 7350 | method @Deprecated protected static void setSystemScope(java.security.IdentityScope); |
| 7351 | method @Deprecated public abstract int size(); |
| 7352 | } |
| 7353 | |
| 7354 | public class InvalidAlgorithmParameterException extends java.security.GeneralSecurityException { |
| 7355 | ctor public InvalidAlgorithmParameterException(); |
| 7356 | ctor public InvalidAlgorithmParameterException(String); |
| 7357 | ctor public InvalidAlgorithmParameterException(String, Throwable); |
| 7358 | ctor public InvalidAlgorithmParameterException(Throwable); |
| 7359 | } |
| 7360 | |
| 7361 | public class InvalidKeyException extends java.security.KeyException { |
| 7362 | ctor public InvalidKeyException(); |
| 7363 | ctor public InvalidKeyException(String); |
| 7364 | ctor public InvalidKeyException(String, Throwable); |
| 7365 | ctor public InvalidKeyException(Throwable); |
| 7366 | } |
| 7367 | |
| 7368 | public class InvalidParameterException extends java.lang.IllegalArgumentException { |
| 7369 | ctor public InvalidParameterException(); |
| 7370 | ctor public InvalidParameterException(String); |
| 7371 | } |
| 7372 | |
| 7373 | public interface Key extends java.io.Serializable { |
| 7374 | method public String getAlgorithm(); |
| 7375 | method public byte[] getEncoded(); |
| 7376 | method public String getFormat(); |
| 7377 | field public static final long serialVersionUID = 6603384152749567654L; // 0x5ba3eee69414eea6L |
| 7378 | } |
| 7379 | |
| 7380 | public class KeyException extends java.security.GeneralSecurityException { |
| 7381 | ctor public KeyException(); |
| 7382 | ctor public KeyException(String); |
| 7383 | ctor public KeyException(String, Throwable); |
| 7384 | ctor public KeyException(Throwable); |
| 7385 | } |
| 7386 | |
| 7387 | public class KeyFactory { |
| 7388 | ctor protected KeyFactory(java.security.KeyFactorySpi, java.security.Provider, String); |
| 7389 | method public final java.security.PrivateKey generatePrivate(java.security.spec.KeySpec) throws java.security.spec.InvalidKeySpecException; |
| 7390 | method public final java.security.PublicKey generatePublic(java.security.spec.KeySpec) throws java.security.spec.InvalidKeySpecException; |
| 7391 | method public final String getAlgorithm(); |
| 7392 | method public static java.security.KeyFactory getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 7393 | method public static java.security.KeyFactory getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7394 | method public static java.security.KeyFactory getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7395 | method public final <T extends java.security.spec.KeySpec> T getKeySpec(java.security.Key, Class<T>) throws java.security.spec.InvalidKeySpecException; |
| 7396 | method public final java.security.Provider getProvider(); |
| 7397 | method public final java.security.Key translateKey(java.security.Key) throws java.security.InvalidKeyException; |
| 7398 | } |
| 7399 | |
| 7400 | public abstract class KeyFactorySpi { |
| 7401 | ctor public KeyFactorySpi(); |
| 7402 | method protected abstract java.security.PrivateKey engineGeneratePrivate(java.security.spec.KeySpec) throws java.security.spec.InvalidKeySpecException; |
| 7403 | method protected abstract java.security.PublicKey engineGeneratePublic(java.security.spec.KeySpec) throws java.security.spec.InvalidKeySpecException; |
| 7404 | method protected abstract <T extends java.security.spec.KeySpec> T engineGetKeySpec(java.security.Key, Class<T>) throws java.security.spec.InvalidKeySpecException; |
| 7405 | method protected abstract java.security.Key engineTranslateKey(java.security.Key) throws java.security.InvalidKeyException; |
| 7406 | } |
| 7407 | |
| 7408 | public class KeyManagementException extends java.security.KeyException { |
| 7409 | ctor public KeyManagementException(); |
| 7410 | ctor public KeyManagementException(String); |
| 7411 | ctor public KeyManagementException(String, Throwable); |
| 7412 | ctor public KeyManagementException(Throwable); |
| 7413 | } |
| 7414 | |
| 7415 | public final class KeyPair implements java.io.Serializable { |
| 7416 | ctor public KeyPair(java.security.PublicKey, java.security.PrivateKey); |
| 7417 | method public java.security.PrivateKey getPrivate(); |
| 7418 | method public java.security.PublicKey getPublic(); |
| 7419 | } |
| 7420 | |
| 7421 | public abstract class KeyPairGenerator extends java.security.KeyPairGeneratorSpi { |
| 7422 | ctor protected KeyPairGenerator(String); |
| 7423 | method public final java.security.KeyPair genKeyPair(); |
| 7424 | method public java.security.KeyPair generateKeyPair(); |
| 7425 | method public String getAlgorithm(); |
| 7426 | method public static java.security.KeyPairGenerator getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 7427 | method public static java.security.KeyPairGenerator getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7428 | method public static java.security.KeyPairGenerator getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7429 | method public final java.security.Provider getProvider(); |
| 7430 | method public void initialize(int); |
| 7431 | method public void initialize(int, java.security.SecureRandom); |
| 7432 | method public void initialize(java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException; |
| 7433 | } |
| 7434 | |
| 7435 | public abstract class KeyPairGeneratorSpi { |
| 7436 | ctor public KeyPairGeneratorSpi(); |
| 7437 | method public abstract java.security.KeyPair generateKeyPair(); |
| 7438 | method public abstract void initialize(int, java.security.SecureRandom); |
| 7439 | method public void initialize(java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException; |
| 7440 | } |
| 7441 | |
| 7442 | public class KeyRep implements java.io.Serializable { |
| 7443 | ctor public KeyRep(java.security.KeyRep.Type, String, String, byte[]); |
| 7444 | method protected Object readResolve() throws java.io.ObjectStreamException; |
| 7445 | } |
| 7446 | |
| 7447 | public enum KeyRep.Type { |
| 7448 | enum_constant public static final java.security.KeyRep.Type PRIVATE; |
| 7449 | enum_constant public static final java.security.KeyRep.Type PUBLIC; |
| 7450 | enum_constant public static final java.security.KeyRep.Type SECRET; |
| 7451 | } |
| 7452 | |
| 7453 | public class KeyStore { |
| 7454 | ctor protected KeyStore(java.security.KeyStoreSpi, java.security.Provider, String); |
| 7455 | method public final java.util.Enumeration<java.lang.String> aliases() throws java.security.KeyStoreException; |
| 7456 | method public final boolean containsAlias(String) throws java.security.KeyStoreException; |
| 7457 | method public final void deleteEntry(String) throws java.security.KeyStoreException; |
| 7458 | method public final boolean entryInstanceOf(String, Class<? extends java.security.KeyStore.Entry>) throws java.security.KeyStoreException; |
| 7459 | method public final java.security.cert.Certificate getCertificate(String) throws java.security.KeyStoreException; |
| 7460 | method public final String getCertificateAlias(java.security.cert.Certificate) throws java.security.KeyStoreException; |
| 7461 | method public final java.security.cert.Certificate[] getCertificateChain(String) throws java.security.KeyStoreException; |
| 7462 | method public final java.util.Date getCreationDate(String) throws java.security.KeyStoreException; |
| 7463 | method public static final String getDefaultType(); |
| 7464 | method public final java.security.KeyStore.Entry getEntry(String, java.security.KeyStore.ProtectionParameter) throws java.security.KeyStoreException, java.security.NoSuchAlgorithmException, java.security.UnrecoverableEntryException; |
| 7465 | method public static java.security.KeyStore getInstance(String) throws java.security.KeyStoreException; |
| 7466 | method public static java.security.KeyStore getInstance(String, String) throws java.security.KeyStoreException, java.security.NoSuchProviderException; |
| 7467 | method public static java.security.KeyStore getInstance(String, java.security.Provider) throws java.security.KeyStoreException; |
| 7468 | method public final java.security.Key getKey(String, char[]) throws java.security.KeyStoreException, java.security.NoSuchAlgorithmException, java.security.UnrecoverableKeyException; |
| 7469 | method public final java.security.Provider getProvider(); |
| 7470 | method public final String getType(); |
| 7471 | method public final boolean isCertificateEntry(String) throws java.security.KeyStoreException; |
| 7472 | method public final boolean isKeyEntry(String) throws java.security.KeyStoreException; |
| 7473 | method public final void load(java.io.InputStream, char[]) throws java.security.cert.CertificateException, java.io.IOException, java.security.NoSuchAlgorithmException; |
| 7474 | method public final void load(java.security.KeyStore.LoadStoreParameter) throws java.security.cert.CertificateException, java.io.IOException, java.security.NoSuchAlgorithmException; |
| 7475 | method public final void setCertificateEntry(String, java.security.cert.Certificate) throws java.security.KeyStoreException; |
| 7476 | method public final void setEntry(String, java.security.KeyStore.Entry, java.security.KeyStore.ProtectionParameter) throws java.security.KeyStoreException; |
| 7477 | method public final void setKeyEntry(String, java.security.Key, char[], java.security.cert.Certificate[]) throws java.security.KeyStoreException; |
| 7478 | method public final void setKeyEntry(String, byte[], java.security.cert.Certificate[]) throws java.security.KeyStoreException; |
| 7479 | method public final int size() throws java.security.KeyStoreException; |
| 7480 | method public final void store(java.io.OutputStream, char[]) throws java.security.cert.CertificateException, java.io.IOException, java.security.KeyStoreException, java.security.NoSuchAlgorithmException; |
| 7481 | method public final void store(java.security.KeyStore.LoadStoreParameter) throws java.security.cert.CertificateException, java.io.IOException, java.security.KeyStoreException, java.security.NoSuchAlgorithmException; |
| 7482 | } |
| 7483 | |
| 7484 | public abstract static class KeyStore.Builder { |
| 7485 | ctor protected KeyStore.Builder(); |
| 7486 | method public abstract java.security.KeyStore getKeyStore() throws java.security.KeyStoreException; |
| 7487 | method public abstract java.security.KeyStore.ProtectionParameter getProtectionParameter(String) throws java.security.KeyStoreException; |
| 7488 | method public static java.security.KeyStore.Builder newInstance(java.security.KeyStore, java.security.KeyStore.ProtectionParameter); |
| 7489 | method public static java.security.KeyStore.Builder newInstance(String, java.security.Provider, java.io.File, java.security.KeyStore.ProtectionParameter); |
| 7490 | method public static java.security.KeyStore.Builder newInstance(String, java.security.Provider, java.security.KeyStore.ProtectionParameter); |
| 7491 | } |
| 7492 | |
| 7493 | public static class KeyStore.CallbackHandlerProtection implements java.security.KeyStore.ProtectionParameter { |
| 7494 | ctor public KeyStore.CallbackHandlerProtection(javax.security.auth.callback.CallbackHandler); |
| 7495 | method public javax.security.auth.callback.CallbackHandler getCallbackHandler(); |
| 7496 | } |
| 7497 | |
| 7498 | public static interface KeyStore.Entry { |
| 7499 | method public default java.util.Set<java.security.KeyStore.Entry.Attribute> getAttributes(); |
| 7500 | } |
| 7501 | |
| 7502 | public static interface KeyStore.Entry.Attribute { |
| 7503 | method public String getName(); |
| 7504 | method public String getValue(); |
| 7505 | } |
| 7506 | |
| 7507 | public static interface KeyStore.LoadStoreParameter { |
| 7508 | method public java.security.KeyStore.ProtectionParameter getProtectionParameter(); |
| 7509 | } |
| 7510 | |
| 7511 | public static class KeyStore.PasswordProtection implements javax.security.auth.Destroyable java.security.KeyStore.ProtectionParameter { |
| 7512 | ctor public KeyStore.PasswordProtection(char[]); |
| 7513 | ctor public KeyStore.PasswordProtection(char[], String, java.security.spec.AlgorithmParameterSpec); |
| 7514 | method public char[] getPassword(); |
| 7515 | method public String getProtectionAlgorithm(); |
| 7516 | method public java.security.spec.AlgorithmParameterSpec getProtectionParameters(); |
| 7517 | } |
| 7518 | |
| 7519 | public static final class KeyStore.PrivateKeyEntry implements java.security.KeyStore.Entry { |
| 7520 | ctor public KeyStore.PrivateKeyEntry(java.security.PrivateKey, java.security.cert.Certificate[]); |
| 7521 | ctor public KeyStore.PrivateKeyEntry(java.security.PrivateKey, java.security.cert.Certificate[], java.util.Set<java.security.KeyStore.Entry.Attribute>); |
| 7522 | method public java.security.cert.Certificate getCertificate(); |
| 7523 | method public java.security.cert.Certificate[] getCertificateChain(); |
| 7524 | method public java.security.PrivateKey getPrivateKey(); |
| 7525 | } |
| 7526 | |
| 7527 | public static interface KeyStore.ProtectionParameter { |
| 7528 | } |
| 7529 | |
| 7530 | public static final class KeyStore.SecretKeyEntry implements java.security.KeyStore.Entry { |
| 7531 | ctor public KeyStore.SecretKeyEntry(javax.crypto.SecretKey); |
| 7532 | ctor public KeyStore.SecretKeyEntry(javax.crypto.SecretKey, java.util.Set<java.security.KeyStore.Entry.Attribute>); |
| 7533 | method public javax.crypto.SecretKey getSecretKey(); |
| 7534 | } |
| 7535 | |
| 7536 | public static final class KeyStore.TrustedCertificateEntry implements java.security.KeyStore.Entry { |
| 7537 | ctor public KeyStore.TrustedCertificateEntry(java.security.cert.Certificate); |
| 7538 | ctor public KeyStore.TrustedCertificateEntry(java.security.cert.Certificate, java.util.Set<java.security.KeyStore.Entry.Attribute>); |
| 7539 | method public java.security.cert.Certificate getTrustedCertificate(); |
| 7540 | } |
| 7541 | |
| 7542 | public class KeyStoreException extends java.security.GeneralSecurityException { |
| 7543 | ctor public KeyStoreException(); |
| 7544 | ctor public KeyStoreException(String); |
| 7545 | ctor public KeyStoreException(String, Throwable); |
| 7546 | ctor public KeyStoreException(Throwable); |
| 7547 | } |
| 7548 | |
| 7549 | public abstract class KeyStoreSpi { |
| 7550 | ctor public KeyStoreSpi(); |
| 7551 | method public abstract java.util.Enumeration<java.lang.String> engineAliases(); |
| 7552 | method public abstract boolean engineContainsAlias(String); |
| 7553 | method public abstract void engineDeleteEntry(String) throws java.security.KeyStoreException; |
| 7554 | method public boolean engineEntryInstanceOf(String, Class<? extends java.security.KeyStore.Entry>); |
| 7555 | method public abstract java.security.cert.Certificate engineGetCertificate(String); |
| 7556 | method public abstract String engineGetCertificateAlias(java.security.cert.Certificate); |
| 7557 | method public abstract java.security.cert.Certificate[] engineGetCertificateChain(String); |
| 7558 | method public abstract java.util.Date engineGetCreationDate(String); |
| 7559 | method public java.security.KeyStore.Entry engineGetEntry(String, java.security.KeyStore.ProtectionParameter) throws java.security.KeyStoreException, java.security.NoSuchAlgorithmException, java.security.UnrecoverableEntryException; |
| 7560 | method public abstract java.security.Key engineGetKey(String, char[]) throws java.security.NoSuchAlgorithmException, java.security.UnrecoverableKeyException; |
| 7561 | method public abstract boolean engineIsCertificateEntry(String); |
| 7562 | method public abstract boolean engineIsKeyEntry(String); |
| 7563 | method public abstract void engineLoad(java.io.InputStream, char[]) throws java.security.cert.CertificateException, java.io.IOException, java.security.NoSuchAlgorithmException; |
| 7564 | method public void engineLoad(java.security.KeyStore.LoadStoreParameter) throws java.security.cert.CertificateException, java.io.IOException, java.security.NoSuchAlgorithmException; |
| 7565 | method public abstract void engineSetCertificateEntry(String, java.security.cert.Certificate) throws java.security.KeyStoreException; |
| 7566 | method public void engineSetEntry(String, java.security.KeyStore.Entry, java.security.KeyStore.ProtectionParameter) throws java.security.KeyStoreException; |
| 7567 | method public abstract void engineSetKeyEntry(String, java.security.Key, char[], java.security.cert.Certificate[]) throws java.security.KeyStoreException; |
| 7568 | method public abstract void engineSetKeyEntry(String, byte[], java.security.cert.Certificate[]) throws java.security.KeyStoreException; |
| 7569 | method public abstract int engineSize(); |
| 7570 | method public abstract void engineStore(java.io.OutputStream, char[]) throws java.security.cert.CertificateException, java.io.IOException, java.security.NoSuchAlgorithmException; |
| 7571 | method public void engineStore(java.security.KeyStore.LoadStoreParameter) throws java.security.cert.CertificateException, java.io.IOException, java.security.NoSuchAlgorithmException; |
| 7572 | } |
| 7573 | |
| 7574 | public abstract class MessageDigest extends java.security.MessageDigestSpi { |
| 7575 | ctor protected MessageDigest(@NonNull String); |
| 7576 | method @NonNull public byte[] digest(); |
| 7577 | method public int digest(@NonNull byte[], int, int) throws java.security.DigestException; |
| 7578 | method @NonNull public byte[] digest(@NonNull byte[]); |
| 7579 | method @NonNull public final String getAlgorithm(); |
| 7580 | method public final int getDigestLength(); |
| 7581 | method @NonNull public static java.security.MessageDigest getInstance(@NonNull String) throws java.security.NoSuchAlgorithmException; |
| 7582 | method @NonNull public static java.security.MessageDigest getInstance(@NonNull String, @NonNull String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7583 | method @NonNull public static java.security.MessageDigest getInstance(@NonNull String, @NonNull java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7584 | method @NonNull public final java.security.Provider getProvider(); |
| 7585 | method public static boolean isEqual(@Nullable byte[], @Nullable byte[]); |
| 7586 | method public void reset(); |
| 7587 | method public void update(byte); |
| 7588 | method public void update(@NonNull byte[], int, int); |
| 7589 | method public void update(@NonNull byte[]); |
| 7590 | method public final void update(@NonNull java.nio.ByteBuffer); |
| 7591 | } |
| 7592 | |
| 7593 | public abstract class MessageDigestSpi { |
| 7594 | ctor public MessageDigestSpi(); |
| 7595 | method public Object clone() throws java.lang.CloneNotSupportedException; |
| 7596 | method protected abstract byte[] engineDigest(); |
| 7597 | method protected int engineDigest(byte[], int, int) throws java.security.DigestException; |
| 7598 | method protected int engineGetDigestLength(); |
| 7599 | method protected abstract void engineReset(); |
| 7600 | method protected abstract void engineUpdate(byte); |
| 7601 | method protected abstract void engineUpdate(byte[], int, int); |
| 7602 | method protected void engineUpdate(java.nio.ByteBuffer); |
| 7603 | } |
| 7604 | |
| 7605 | public class NoSuchAlgorithmException extends java.security.GeneralSecurityException { |
| 7606 | ctor public NoSuchAlgorithmException(); |
| 7607 | ctor public NoSuchAlgorithmException(String); |
| 7608 | ctor public NoSuchAlgorithmException(String, Throwable); |
| 7609 | ctor public NoSuchAlgorithmException(Throwable); |
| 7610 | } |
| 7611 | |
| 7612 | public class NoSuchProviderException extends java.security.GeneralSecurityException { |
| 7613 | ctor public NoSuchProviderException(); |
| 7614 | ctor public NoSuchProviderException(String); |
| 7615 | } |
| 7616 | |
| 7617 | public final class PKCS12Attribute implements java.security.KeyStore.Entry.Attribute { |
| 7618 | ctor public PKCS12Attribute(String, String); |
| 7619 | ctor public PKCS12Attribute(byte[]); |
| 7620 | method public byte[] getEncoded(); |
| 7621 | method public String getName(); |
| 7622 | method public String getValue(); |
| 7623 | } |
| 7624 | |
| 7625 | public abstract class Permission implements java.security.Guard java.io.Serializable { |
| 7626 | ctor public Permission(String); |
| 7627 | method public void checkGuard(Object) throws java.lang.SecurityException; |
| 7628 | method public abstract String getActions(); |
| 7629 | method public final String getName(); |
| 7630 | method public abstract boolean implies(java.security.Permission); |
| 7631 | method public java.security.PermissionCollection newPermissionCollection(); |
| 7632 | } |
| 7633 | |
| 7634 | public abstract class PermissionCollection implements java.io.Serializable { |
| 7635 | ctor public PermissionCollection(); |
| 7636 | method public abstract void add(java.security.Permission); |
| 7637 | method public abstract java.util.Enumeration<java.security.Permission> elements(); |
| 7638 | method public abstract boolean implies(java.security.Permission); |
| 7639 | method public boolean isReadOnly(); |
| 7640 | method public void setReadOnly(); |
| 7641 | } |
| 7642 | |
| 7643 | public final class Permissions extends java.security.PermissionCollection implements java.io.Serializable { |
| 7644 | ctor public Permissions(); |
| 7645 | method public void add(java.security.Permission); |
| 7646 | method public java.util.Enumeration<java.security.Permission> elements(); |
| 7647 | method public boolean implies(java.security.Permission); |
| 7648 | } |
| 7649 | |
| 7650 | public abstract class Policy { |
| 7651 | ctor public Policy(); |
| 7652 | method public static java.security.Policy getInstance(String, java.security.Policy.Parameters) throws java.security.NoSuchAlgorithmException; |
| 7653 | method public static java.security.Policy getInstance(String, java.security.Policy.Parameters, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7654 | method public static java.security.Policy getInstance(String, java.security.Policy.Parameters, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7655 | method public java.security.Policy.Parameters getParameters(); |
| 7656 | method public java.security.PermissionCollection getPermissions(java.security.CodeSource); |
| 7657 | method public java.security.PermissionCollection getPermissions(java.security.ProtectionDomain); |
| 7658 | method public static java.security.Policy getPolicy(); |
| 7659 | method public java.security.Provider getProvider(); |
| 7660 | method public String getType(); |
| 7661 | method public boolean implies(java.security.ProtectionDomain, java.security.Permission); |
| 7662 | method public void refresh(); |
| 7663 | method public static void setPolicy(java.security.Policy); |
| 7664 | field public static final java.security.PermissionCollection UNSUPPORTED_EMPTY_COLLECTION; |
| 7665 | } |
| 7666 | |
| 7667 | public static interface Policy.Parameters { |
| 7668 | } |
| 7669 | |
| 7670 | public abstract class PolicySpi { |
| 7671 | ctor public PolicySpi(); |
| 7672 | method protected java.security.PermissionCollection engineGetPermissions(java.security.CodeSource); |
| 7673 | method protected java.security.PermissionCollection engineGetPermissions(java.security.ProtectionDomain); |
| 7674 | method protected abstract boolean engineImplies(java.security.ProtectionDomain, java.security.Permission); |
| 7675 | method protected void engineRefresh(); |
| 7676 | } |
| 7677 | |
| 7678 | public interface Principal { |
| 7679 | method public boolean equals(Object); |
| 7680 | method public String getName(); |
| 7681 | method public int hashCode(); |
| 7682 | method public default boolean implies(javax.security.auth.Subject); |
| 7683 | method public String toString(); |
| 7684 | } |
| 7685 | |
| 7686 | public interface PrivateKey extends java.security.Key javax.security.auth.Destroyable { |
| 7687 | field public static final long serialVersionUID = 6034044314589513430L; // 0x53bd3b559a12c6d6L |
| 7688 | } |
| 7689 | |
| 7690 | public interface PrivilegedAction<T> { |
| 7691 | method public T run(); |
| 7692 | } |
| 7693 | |
| 7694 | public class PrivilegedActionException extends java.lang.Exception { |
| 7695 | ctor public PrivilegedActionException(Exception); |
| 7696 | method public Exception getException(); |
| 7697 | } |
| 7698 | |
| 7699 | public interface PrivilegedExceptionAction<T> { |
| 7700 | method public T run() throws java.lang.Exception; |
| 7701 | } |
| 7702 | |
| 7703 | public class ProtectionDomain { |
| 7704 | ctor public ProtectionDomain(java.security.CodeSource, java.security.PermissionCollection); |
| 7705 | ctor public ProtectionDomain(java.security.CodeSource, java.security.PermissionCollection, ClassLoader, java.security.Principal[]); |
| 7706 | method public final ClassLoader getClassLoader(); |
| 7707 | method public final java.security.CodeSource getCodeSource(); |
| 7708 | method public final java.security.PermissionCollection getPermissions(); |
| 7709 | method public final java.security.Principal[] getPrincipals(); |
| 7710 | method public boolean implies(java.security.Permission); |
| 7711 | } |
| 7712 | |
| 7713 | public abstract class Provider extends java.util.Properties { |
| 7714 | ctor protected Provider(String, double, String); |
| 7715 | method public Object compute(Object, java.util.function.BiFunction<? super java.lang.Object,? super java.lang.Object,?>); |
| 7716 | method public Object computeIfAbsent(Object, java.util.function.Function<? super java.lang.Object,?>); |
| 7717 | method public Object computeIfPresent(Object, java.util.function.BiFunction<? super java.lang.Object,? super java.lang.Object,?>); |
| 7718 | method public java.util.Enumeration<java.lang.Object> elements(); |
| 7719 | method public java.util.Set<java.util.Map.Entry<java.lang.Object,java.lang.Object>> entrySet(); |
| 7720 | method public void forEach(java.util.function.BiConsumer<? super java.lang.Object,? super java.lang.Object>); |
| 7721 | method public Object get(Object); |
| 7722 | method public String getInfo(); |
| 7723 | method public String getName(); |
| 7724 | method public Object getOrDefault(Object, Object); |
| 7725 | method public java.security.Provider.Service getService(String, String); |
| 7726 | method public java.util.Set<java.security.Provider.Service> getServices(); |
| 7727 | method public double getVersion(); |
| 7728 | method public java.util.Set<java.lang.Object> keySet(); |
| 7729 | method public java.util.Enumeration<java.lang.Object> keys(); |
| 7730 | method public Object merge(Object, Object, java.util.function.BiFunction<? super java.lang.Object,? super java.lang.Object,?>); |
| 7731 | method public Object put(Object, Object); |
| 7732 | method public void putAll(java.util.Map<?,?>); |
| 7733 | method public Object putIfAbsent(Object, Object); |
| 7734 | method protected void putService(java.security.Provider.Service); |
| 7735 | method public Object remove(Object); |
| 7736 | method protected void removeService(java.security.Provider.Service); |
| 7737 | method public boolean replace(Object, Object, Object); |
| 7738 | method public Object replace(Object, Object); |
| 7739 | method public void replaceAll(java.util.function.BiFunction<? super java.lang.Object,? super java.lang.Object,?>); |
| 7740 | method public java.util.Collection<java.lang.Object> values(); |
| 7741 | } |
| 7742 | |
| 7743 | public static class Provider.Service { |
| 7744 | ctor public Provider.Service(java.security.Provider, String, String, String, java.util.List<java.lang.String>, java.util.Map<java.lang.String,java.lang.String>); |
| 7745 | method public final String getAlgorithm(); |
| 7746 | method public final String getAttribute(String); |
| 7747 | method public final String getClassName(); |
| 7748 | method public final java.security.Provider getProvider(); |
| 7749 | method public final String getType(); |
| 7750 | method public Object newInstance(Object) throws java.security.NoSuchAlgorithmException; |
| 7751 | method public boolean supportsParameter(Object); |
| 7752 | } |
| 7753 | |
| 7754 | public class ProviderException extends java.lang.RuntimeException { |
| 7755 | ctor public ProviderException(); |
| 7756 | ctor public ProviderException(String); |
| 7757 | ctor public ProviderException(String, Throwable); |
| 7758 | ctor public ProviderException(Throwable); |
| 7759 | } |
| 7760 | |
| 7761 | public interface PublicKey extends java.security.Key { |
| 7762 | field public static final long serialVersionUID = 7187392471159151072L; // 0x63bebf5f40c219e0L |
| 7763 | } |
| 7764 | |
| 7765 | public class SecureClassLoader extends java.lang.ClassLoader { |
| 7766 | ctor protected SecureClassLoader(ClassLoader); |
| 7767 | ctor protected SecureClassLoader(); |
| 7768 | method protected final Class<?> defineClass(String, byte[], int, int, java.security.CodeSource); |
| 7769 | method protected final Class<?> defineClass(String, java.nio.ByteBuffer, java.security.CodeSource); |
| 7770 | method protected java.security.PermissionCollection getPermissions(java.security.CodeSource); |
| 7771 | } |
| 7772 | |
| 7773 | public class SecureRandom extends java.util.Random { |
| 7774 | ctor public SecureRandom(); |
| 7775 | ctor public SecureRandom(byte[]); |
| 7776 | ctor protected SecureRandom(java.security.SecureRandomSpi, java.security.Provider); |
| 7777 | method public byte[] generateSeed(int); |
| 7778 | method public String getAlgorithm(); |
| 7779 | method public static java.security.SecureRandom getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 7780 | method public static java.security.SecureRandom getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7781 | method public static java.security.SecureRandom getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7782 | method public static java.security.SecureRandom getInstanceStrong() throws java.security.NoSuchAlgorithmException; |
| 7783 | method public final java.security.Provider getProvider(); |
| 7784 | method public static byte[] getSeed(int); |
| 7785 | method protected final int next(int); |
| 7786 | method public void setSeed(byte[]); |
| 7787 | } |
| 7788 | |
| 7789 | public abstract class SecureRandomSpi implements java.io.Serializable { |
| 7790 | ctor public SecureRandomSpi(); |
| 7791 | method protected abstract byte[] engineGenerateSeed(int); |
| 7792 | method protected abstract void engineNextBytes(byte[]); |
| 7793 | method protected abstract void engineSetSeed(byte[]); |
| 7794 | } |
| 7795 | |
| 7796 | public final class Security { |
| 7797 | method public static int addProvider(java.security.Provider); |
| 7798 | method @Deprecated public static String getAlgorithmProperty(String, String); |
| 7799 | method public static java.util.Set<java.lang.String> getAlgorithms(String); |
| 7800 | method public static String getProperty(String); |
| 7801 | method public static java.security.Provider getProvider(String); |
| 7802 | method public static java.security.Provider[] getProviders(); |
| 7803 | method public static java.security.Provider[] getProviders(String); |
| 7804 | method public static java.security.Provider[] getProviders(java.util.Map<java.lang.String,java.lang.String>); |
| 7805 | method public static int insertProviderAt(java.security.Provider, int); |
| 7806 | method public static void removeProvider(String); |
| 7807 | method public static void setProperty(String, String); |
| 7808 | } |
| 7809 | |
| 7810 | public final class SecurityPermission extends java.security.BasicPermission { |
| 7811 | ctor public SecurityPermission(String); |
| 7812 | ctor public SecurityPermission(String, String); |
| 7813 | } |
| 7814 | |
| 7815 | public abstract class Signature extends java.security.SignatureSpi { |
| 7816 | ctor protected Signature(String); |
| 7817 | method public final String getAlgorithm(); |
| 7818 | method public static java.security.Signature getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 7819 | method public static java.security.Signature getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 7820 | method public static java.security.Signature getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 7821 | method @Deprecated public final Object getParameter(String) throws java.security.InvalidParameterException; |
| 7822 | method public final java.security.AlgorithmParameters getParameters(); |
| 7823 | method public final java.security.Provider getProvider(); |
| 7824 | method public final void initSign(java.security.PrivateKey) throws java.security.InvalidKeyException; |
| 7825 | method public final void initSign(java.security.PrivateKey, java.security.SecureRandom) throws java.security.InvalidKeyException; |
| 7826 | method public final void initVerify(java.security.PublicKey) throws java.security.InvalidKeyException; |
| 7827 | method public final void initVerify(java.security.cert.Certificate) throws java.security.InvalidKeyException; |
| 7828 | method @Deprecated public final void setParameter(String, Object) throws java.security.InvalidParameterException; |
| 7829 | method public final void setParameter(java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException; |
| 7830 | method public final byte[] sign() throws java.security.SignatureException; |
| 7831 | method public final int sign(byte[], int, int) throws java.security.SignatureException; |
| 7832 | method public final void update(byte) throws java.security.SignatureException; |
| 7833 | method public final void update(byte[]) throws java.security.SignatureException; |
| 7834 | method public final void update(byte[], int, int) throws java.security.SignatureException; |
| 7835 | method public final void update(java.nio.ByteBuffer) throws java.security.SignatureException; |
| 7836 | method public final boolean verify(byte[]) throws java.security.SignatureException; |
| 7837 | method public final boolean verify(byte[], int, int) throws java.security.SignatureException; |
| 7838 | field protected static final int SIGN = 2; // 0x2 |
| 7839 | field protected static final int UNINITIALIZED = 0; // 0x0 |
| 7840 | field protected static final int VERIFY = 3; // 0x3 |
| 7841 | field protected int state; |
| 7842 | } |
| 7843 | |
| 7844 | public class SignatureException extends java.security.GeneralSecurityException { |
| 7845 | ctor public SignatureException(); |
| 7846 | ctor public SignatureException(String); |
| 7847 | ctor public SignatureException(String, Throwable); |
| 7848 | ctor public SignatureException(Throwable); |
| 7849 | } |
| 7850 | |
| 7851 | public abstract class SignatureSpi { |
| 7852 | ctor public SignatureSpi(); |
| 7853 | method public Object clone() throws java.lang.CloneNotSupportedException; |
| 7854 | method @Deprecated protected abstract Object engineGetParameter(String) throws java.security.InvalidParameterException; |
| 7855 | method protected java.security.AlgorithmParameters engineGetParameters(); |
| 7856 | method protected abstract void engineInitSign(java.security.PrivateKey) throws java.security.InvalidKeyException; |
| 7857 | method protected void engineInitSign(java.security.PrivateKey, java.security.SecureRandom) throws java.security.InvalidKeyException; |
| 7858 | method protected abstract void engineInitVerify(java.security.PublicKey) throws java.security.InvalidKeyException; |
| 7859 | method @Deprecated protected abstract void engineSetParameter(String, Object) throws java.security.InvalidParameterException; |
| 7860 | method protected void engineSetParameter(java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException; |
| 7861 | method protected abstract byte[] engineSign() throws java.security.SignatureException; |
| 7862 | method protected int engineSign(byte[], int, int) throws java.security.SignatureException; |
| 7863 | method protected abstract void engineUpdate(byte) throws java.security.SignatureException; |
| 7864 | method protected abstract void engineUpdate(byte[], int, int) throws java.security.SignatureException; |
| 7865 | method protected void engineUpdate(java.nio.ByteBuffer); |
| 7866 | method protected abstract boolean engineVerify(byte[]) throws java.security.SignatureException; |
| 7867 | method protected boolean engineVerify(byte[], int, int) throws java.security.SignatureException; |
| 7868 | field protected java.security.SecureRandom appRandom; |
| 7869 | } |
| 7870 | |
| 7871 | public final class SignedObject implements java.io.Serializable { |
| 7872 | ctor public SignedObject(java.io.Serializable, java.security.PrivateKey, java.security.Signature) throws java.io.IOException, java.security.InvalidKeyException, java.security.SignatureException; |
| 7873 | method public String getAlgorithm(); |
| 7874 | method public Object getObject() throws java.lang.ClassNotFoundException, java.io.IOException; |
| 7875 | method public byte[] getSignature(); |
| 7876 | method public boolean verify(java.security.PublicKey, java.security.Signature) throws java.security.InvalidKeyException, java.security.SignatureException; |
| 7877 | } |
| 7878 | |
| 7879 | @Deprecated public abstract class Signer extends java.security.Identity { |
| 7880 | ctor @Deprecated protected Signer(); |
| 7881 | ctor @Deprecated public Signer(String); |
| 7882 | ctor @Deprecated public Signer(String, java.security.IdentityScope) throws java.security.KeyManagementException; |
| 7883 | method @Deprecated public java.security.PrivateKey getPrivateKey(); |
| 7884 | method @Deprecated public final void setKeyPair(java.security.KeyPair) throws java.security.InvalidParameterException, java.security.KeyException; |
| 7885 | } |
| 7886 | |
| 7887 | public final class Timestamp implements java.io.Serializable { |
| 7888 | ctor public Timestamp(java.util.Date, java.security.cert.CertPath); |
| 7889 | method public java.security.cert.CertPath getSignerCertPath(); |
| 7890 | method public java.util.Date getTimestamp(); |
| 7891 | } |
| 7892 | |
| 7893 | public class UnrecoverableEntryException extends java.security.GeneralSecurityException { |
| 7894 | ctor public UnrecoverableEntryException(); |
| 7895 | ctor public UnrecoverableEntryException(String); |
| 7896 | } |
| 7897 | |
| 7898 | public class UnrecoverableKeyException extends java.security.UnrecoverableEntryException { |
| 7899 | ctor public UnrecoverableKeyException(); |
| 7900 | ctor public UnrecoverableKeyException(String); |
| 7901 | } |
| 7902 | |
| 7903 | public final class UnresolvedPermission extends java.security.Permission implements java.io.Serializable { |
| 7904 | ctor public UnresolvedPermission(String, String, String, java.security.cert.Certificate[]); |
| 7905 | method public String getActions(); |
| 7906 | method public String getUnresolvedActions(); |
| 7907 | method public java.security.cert.Certificate[] getUnresolvedCerts(); |
| 7908 | method public String getUnresolvedName(); |
| 7909 | method public String getUnresolvedType(); |
| 7910 | method public boolean implies(java.security.Permission); |
| 7911 | } |
| 7912 | |
| 7913 | } |
| 7914 | |
| 7915 | package java.security.acl { |
| 7916 | |
| 7917 | public interface Acl extends java.security.acl.Owner { |
| 7918 | method public boolean addEntry(java.security.Principal, java.security.acl.AclEntry) throws java.security.acl.NotOwnerException; |
| 7919 | method public boolean checkPermission(java.security.Principal, java.security.acl.Permission); |
| 7920 | method public java.util.Enumeration<java.security.acl.AclEntry> entries(); |
| 7921 | method public String getName(); |
| 7922 | method public java.util.Enumeration<java.security.acl.Permission> getPermissions(java.security.Principal); |
| 7923 | method public boolean removeEntry(java.security.Principal, java.security.acl.AclEntry) throws java.security.acl.NotOwnerException; |
| 7924 | method public void setName(java.security.Principal, String) throws java.security.acl.NotOwnerException; |
| 7925 | method public String toString(); |
| 7926 | } |
| 7927 | |
| 7928 | public interface AclEntry extends java.lang.Cloneable { |
| 7929 | method public boolean addPermission(java.security.acl.Permission); |
| 7930 | method public boolean checkPermission(java.security.acl.Permission); |
| 7931 | method public Object clone(); |
| 7932 | method public java.security.Principal getPrincipal(); |
| 7933 | method public boolean isNegative(); |
| 7934 | method public java.util.Enumeration<java.security.acl.Permission> permissions(); |
| 7935 | method public boolean removePermission(java.security.acl.Permission); |
| 7936 | method public void setNegativePermissions(); |
| 7937 | method public boolean setPrincipal(java.security.Principal); |
| 7938 | method public String toString(); |
| 7939 | } |
| 7940 | |
| 7941 | public class AclNotFoundException extends java.lang.Exception { |
| 7942 | ctor public AclNotFoundException(); |
| 7943 | } |
| 7944 | |
| 7945 | public interface Group extends java.security.Principal { |
| 7946 | method public boolean addMember(java.security.Principal); |
| 7947 | method public boolean isMember(java.security.Principal); |
| 7948 | method public java.util.Enumeration<? extends java.security.Principal> members(); |
| 7949 | method public boolean removeMember(java.security.Principal); |
| 7950 | } |
| 7951 | |
| 7952 | public class LastOwnerException extends java.lang.Exception { |
| 7953 | ctor public LastOwnerException(); |
| 7954 | } |
| 7955 | |
| 7956 | public class NotOwnerException extends java.lang.Exception { |
| 7957 | ctor public NotOwnerException(); |
| 7958 | } |
| 7959 | |
| 7960 | public interface Owner { |
| 7961 | method public boolean addOwner(java.security.Principal, java.security.Principal) throws java.security.acl.NotOwnerException; |
| 7962 | method public boolean deleteOwner(java.security.Principal, java.security.Principal) throws java.security.acl.LastOwnerException, java.security.acl.NotOwnerException; |
| 7963 | method public boolean isOwner(java.security.Principal); |
| 7964 | } |
| 7965 | |
| 7966 | public interface Permission { |
| 7967 | } |
| 7968 | |
| 7969 | } |
| 7970 | |
| 7971 | package java.security.cert { |
| 7972 | |
| 7973 | public abstract class CRL { |
| 7974 | ctor protected CRL(String); |
| 7975 | method public final String getType(); |
| 7976 | method public abstract boolean isRevoked(java.security.cert.Certificate); |
| 7977 | method public abstract String toString(); |
| 7978 | } |
| 7979 | |
| 7980 | public class CRLException extends java.security.GeneralSecurityException { |
| 7981 | ctor public CRLException(); |
| 7982 | ctor public CRLException(String); |
| 7983 | ctor public CRLException(String, Throwable); |
| 7984 | ctor public CRLException(Throwable); |
| 7985 | } |
| 7986 | |
| 7987 | public enum CRLReason { |
| 7988 | enum_constant public static final java.security.cert.CRLReason AA_COMPROMISE; |
| 7989 | enum_constant public static final java.security.cert.CRLReason AFFILIATION_CHANGED; |
| 7990 | enum_constant public static final java.security.cert.CRLReason CA_COMPROMISE; |
| 7991 | enum_constant public static final java.security.cert.CRLReason CERTIFICATE_HOLD; |
| 7992 | enum_constant public static final java.security.cert.CRLReason CESSATION_OF_OPERATION; |
| 7993 | enum_constant public static final java.security.cert.CRLReason KEY_COMPROMISE; |
| 7994 | enum_constant public static final java.security.cert.CRLReason PRIVILEGE_WITHDRAWN; |
| 7995 | enum_constant public static final java.security.cert.CRLReason REMOVE_FROM_CRL; |
| 7996 | enum_constant public static final java.security.cert.CRLReason SUPERSEDED; |
| 7997 | enum_constant public static final java.security.cert.CRLReason UNSPECIFIED; |
| 7998 | enum_constant public static final java.security.cert.CRLReason UNUSED; |
| 7999 | } |
| 8000 | |
| 8001 | public interface CRLSelector extends java.lang.Cloneable { |
| 8002 | method public Object clone(); |
| 8003 | method public boolean match(java.security.cert.CRL); |
| 8004 | } |
| 8005 | |
| 8006 | public abstract class CertPath implements java.io.Serializable { |
| 8007 | ctor protected CertPath(String); |
| 8008 | method public abstract java.util.List<? extends java.security.cert.Certificate> getCertificates(); |
| 8009 | method public abstract byte[] getEncoded() throws java.security.cert.CertificateEncodingException; |
| 8010 | method public abstract byte[] getEncoded(String) throws java.security.cert.CertificateEncodingException; |
| 8011 | method public abstract java.util.Iterator<java.lang.String> getEncodings(); |
| 8012 | method public String getType(); |
| 8013 | method protected Object writeReplace() throws java.io.ObjectStreamException; |
| 8014 | } |
| 8015 | |
| 8016 | protected static class CertPath.CertPathRep implements java.io.Serializable { |
| 8017 | ctor protected CertPath.CertPathRep(String, byte[]); |
| 8018 | method protected Object readResolve() throws java.io.ObjectStreamException; |
| 8019 | } |
| 8020 | |
| 8021 | public class CertPathBuilder { |
| 8022 | ctor protected CertPathBuilder(java.security.cert.CertPathBuilderSpi, java.security.Provider, String); |
| 8023 | method public final java.security.cert.CertPathBuilderResult build(java.security.cert.CertPathParameters) throws java.security.cert.CertPathBuilderException, java.security.InvalidAlgorithmParameterException; |
| 8024 | method public final String getAlgorithm(); |
| 8025 | method public static final String getDefaultType(); |
| 8026 | method public static java.security.cert.CertPathBuilder getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 8027 | method public static java.security.cert.CertPathBuilder getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 8028 | method public static java.security.cert.CertPathBuilder getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 8029 | method public final java.security.Provider getProvider(); |
| 8030 | method public final java.security.cert.CertPathChecker getRevocationChecker(); |
| 8031 | } |
| 8032 | |
| 8033 | public class CertPathBuilderException extends java.security.GeneralSecurityException { |
| 8034 | ctor public CertPathBuilderException(); |
| 8035 | ctor public CertPathBuilderException(String); |
| 8036 | ctor public CertPathBuilderException(Throwable); |
| 8037 | ctor public CertPathBuilderException(String, Throwable); |
| 8038 | } |
| 8039 | |
| 8040 | public interface CertPathBuilderResult extends java.lang.Cloneable { |
| 8041 | method public Object clone(); |
| 8042 | method public java.security.cert.CertPath getCertPath(); |
| 8043 | } |
| 8044 | |
| 8045 | public abstract class CertPathBuilderSpi { |
| 8046 | ctor public CertPathBuilderSpi(); |
| 8047 | method public abstract java.security.cert.CertPathBuilderResult engineBuild(java.security.cert.CertPathParameters) throws java.security.cert.CertPathBuilderException, java.security.InvalidAlgorithmParameterException; |
| 8048 | method public java.security.cert.CertPathChecker engineGetRevocationChecker(); |
| 8049 | } |
| 8050 | |
| 8051 | public interface CertPathChecker { |
| 8052 | method public void check(java.security.cert.Certificate) throws java.security.cert.CertPathValidatorException; |
| 8053 | method public void init(boolean) throws java.security.cert.CertPathValidatorException; |
| 8054 | method public boolean isForwardCheckingSupported(); |
| 8055 | } |
| 8056 | |
| 8057 | public interface CertPathParameters extends java.lang.Cloneable { |
| 8058 | method public Object clone(); |
| 8059 | } |
| 8060 | |
| 8061 | public class CertPathValidator { |
| 8062 | ctor protected CertPathValidator(java.security.cert.CertPathValidatorSpi, java.security.Provider, String); |
| 8063 | method public final String getAlgorithm(); |
| 8064 | method public static final String getDefaultType(); |
| 8065 | method public static java.security.cert.CertPathValidator getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 8066 | method public static java.security.cert.CertPathValidator getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 8067 | method public static java.security.cert.CertPathValidator getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 8068 | method public final java.security.Provider getProvider(); |
| 8069 | method public final java.security.cert.CertPathChecker getRevocationChecker(); |
| 8070 | method public final java.security.cert.CertPathValidatorResult validate(java.security.cert.CertPath, java.security.cert.CertPathParameters) throws java.security.cert.CertPathValidatorException, java.security.InvalidAlgorithmParameterException; |
| 8071 | } |
| 8072 | |
| 8073 | public class CertPathValidatorException extends java.security.GeneralSecurityException { |
| 8074 | ctor public CertPathValidatorException(); |
| 8075 | ctor public CertPathValidatorException(String); |
| 8076 | ctor public CertPathValidatorException(Throwable); |
| 8077 | ctor public CertPathValidatorException(String, Throwable); |
| 8078 | ctor public CertPathValidatorException(String, Throwable, java.security.cert.CertPath, int); |
| 8079 | ctor public CertPathValidatorException(String, Throwable, java.security.cert.CertPath, int, java.security.cert.CertPathValidatorException.Reason); |
| 8080 | method public java.security.cert.CertPath getCertPath(); |
| 8081 | method public int getIndex(); |
| 8082 | method public java.security.cert.CertPathValidatorException.Reason getReason(); |
| 8083 | } |
| 8084 | |
| 8085 | public enum CertPathValidatorException.BasicReason implements java.security.cert.CertPathValidatorException.Reason { |
| 8086 | enum_constant public static final java.security.cert.CertPathValidatorException.BasicReason ALGORITHM_CONSTRAINED; |
| 8087 | enum_constant public static final java.security.cert.CertPathValidatorException.BasicReason EXPIRED; |
| 8088 | enum_constant public static final java.security.cert.CertPathValidatorException.BasicReason INVALID_SIGNATURE; |
| 8089 | enum_constant public static final java.security.cert.CertPathValidatorException.BasicReason NOT_YET_VALID; |
| 8090 | enum_constant public static final java.security.cert.CertPathValidatorException.BasicReason REVOKED; |
| 8091 | enum_constant public static final java.security.cert.CertPathValidatorException.BasicReason UNDETERMINED_REVOCATION_STATUS; |
| 8092 | enum_constant public static final java.security.cert.CertPathValidatorException.BasicReason UNSPECIFIED; |
| 8093 | } |
| 8094 | |
| 8095 | public static interface CertPathValidatorException.Reason extends java.io.Serializable { |
| 8096 | } |
| 8097 | |
| 8098 | public interface CertPathValidatorResult extends java.lang.Cloneable { |
| 8099 | method public Object clone(); |
| 8100 | } |
| 8101 | |
| 8102 | public abstract class CertPathValidatorSpi { |
| 8103 | ctor public CertPathValidatorSpi(); |
| 8104 | method public java.security.cert.CertPathChecker engineGetRevocationChecker(); |
| 8105 | method public abstract java.security.cert.CertPathValidatorResult engineValidate(java.security.cert.CertPath, java.security.cert.CertPathParameters) throws java.security.cert.CertPathValidatorException, java.security.InvalidAlgorithmParameterException; |
| 8106 | } |
| 8107 | |
| 8108 | public interface CertSelector extends java.lang.Cloneable { |
| 8109 | method public Object clone(); |
| 8110 | method public boolean match(java.security.cert.Certificate); |
| 8111 | } |
| 8112 | |
| 8113 | public class CertStore { |
| 8114 | ctor protected CertStore(java.security.cert.CertStoreSpi, java.security.Provider, String, java.security.cert.CertStoreParameters); |
| 8115 | method public final java.util.Collection<? extends java.security.cert.CRL> getCRLs(java.security.cert.CRLSelector) throws java.security.cert.CertStoreException; |
| 8116 | method public final java.security.cert.CertStoreParameters getCertStoreParameters(); |
| 8117 | method public final java.util.Collection<? extends java.security.cert.Certificate> getCertificates(java.security.cert.CertSelector) throws java.security.cert.CertStoreException; |
| 8118 | method public static final String getDefaultType(); |
| 8119 | method public static java.security.cert.CertStore getInstance(String, java.security.cert.CertStoreParameters) throws java.security.InvalidAlgorithmParameterException, java.security.NoSuchAlgorithmException; |
| 8120 | method public static java.security.cert.CertStore getInstance(String, java.security.cert.CertStoreParameters, String) throws java.security.InvalidAlgorithmParameterException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 8121 | method public static java.security.cert.CertStore getInstance(String, java.security.cert.CertStoreParameters, java.security.Provider) throws java.security.InvalidAlgorithmParameterException, java.security.NoSuchAlgorithmException; |
| 8122 | method public final java.security.Provider getProvider(); |
| 8123 | method public final String getType(); |
| 8124 | } |
| 8125 | |
| 8126 | public class CertStoreException extends java.security.GeneralSecurityException { |
| 8127 | ctor public CertStoreException(); |
| 8128 | ctor public CertStoreException(String); |
| 8129 | ctor public CertStoreException(Throwable); |
| 8130 | ctor public CertStoreException(String, Throwable); |
| 8131 | } |
| 8132 | |
| 8133 | public interface CertStoreParameters extends java.lang.Cloneable { |
| 8134 | method public Object clone(); |
| 8135 | } |
| 8136 | |
| 8137 | public abstract class CertStoreSpi { |
| 8138 | ctor public CertStoreSpi(java.security.cert.CertStoreParameters) throws java.security.InvalidAlgorithmParameterException; |
| 8139 | method public abstract java.util.Collection<? extends java.security.cert.CRL> engineGetCRLs(java.security.cert.CRLSelector) throws java.security.cert.CertStoreException; |
| 8140 | method public abstract java.util.Collection<? extends java.security.cert.Certificate> engineGetCertificates(java.security.cert.CertSelector) throws java.security.cert.CertStoreException; |
| 8141 | } |
| 8142 | |
| 8143 | public abstract class Certificate implements java.io.Serializable { |
| 8144 | ctor protected Certificate(String); |
| 8145 | method public abstract byte[] getEncoded() throws java.security.cert.CertificateEncodingException; |
| 8146 | method public abstract java.security.PublicKey getPublicKey(); |
| 8147 | method public final String getType(); |
| 8148 | method public abstract String toString(); |
| 8149 | method public abstract void verify(java.security.PublicKey) throws java.security.cert.CertificateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.SignatureException; |
| 8150 | method public abstract void verify(java.security.PublicKey, String) throws java.security.cert.CertificateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.SignatureException; |
| 8151 | method public void verify(java.security.PublicKey, java.security.Provider) throws java.security.cert.CertificateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.SignatureException; |
| 8152 | method protected Object writeReplace() throws java.io.ObjectStreamException; |
| 8153 | } |
| 8154 | |
| 8155 | protected static class Certificate.CertificateRep implements java.io.Serializable { |
| 8156 | ctor protected Certificate.CertificateRep(String, byte[]); |
| 8157 | method protected Object readResolve() throws java.io.ObjectStreamException; |
| 8158 | } |
| 8159 | |
| 8160 | public class CertificateEncodingException extends java.security.cert.CertificateException { |
| 8161 | ctor public CertificateEncodingException(); |
| 8162 | ctor public CertificateEncodingException(String); |
| 8163 | ctor public CertificateEncodingException(String, Throwable); |
| 8164 | ctor public CertificateEncodingException(Throwable); |
| 8165 | } |
| 8166 | |
| 8167 | public class CertificateException extends java.security.GeneralSecurityException { |
| 8168 | ctor public CertificateException(); |
| 8169 | ctor public CertificateException(String); |
| 8170 | ctor public CertificateException(String, Throwable); |
| 8171 | ctor public CertificateException(Throwable); |
| 8172 | } |
| 8173 | |
| 8174 | public class CertificateExpiredException extends java.security.cert.CertificateException { |
| 8175 | ctor public CertificateExpiredException(); |
| 8176 | ctor public CertificateExpiredException(String); |
| 8177 | } |
| 8178 | |
| 8179 | public class CertificateFactory { |
| 8180 | ctor protected CertificateFactory(java.security.cert.CertificateFactorySpi, java.security.Provider, String); |
| 8181 | method public final java.security.cert.CRL generateCRL(java.io.InputStream) throws java.security.cert.CRLException; |
| 8182 | method public final java.util.Collection<? extends java.security.cert.CRL> generateCRLs(java.io.InputStream) throws java.security.cert.CRLException; |
| 8183 | method public final java.security.cert.CertPath generateCertPath(java.io.InputStream) throws java.security.cert.CertificateException; |
| 8184 | method public final java.security.cert.CertPath generateCertPath(java.io.InputStream, String) throws java.security.cert.CertificateException; |
| 8185 | method public final java.security.cert.CertPath generateCertPath(java.util.List<? extends java.security.cert.Certificate>) throws java.security.cert.CertificateException; |
| 8186 | method public final java.security.cert.Certificate generateCertificate(java.io.InputStream) throws java.security.cert.CertificateException; |
| 8187 | method public final java.util.Collection<? extends java.security.cert.Certificate> generateCertificates(java.io.InputStream) throws java.security.cert.CertificateException; |
| 8188 | method public final java.util.Iterator<java.lang.String> getCertPathEncodings(); |
| 8189 | method public static final java.security.cert.CertificateFactory getInstance(String) throws java.security.cert.CertificateException; |
| 8190 | method public static final java.security.cert.CertificateFactory getInstance(String, String) throws java.security.cert.CertificateException, java.security.NoSuchProviderException; |
| 8191 | method public static final java.security.cert.CertificateFactory getInstance(String, java.security.Provider) throws java.security.cert.CertificateException; |
| 8192 | method public final java.security.Provider getProvider(); |
| 8193 | method public final String getType(); |
| 8194 | } |
| 8195 | |
| 8196 | public abstract class CertificateFactorySpi { |
| 8197 | ctor public CertificateFactorySpi(); |
| 8198 | method public abstract java.security.cert.CRL engineGenerateCRL(java.io.InputStream) throws java.security.cert.CRLException; |
| 8199 | method public abstract java.util.Collection<? extends java.security.cert.CRL> engineGenerateCRLs(java.io.InputStream) throws java.security.cert.CRLException; |
| 8200 | method public java.security.cert.CertPath engineGenerateCertPath(java.io.InputStream) throws java.security.cert.CertificateException; |
| 8201 | method public java.security.cert.CertPath engineGenerateCertPath(java.io.InputStream, String) throws java.security.cert.CertificateException; |
| 8202 | method public java.security.cert.CertPath engineGenerateCertPath(java.util.List<? extends java.security.cert.Certificate>) throws java.security.cert.CertificateException; |
| 8203 | method public abstract java.security.cert.Certificate engineGenerateCertificate(java.io.InputStream) throws java.security.cert.CertificateException; |
| 8204 | method public abstract java.util.Collection<? extends java.security.cert.Certificate> engineGenerateCertificates(java.io.InputStream) throws java.security.cert.CertificateException; |
| 8205 | method public java.util.Iterator<java.lang.String> engineGetCertPathEncodings(); |
| 8206 | } |
| 8207 | |
| 8208 | public class CertificateNotYetValidException extends java.security.cert.CertificateException { |
| 8209 | ctor public CertificateNotYetValidException(); |
| 8210 | ctor public CertificateNotYetValidException(String); |
| 8211 | } |
| 8212 | |
| 8213 | public class CertificateParsingException extends java.security.cert.CertificateException { |
| 8214 | ctor public CertificateParsingException(); |
| 8215 | ctor public CertificateParsingException(String); |
| 8216 | ctor public CertificateParsingException(String, Throwable); |
| 8217 | ctor public CertificateParsingException(Throwable); |
| 8218 | } |
| 8219 | |
| 8220 | public class CertificateRevokedException extends java.security.cert.CertificateException { |
| 8221 | ctor public CertificateRevokedException(java.util.Date, java.security.cert.CRLReason, javax.security.auth.x500.X500Principal, java.util.Map<java.lang.String,java.security.cert.Extension>); |
| 8222 | method public javax.security.auth.x500.X500Principal getAuthorityName(); |
| 8223 | method public java.util.Map<java.lang.String,java.security.cert.Extension> getExtensions(); |
| 8224 | method public java.util.Date getInvalidityDate(); |
| 8225 | method public java.util.Date getRevocationDate(); |
| 8226 | method public java.security.cert.CRLReason getRevocationReason(); |
| 8227 | } |
| 8228 | |
| 8229 | public class CollectionCertStoreParameters implements java.security.cert.CertStoreParameters { |
| 8230 | ctor public CollectionCertStoreParameters(java.util.Collection<?>); |
| 8231 | ctor public CollectionCertStoreParameters(); |
| 8232 | method public Object clone(); |
| 8233 | method public java.util.Collection<?> getCollection(); |
| 8234 | } |
| 8235 | |
| 8236 | public interface Extension { |
| 8237 | method public void encode(java.io.OutputStream) throws java.io.IOException; |
| 8238 | method public String getId(); |
| 8239 | method public byte[] getValue(); |
| 8240 | method public boolean isCritical(); |
| 8241 | } |
| 8242 | |
| 8243 | public class LDAPCertStoreParameters implements java.security.cert.CertStoreParameters { |
| 8244 | ctor public LDAPCertStoreParameters(String, int); |
| 8245 | ctor public LDAPCertStoreParameters(String); |
| 8246 | ctor public LDAPCertStoreParameters(); |
| 8247 | method public Object clone(); |
| 8248 | method public int getPort(); |
| 8249 | method public String getServerName(); |
| 8250 | } |
| 8251 | |
| 8252 | public class PKIXBuilderParameters extends java.security.cert.PKIXParameters { |
| 8253 | ctor public PKIXBuilderParameters(java.util.Set<java.security.cert.TrustAnchor>, java.security.cert.CertSelector) throws java.security.InvalidAlgorithmParameterException; |
| 8254 | ctor public PKIXBuilderParameters(java.security.KeyStore, java.security.cert.CertSelector) throws java.security.InvalidAlgorithmParameterException, java.security.KeyStoreException; |
| 8255 | method public int getMaxPathLength(); |
| 8256 | method public void setMaxPathLength(int); |
| 8257 | } |
| 8258 | |
| 8259 | public class PKIXCertPathBuilderResult extends java.security.cert.PKIXCertPathValidatorResult implements java.security.cert.CertPathBuilderResult { |
| 8260 | ctor public PKIXCertPathBuilderResult(java.security.cert.CertPath, java.security.cert.TrustAnchor, java.security.cert.PolicyNode, java.security.PublicKey); |
| 8261 | method public java.security.cert.CertPath getCertPath(); |
| 8262 | } |
| 8263 | |
| 8264 | public abstract class PKIXCertPathChecker implements java.security.cert.CertPathChecker java.lang.Cloneable { |
| 8265 | ctor protected PKIXCertPathChecker(); |
| 8266 | method public abstract void check(java.security.cert.Certificate, java.util.Collection<java.lang.String>) throws java.security.cert.CertPathValidatorException; |
| 8267 | method public void check(java.security.cert.Certificate) throws java.security.cert.CertPathValidatorException; |
| 8268 | method public Object clone(); |
| 8269 | method public abstract java.util.Set<java.lang.String> getSupportedExtensions(); |
| 8270 | } |
| 8271 | |
| 8272 | public class PKIXCertPathValidatorResult implements java.security.cert.CertPathValidatorResult { |
| 8273 | ctor public PKIXCertPathValidatorResult(java.security.cert.TrustAnchor, java.security.cert.PolicyNode, java.security.PublicKey); |
| 8274 | method public Object clone(); |
| 8275 | method public java.security.cert.PolicyNode getPolicyTree(); |
| 8276 | method public java.security.PublicKey getPublicKey(); |
| 8277 | method public java.security.cert.TrustAnchor getTrustAnchor(); |
| 8278 | } |
| 8279 | |
| 8280 | public class PKIXParameters implements java.security.cert.CertPathParameters { |
| 8281 | ctor public PKIXParameters(java.util.Set<java.security.cert.TrustAnchor>) throws java.security.InvalidAlgorithmParameterException; |
| 8282 | ctor public PKIXParameters(java.security.KeyStore) throws java.security.InvalidAlgorithmParameterException, java.security.KeyStoreException; |
| 8283 | method public void addCertPathChecker(java.security.cert.PKIXCertPathChecker); |
| 8284 | method public void addCertStore(java.security.cert.CertStore); |
| 8285 | method public Object clone(); |
| 8286 | method public java.util.List<java.security.cert.PKIXCertPathChecker> getCertPathCheckers(); |
| 8287 | method public java.util.List<java.security.cert.CertStore> getCertStores(); |
| 8288 | method public java.util.Date getDate(); |
| 8289 | method public java.util.Set<java.lang.String> getInitialPolicies(); |
| 8290 | method public boolean getPolicyQualifiersRejected(); |
| 8291 | method public String getSigProvider(); |
| 8292 | method public java.security.cert.CertSelector getTargetCertConstraints(); |
| 8293 | method public java.util.Set<java.security.cert.TrustAnchor> getTrustAnchors(); |
| 8294 | method public boolean isAnyPolicyInhibited(); |
| 8295 | method public boolean isExplicitPolicyRequired(); |
| 8296 | method public boolean isPolicyMappingInhibited(); |
| 8297 | method public boolean isRevocationEnabled(); |
| 8298 | method public void setAnyPolicyInhibited(boolean); |
| 8299 | method public void setCertPathCheckers(java.util.List<java.security.cert.PKIXCertPathChecker>); |
| 8300 | method public void setCertStores(java.util.List<java.security.cert.CertStore>); |
| 8301 | method public void setDate(java.util.Date); |
| 8302 | method public void setExplicitPolicyRequired(boolean); |
| 8303 | method public void setInitialPolicies(java.util.Set<java.lang.String>); |
| 8304 | method public void setPolicyMappingInhibited(boolean); |
| 8305 | method public void setPolicyQualifiersRejected(boolean); |
| 8306 | method public void setRevocationEnabled(boolean); |
| 8307 | method public void setSigProvider(String); |
| 8308 | method public void setTargetCertConstraints(java.security.cert.CertSelector); |
| 8309 | method public void setTrustAnchors(java.util.Set<java.security.cert.TrustAnchor>) throws java.security.InvalidAlgorithmParameterException; |
| 8310 | } |
| 8311 | |
| 8312 | public enum PKIXReason implements java.security.cert.CertPathValidatorException.Reason { |
| 8313 | enum_constant public static final java.security.cert.PKIXReason INVALID_KEY_USAGE; |
| 8314 | enum_constant public static final java.security.cert.PKIXReason INVALID_NAME; |
| 8315 | enum_constant public static final java.security.cert.PKIXReason INVALID_POLICY; |
| 8316 | enum_constant public static final java.security.cert.PKIXReason NAME_CHAINING; |
| 8317 | enum_constant public static final java.security.cert.PKIXReason NOT_CA_CERT; |
| 8318 | enum_constant public static final java.security.cert.PKIXReason NO_TRUST_ANCHOR; |
| 8319 | enum_constant public static final java.security.cert.PKIXReason PATH_TOO_LONG; |
| 8320 | enum_constant public static final java.security.cert.PKIXReason UNRECOGNIZED_CRIT_EXT; |
| 8321 | } |
| 8322 | |
| 8323 | public abstract class PKIXRevocationChecker extends java.security.cert.PKIXCertPathChecker { |
| 8324 | ctor protected PKIXRevocationChecker(); |
| 8325 | method public java.security.cert.PKIXRevocationChecker clone(); |
| 8326 | method public java.util.List<java.security.cert.Extension> getOcspExtensions(); |
| 8327 | method public java.net.URI getOcspResponder(); |
| 8328 | method public java.security.cert.X509Certificate getOcspResponderCert(); |
| 8329 | method public java.util.Map<java.security.cert.X509Certificate,byte[]> getOcspResponses(); |
| 8330 | method public java.util.Set<java.security.cert.PKIXRevocationChecker.Option> getOptions(); |
| 8331 | method public abstract java.util.List<java.security.cert.CertPathValidatorException> getSoftFailExceptions(); |
| 8332 | method public void setOcspExtensions(java.util.List<java.security.cert.Extension>); |
| 8333 | method public void setOcspResponder(java.net.URI); |
| 8334 | method public void setOcspResponderCert(java.security.cert.X509Certificate); |
| 8335 | method public void setOcspResponses(java.util.Map<java.security.cert.X509Certificate,byte[]>); |
| 8336 | method public void setOptions(java.util.Set<java.security.cert.PKIXRevocationChecker.Option>); |
| 8337 | } |
| 8338 | |
| 8339 | public enum PKIXRevocationChecker.Option { |
| 8340 | enum_constant public static final java.security.cert.PKIXRevocationChecker.Option NO_FALLBACK; |
| 8341 | enum_constant public static final java.security.cert.PKIXRevocationChecker.Option ONLY_END_ENTITY; |
| 8342 | enum_constant public static final java.security.cert.PKIXRevocationChecker.Option PREFER_CRLS; |
| 8343 | enum_constant public static final java.security.cert.PKIXRevocationChecker.Option SOFT_FAIL; |
| 8344 | } |
| 8345 | |
| 8346 | public interface PolicyNode { |
| 8347 | method public java.util.Iterator<? extends java.security.cert.PolicyNode> getChildren(); |
| 8348 | method public int getDepth(); |
| 8349 | method public java.util.Set<java.lang.String> getExpectedPolicies(); |
| 8350 | method public java.security.cert.PolicyNode getParent(); |
| 8351 | method public java.util.Set<? extends java.security.cert.PolicyQualifierInfo> getPolicyQualifiers(); |
| 8352 | method public String getValidPolicy(); |
| 8353 | method public boolean isCritical(); |
| 8354 | } |
| 8355 | |
| 8356 | public class PolicyQualifierInfo { |
| 8357 | ctor public PolicyQualifierInfo(byte[]) throws java.io.IOException; |
| 8358 | method public final byte[] getEncoded(); |
| 8359 | method public final byte[] getPolicyQualifier(); |
| 8360 | method public final String getPolicyQualifierId(); |
| 8361 | } |
| 8362 | |
| 8363 | public class TrustAnchor { |
| 8364 | ctor public TrustAnchor(java.security.cert.X509Certificate, byte[]); |
| 8365 | ctor public TrustAnchor(javax.security.auth.x500.X500Principal, java.security.PublicKey, byte[]); |
| 8366 | ctor public TrustAnchor(String, java.security.PublicKey, byte[]); |
| 8367 | method public final javax.security.auth.x500.X500Principal getCA(); |
| 8368 | method public final String getCAName(); |
| 8369 | method public final java.security.PublicKey getCAPublicKey(); |
| 8370 | method public final byte[] getNameConstraints(); |
| 8371 | method public final java.security.cert.X509Certificate getTrustedCert(); |
| 8372 | } |
| 8373 | |
| 8374 | public abstract class X509CRL extends java.security.cert.CRL implements java.security.cert.X509Extension { |
| 8375 | ctor protected X509CRL(); |
| 8376 | method public abstract byte[] getEncoded() throws java.security.cert.CRLException; |
| 8377 | method public abstract java.security.Principal getIssuerDN(); |
| 8378 | method public javax.security.auth.x500.X500Principal getIssuerX500Principal(); |
| 8379 | method public abstract java.util.Date getNextUpdate(); |
| 8380 | method public abstract java.security.cert.X509CRLEntry getRevokedCertificate(java.math.BigInteger); |
| 8381 | method public java.security.cert.X509CRLEntry getRevokedCertificate(java.security.cert.X509Certificate); |
| 8382 | method public abstract java.util.Set<? extends java.security.cert.X509CRLEntry> getRevokedCertificates(); |
| 8383 | method public abstract String getSigAlgName(); |
| 8384 | method public abstract String getSigAlgOID(); |
| 8385 | method public abstract byte[] getSigAlgParams(); |
| 8386 | method public abstract byte[] getSignature(); |
| 8387 | method public abstract byte[] getTBSCertList() throws java.security.cert.CRLException; |
| 8388 | method public abstract java.util.Date getThisUpdate(); |
| 8389 | method public abstract int getVersion(); |
| 8390 | method public abstract void verify(java.security.PublicKey) throws java.security.cert.CRLException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.SignatureException; |
| 8391 | method public abstract void verify(java.security.PublicKey, String) throws java.security.cert.CRLException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.SignatureException; |
| 8392 | method public void verify(java.security.PublicKey, java.security.Provider) throws java.security.cert.CRLException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.SignatureException; |
| 8393 | } |
| 8394 | |
| 8395 | public abstract class X509CRLEntry implements java.security.cert.X509Extension { |
| 8396 | ctor public X509CRLEntry(); |
| 8397 | method public javax.security.auth.x500.X500Principal getCertificateIssuer(); |
| 8398 | method public abstract byte[] getEncoded() throws java.security.cert.CRLException; |
| 8399 | method public abstract java.util.Date getRevocationDate(); |
| 8400 | method public java.security.cert.CRLReason getRevocationReason(); |
| 8401 | method public abstract java.math.BigInteger getSerialNumber(); |
| 8402 | method public abstract boolean hasExtensions(); |
| 8403 | method public abstract String toString(); |
| 8404 | } |
| 8405 | |
| 8406 | public class X509CRLSelector implements java.security.cert.CRLSelector { |
| 8407 | ctor public X509CRLSelector(); |
| 8408 | method public void addIssuer(javax.security.auth.x500.X500Principal); |
| 8409 | method public void addIssuerName(String) throws java.io.IOException; |
| 8410 | method public void addIssuerName(byte[]) throws java.io.IOException; |
| 8411 | method public Object clone(); |
| 8412 | method public java.security.cert.X509Certificate getCertificateChecking(); |
| 8413 | method public java.util.Date getDateAndTime(); |
| 8414 | method public java.util.Collection<java.lang.Object> getIssuerNames(); |
| 8415 | method public java.util.Collection<javax.security.auth.x500.X500Principal> getIssuers(); |
| 8416 | method public java.math.BigInteger getMaxCRL(); |
| 8417 | method public java.math.BigInteger getMinCRL(); |
| 8418 | method public boolean match(java.security.cert.CRL); |
| 8419 | method public void setCertificateChecking(java.security.cert.X509Certificate); |
| 8420 | method public void setDateAndTime(java.util.Date); |
| 8421 | method public void setIssuerNames(java.util.Collection<?>) throws java.io.IOException; |
| 8422 | method public void setIssuers(java.util.Collection<javax.security.auth.x500.X500Principal>); |
| 8423 | method public void setMaxCRLNumber(java.math.BigInteger); |
| 8424 | method public void setMinCRLNumber(java.math.BigInteger); |
| 8425 | } |
| 8426 | |
| 8427 | public class X509CertSelector implements java.security.cert.CertSelector { |
| 8428 | ctor public X509CertSelector(); |
| 8429 | method public void addPathToName(int, String) throws java.io.IOException; |
| 8430 | method public void addPathToName(int, byte[]) throws java.io.IOException; |
| 8431 | method public void addSubjectAlternativeName(int, String) throws java.io.IOException; |
| 8432 | method public void addSubjectAlternativeName(int, byte[]) throws java.io.IOException; |
| 8433 | method public Object clone(); |
| 8434 | method public byte[] getAuthorityKeyIdentifier(); |
| 8435 | method public int getBasicConstraints(); |
| 8436 | method public java.security.cert.X509Certificate getCertificate(); |
| 8437 | method public java.util.Date getCertificateValid(); |
| 8438 | method public java.util.Set<java.lang.String> getExtendedKeyUsage(); |
| 8439 | method public javax.security.auth.x500.X500Principal getIssuer(); |
| 8440 | method public byte[] getIssuerAsBytes() throws java.io.IOException; |
| 8441 | method public String getIssuerAsString(); |
| 8442 | method public boolean[] getKeyUsage(); |
| 8443 | method public boolean getMatchAllSubjectAltNames(); |
| 8444 | method public byte[] getNameConstraints(); |
| 8445 | method public java.util.Collection<java.util.List<?>> getPathToNames(); |
| 8446 | method public java.util.Set<java.lang.String> getPolicy(); |
| 8447 | method public java.util.Date getPrivateKeyValid(); |
| 8448 | method public java.math.BigInteger getSerialNumber(); |
| 8449 | method public javax.security.auth.x500.X500Principal getSubject(); |
| 8450 | method public java.util.Collection<java.util.List<?>> getSubjectAlternativeNames(); |
| 8451 | method public byte[] getSubjectAsBytes() throws java.io.IOException; |
| 8452 | method public String getSubjectAsString(); |
| 8453 | method public byte[] getSubjectKeyIdentifier(); |
| 8454 | method public java.security.PublicKey getSubjectPublicKey(); |
| 8455 | method public String getSubjectPublicKeyAlgID(); |
| 8456 | method public boolean match(java.security.cert.Certificate); |
| 8457 | method public void setAuthorityKeyIdentifier(byte[]); |
| 8458 | method public void setBasicConstraints(int); |
| 8459 | method public void setCertificate(java.security.cert.X509Certificate); |
| 8460 | method public void setCertificateValid(java.util.Date); |
| 8461 | method public void setExtendedKeyUsage(java.util.Set<java.lang.String>) throws java.io.IOException; |
| 8462 | method public void setIssuer(javax.security.auth.x500.X500Principal); |
| 8463 | method public void setIssuer(String) throws java.io.IOException; |
| 8464 | method public void setIssuer(byte[]) throws java.io.IOException; |
| 8465 | method public void setKeyUsage(boolean[]); |
| 8466 | method public void setMatchAllSubjectAltNames(boolean); |
| 8467 | method public void setNameConstraints(byte[]) throws java.io.IOException; |
| 8468 | method public void setPathToNames(java.util.Collection<java.util.List<?>>) throws java.io.IOException; |
| 8469 | method public void setPolicy(java.util.Set<java.lang.String>) throws java.io.IOException; |
| 8470 | method public void setPrivateKeyValid(java.util.Date); |
| 8471 | method public void setSerialNumber(java.math.BigInteger); |
| 8472 | method public void setSubject(javax.security.auth.x500.X500Principal); |
| 8473 | method public void setSubject(String) throws java.io.IOException; |
| 8474 | method public void setSubject(byte[]) throws java.io.IOException; |
| 8475 | method public void setSubjectAlternativeNames(java.util.Collection<java.util.List<?>>) throws java.io.IOException; |
| 8476 | method public void setSubjectKeyIdentifier(byte[]); |
| 8477 | method public void setSubjectPublicKey(java.security.PublicKey); |
| 8478 | method public void setSubjectPublicKey(byte[]) throws java.io.IOException; |
| 8479 | method public void setSubjectPublicKeyAlgID(String) throws java.io.IOException; |
| 8480 | } |
| 8481 | |
| 8482 | public abstract class X509Certificate extends java.security.cert.Certificate implements java.security.cert.X509Extension { |
| 8483 | ctor protected X509Certificate(); |
| 8484 | method public abstract void checkValidity() throws java.security.cert.CertificateExpiredException, java.security.cert.CertificateNotYetValidException; |
| 8485 | method public abstract void checkValidity(java.util.Date) throws java.security.cert.CertificateExpiredException, java.security.cert.CertificateNotYetValidException; |
| 8486 | method public abstract int getBasicConstraints(); |
| 8487 | method public java.util.List<java.lang.String> getExtendedKeyUsage() throws java.security.cert.CertificateParsingException; |
| 8488 | method public java.util.Collection<java.util.List<?>> getIssuerAlternativeNames() throws java.security.cert.CertificateParsingException; |
| 8489 | method public abstract java.security.Principal getIssuerDN(); |
| 8490 | method public abstract boolean[] getIssuerUniqueID(); |
| 8491 | method public javax.security.auth.x500.X500Principal getIssuerX500Principal(); |
| 8492 | method public abstract boolean[] getKeyUsage(); |
| 8493 | method public abstract java.util.Date getNotAfter(); |
| 8494 | method public abstract java.util.Date getNotBefore(); |
| 8495 | method public abstract java.math.BigInteger getSerialNumber(); |
| 8496 | method public abstract String getSigAlgName(); |
| 8497 | method public abstract String getSigAlgOID(); |
| 8498 | method public abstract byte[] getSigAlgParams(); |
| 8499 | method public abstract byte[] getSignature(); |
| 8500 | method public java.util.Collection<java.util.List<?>> getSubjectAlternativeNames() throws java.security.cert.CertificateParsingException; |
| 8501 | method public abstract java.security.Principal getSubjectDN(); |
| 8502 | method public abstract boolean[] getSubjectUniqueID(); |
| 8503 | method public javax.security.auth.x500.X500Principal getSubjectX500Principal(); |
| 8504 | method public abstract byte[] getTBSCertificate() throws java.security.cert.CertificateEncodingException; |
| 8505 | method public abstract int getVersion(); |
| 8506 | } |
| 8507 | |
| 8508 | public interface X509Extension { |
| 8509 | method public java.util.Set<java.lang.String> getCriticalExtensionOIDs(); |
| 8510 | method public byte[] getExtensionValue(String); |
| 8511 | method public java.util.Set<java.lang.String> getNonCriticalExtensionOIDs(); |
| 8512 | method public boolean hasUnsupportedCriticalExtension(); |
| 8513 | } |
| 8514 | |
| 8515 | } |
| 8516 | |
| 8517 | package java.security.interfaces { |
| 8518 | |
| 8519 | public interface DSAKey { |
| 8520 | method public java.security.interfaces.DSAParams getParams(); |
| 8521 | } |
| 8522 | |
| 8523 | public interface DSAKeyPairGenerator { |
| 8524 | method public void initialize(java.security.interfaces.DSAParams, java.security.SecureRandom) throws java.security.InvalidParameterException; |
| 8525 | method public void initialize(int, boolean, java.security.SecureRandom) throws java.security.InvalidParameterException; |
| 8526 | } |
| 8527 | |
| 8528 | public interface DSAParams { |
| 8529 | method public java.math.BigInteger getG(); |
| 8530 | method public java.math.BigInteger getP(); |
| 8531 | method public java.math.BigInteger getQ(); |
| 8532 | } |
| 8533 | |
| 8534 | public interface DSAPrivateKey extends java.security.interfaces.DSAKey java.security.PrivateKey { |
| 8535 | method public java.math.BigInteger getX(); |
| 8536 | field public static final long serialVersionUID = 7776497482533790279L; // 0x6bebab423b256247L |
| 8537 | } |
| 8538 | |
| 8539 | public interface DSAPublicKey extends java.security.interfaces.DSAKey java.security.PublicKey { |
| 8540 | method public java.math.BigInteger getY(); |
| 8541 | field public static final long serialVersionUID = 1234526332779022332L; // 0x1121eb28ab28c7fcL |
| 8542 | } |
| 8543 | |
| 8544 | public interface ECKey { |
| 8545 | method public java.security.spec.ECParameterSpec getParams(); |
| 8546 | } |
| 8547 | |
| 8548 | public interface ECPrivateKey extends java.security.PrivateKey java.security.interfaces.ECKey { |
| 8549 | method public java.math.BigInteger getS(); |
| 8550 | field public static final long serialVersionUID = -7896394956925609184L; // 0x926a5e9fa2435b20L |
| 8551 | } |
| 8552 | |
| 8553 | public interface ECPublicKey extends java.security.PublicKey java.security.interfaces.ECKey { |
| 8554 | method public java.security.spec.ECPoint getW(); |
| 8555 | field public static final long serialVersionUID = -3314988629879632826L; // 0xd1fecb679990cc46L |
| 8556 | } |
| 8557 | |
| 8558 | public interface RSAKey { |
| 8559 | method public java.math.BigInteger getModulus(); |
| 8560 | } |
| 8561 | |
| 8562 | public interface RSAMultiPrimePrivateCrtKey extends java.security.interfaces.RSAPrivateKey { |
| 8563 | method public java.math.BigInteger getCrtCoefficient(); |
| 8564 | method public java.security.spec.RSAOtherPrimeInfo[] getOtherPrimeInfo(); |
| 8565 | method public java.math.BigInteger getPrimeExponentP(); |
| 8566 | method public java.math.BigInteger getPrimeExponentQ(); |
| 8567 | method public java.math.BigInteger getPrimeP(); |
| 8568 | method public java.math.BigInteger getPrimeQ(); |
| 8569 | method public java.math.BigInteger getPublicExponent(); |
| 8570 | field public static final long serialVersionUID = 618058533534628008L; // 0x893c8f62dbaf8a8L |
| 8571 | } |
| 8572 | |
| 8573 | public interface RSAPrivateCrtKey extends java.security.interfaces.RSAPrivateKey { |
| 8574 | method public java.math.BigInteger getCrtCoefficient(); |
| 8575 | method public java.math.BigInteger getPrimeExponentP(); |
| 8576 | method public java.math.BigInteger getPrimeExponentQ(); |
| 8577 | method public java.math.BigInteger getPrimeP(); |
| 8578 | method public java.math.BigInteger getPrimeQ(); |
| 8579 | method public java.math.BigInteger getPublicExponent(); |
| 8580 | field public static final long serialVersionUID = -5682214253527700368L; // 0xb124b83df8d1ec70L |
| 8581 | } |
| 8582 | |
| 8583 | public interface RSAPrivateKey extends java.security.PrivateKey java.security.interfaces.RSAKey { |
| 8584 | method public java.math.BigInteger getPrivateExponent(); |
| 8585 | field public static final long serialVersionUID = 5187144804936595022L; // 0x47fc70b7a8c2364eL |
| 8586 | } |
| 8587 | |
| 8588 | public interface RSAPublicKey extends java.security.PublicKey java.security.interfaces.RSAKey { |
| 8589 | method public java.math.BigInteger getPublicExponent(); |
| 8590 | field public static final long serialVersionUID = -8727434096241101194L; // 0x86e1ecedeceab676L |
| 8591 | } |
| 8592 | |
| 8593 | } |
| 8594 | |
| 8595 | package java.security.spec { |
| 8596 | |
| 8597 | public interface AlgorithmParameterSpec { |
| 8598 | } |
| 8599 | |
| 8600 | public class DSAParameterSpec implements java.security.spec.AlgorithmParameterSpec java.security.interfaces.DSAParams { |
| 8601 | ctor public DSAParameterSpec(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 8602 | method public java.math.BigInteger getG(); |
| 8603 | method public java.math.BigInteger getP(); |
| 8604 | method public java.math.BigInteger getQ(); |
| 8605 | } |
| 8606 | |
| 8607 | public class DSAPrivateKeySpec implements java.security.spec.KeySpec { |
| 8608 | ctor public DSAPrivateKeySpec(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 8609 | method public java.math.BigInteger getG(); |
| 8610 | method public java.math.BigInteger getP(); |
| 8611 | method public java.math.BigInteger getQ(); |
| 8612 | method public java.math.BigInteger getX(); |
| 8613 | } |
| 8614 | |
| 8615 | public class DSAPublicKeySpec implements java.security.spec.KeySpec { |
| 8616 | ctor public DSAPublicKeySpec(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 8617 | method public java.math.BigInteger getG(); |
| 8618 | method public java.math.BigInteger getP(); |
| 8619 | method public java.math.BigInteger getQ(); |
| 8620 | method public java.math.BigInteger getY(); |
| 8621 | } |
| 8622 | |
| 8623 | public interface ECField { |
| 8624 | method public int getFieldSize(); |
| 8625 | } |
| 8626 | |
| 8627 | public class ECFieldF2m implements java.security.spec.ECField { |
| 8628 | ctor public ECFieldF2m(int); |
| 8629 | ctor public ECFieldF2m(int, java.math.BigInteger); |
| 8630 | ctor public ECFieldF2m(int, int[]); |
| 8631 | method public int getFieldSize(); |
| 8632 | method public int getM(); |
| 8633 | method public int[] getMidTermsOfReductionPolynomial(); |
| 8634 | method public java.math.BigInteger getReductionPolynomial(); |
| 8635 | } |
| 8636 | |
| 8637 | public class ECFieldFp implements java.security.spec.ECField { |
| 8638 | ctor public ECFieldFp(java.math.BigInteger); |
| 8639 | method public int getFieldSize(); |
| 8640 | method public java.math.BigInteger getP(); |
| 8641 | } |
| 8642 | |
| 8643 | public class ECGenParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 8644 | ctor public ECGenParameterSpec(String); |
| 8645 | method public String getName(); |
| 8646 | } |
| 8647 | |
| 8648 | public class ECParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 8649 | ctor public ECParameterSpec(java.security.spec.EllipticCurve, java.security.spec.ECPoint, java.math.BigInteger, int); |
| 8650 | method public int getCofactor(); |
| 8651 | method public java.security.spec.EllipticCurve getCurve(); |
| 8652 | method public java.security.spec.ECPoint getGenerator(); |
| 8653 | method public java.math.BigInteger getOrder(); |
| 8654 | } |
| 8655 | |
| 8656 | public class ECPoint { |
| 8657 | ctor public ECPoint(java.math.BigInteger, java.math.BigInteger); |
| 8658 | method public java.math.BigInteger getAffineX(); |
| 8659 | method public java.math.BigInteger getAffineY(); |
| 8660 | field public static final java.security.spec.ECPoint POINT_INFINITY; |
| 8661 | } |
| 8662 | |
| 8663 | public class ECPrivateKeySpec implements java.security.spec.KeySpec { |
| 8664 | ctor public ECPrivateKeySpec(java.math.BigInteger, java.security.spec.ECParameterSpec); |
| 8665 | method public java.security.spec.ECParameterSpec getParams(); |
| 8666 | method public java.math.BigInteger getS(); |
| 8667 | } |
| 8668 | |
| 8669 | public class ECPublicKeySpec implements java.security.spec.KeySpec { |
| 8670 | ctor public ECPublicKeySpec(java.security.spec.ECPoint, java.security.spec.ECParameterSpec); |
| 8671 | method public java.security.spec.ECParameterSpec getParams(); |
| 8672 | method public java.security.spec.ECPoint getW(); |
| 8673 | } |
| 8674 | |
| 8675 | public class EllipticCurve { |
| 8676 | ctor public EllipticCurve(java.security.spec.ECField, java.math.BigInteger, java.math.BigInteger); |
| 8677 | ctor public EllipticCurve(java.security.spec.ECField, java.math.BigInteger, java.math.BigInteger, byte[]); |
| 8678 | method public java.math.BigInteger getA(); |
| 8679 | method public java.math.BigInteger getB(); |
| 8680 | method public java.security.spec.ECField getField(); |
| 8681 | method public byte[] getSeed(); |
| 8682 | } |
| 8683 | |
| 8684 | public abstract class EncodedKeySpec implements java.security.spec.KeySpec { |
| 8685 | ctor public EncodedKeySpec(byte[]); |
| 8686 | method public byte[] getEncoded(); |
| 8687 | method public abstract String getFormat(); |
| 8688 | } |
| 8689 | |
| 8690 | public class InvalidKeySpecException extends java.security.GeneralSecurityException { |
| 8691 | ctor public InvalidKeySpecException(); |
| 8692 | ctor public InvalidKeySpecException(String); |
| 8693 | ctor public InvalidKeySpecException(String, Throwable); |
| 8694 | ctor public InvalidKeySpecException(Throwable); |
| 8695 | } |
| 8696 | |
| 8697 | public class InvalidParameterSpecException extends java.security.GeneralSecurityException { |
| 8698 | ctor public InvalidParameterSpecException(); |
| 8699 | ctor public InvalidParameterSpecException(String); |
| 8700 | } |
| 8701 | |
| 8702 | public interface KeySpec { |
| 8703 | } |
| 8704 | |
| 8705 | public class MGF1ParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 8706 | ctor public MGF1ParameterSpec(String); |
| 8707 | method public String getDigestAlgorithm(); |
| 8708 | field public static final java.security.spec.MGF1ParameterSpec SHA1; |
| 8709 | field public static final java.security.spec.MGF1ParameterSpec SHA224; |
| 8710 | field public static final java.security.spec.MGF1ParameterSpec SHA256; |
| 8711 | field public static final java.security.spec.MGF1ParameterSpec SHA384; |
| 8712 | field public static final java.security.spec.MGF1ParameterSpec SHA512; |
| 8713 | } |
| 8714 | |
| 8715 | public class PKCS8EncodedKeySpec extends java.security.spec.EncodedKeySpec { |
| 8716 | ctor public PKCS8EncodedKeySpec(byte[]); |
| 8717 | method public final String getFormat(); |
| 8718 | } |
| 8719 | |
| 8720 | public class PSSParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 8721 | ctor public PSSParameterSpec(String, String, java.security.spec.AlgorithmParameterSpec, int, int); |
| 8722 | ctor public PSSParameterSpec(int); |
| 8723 | method public String getDigestAlgorithm(); |
| 8724 | method public String getMGFAlgorithm(); |
| 8725 | method public java.security.spec.AlgorithmParameterSpec getMGFParameters(); |
| 8726 | method public int getSaltLength(); |
| 8727 | method public int getTrailerField(); |
| 8728 | field public static final java.security.spec.PSSParameterSpec DEFAULT; |
| 8729 | } |
| 8730 | |
| 8731 | public class RSAKeyGenParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 8732 | ctor public RSAKeyGenParameterSpec(int, java.math.BigInteger); |
| 8733 | method public int getKeysize(); |
| 8734 | method public java.math.BigInteger getPublicExponent(); |
| 8735 | field public static final java.math.BigInteger F0; |
| 8736 | field public static final java.math.BigInteger F4; |
| 8737 | } |
| 8738 | |
| 8739 | public class RSAMultiPrimePrivateCrtKeySpec extends java.security.spec.RSAPrivateKeySpec { |
| 8740 | ctor public RSAMultiPrimePrivateCrtKeySpec(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.security.spec.RSAOtherPrimeInfo[]); |
| 8741 | method public java.math.BigInteger getCrtCoefficient(); |
| 8742 | method public java.security.spec.RSAOtherPrimeInfo[] getOtherPrimeInfo(); |
| 8743 | method public java.math.BigInteger getPrimeExponentP(); |
| 8744 | method public java.math.BigInteger getPrimeExponentQ(); |
| 8745 | method public java.math.BigInteger getPrimeP(); |
| 8746 | method public java.math.BigInteger getPrimeQ(); |
| 8747 | method public java.math.BigInteger getPublicExponent(); |
| 8748 | } |
| 8749 | |
| 8750 | public class RSAOtherPrimeInfo { |
| 8751 | ctor public RSAOtherPrimeInfo(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 8752 | method public final java.math.BigInteger getCrtCoefficient(); |
| 8753 | method public final java.math.BigInteger getExponent(); |
| 8754 | method public final java.math.BigInteger getPrime(); |
| 8755 | } |
| 8756 | |
| 8757 | public class RSAPrivateCrtKeySpec extends java.security.spec.RSAPrivateKeySpec { |
| 8758 | ctor public RSAPrivateCrtKeySpec(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 8759 | method public java.math.BigInteger getCrtCoefficient(); |
| 8760 | method public java.math.BigInteger getPrimeExponentP(); |
| 8761 | method public java.math.BigInteger getPrimeExponentQ(); |
| 8762 | method public java.math.BigInteger getPrimeP(); |
| 8763 | method public java.math.BigInteger getPrimeQ(); |
| 8764 | method public java.math.BigInteger getPublicExponent(); |
| 8765 | } |
| 8766 | |
| 8767 | public class RSAPrivateKeySpec implements java.security.spec.KeySpec { |
| 8768 | ctor public RSAPrivateKeySpec(java.math.BigInteger, java.math.BigInteger); |
| 8769 | method public java.math.BigInteger getModulus(); |
| 8770 | method public java.math.BigInteger getPrivateExponent(); |
| 8771 | } |
| 8772 | |
| 8773 | public class RSAPublicKeySpec implements java.security.spec.KeySpec { |
| 8774 | ctor public RSAPublicKeySpec(java.math.BigInteger, java.math.BigInteger); |
| 8775 | method public java.math.BigInteger getModulus(); |
| 8776 | method public java.math.BigInteger getPublicExponent(); |
| 8777 | } |
| 8778 | |
| 8779 | public class X509EncodedKeySpec extends java.security.spec.EncodedKeySpec { |
| 8780 | ctor public X509EncodedKeySpec(byte[]); |
| 8781 | method public final String getFormat(); |
| 8782 | } |
| 8783 | |
| 8784 | } |
| 8785 | |
| 8786 | package java.sql { |
| 8787 | |
| 8788 | public interface Array { |
| 8789 | method public void free() throws java.sql.SQLException; |
| 8790 | method public Object getArray() throws java.sql.SQLException; |
| 8791 | method public Object getArray(java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 8792 | method public Object getArray(long, int) throws java.sql.SQLException; |
| 8793 | method public Object getArray(long, int, java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 8794 | method public int getBaseType() throws java.sql.SQLException; |
| 8795 | method public String getBaseTypeName() throws java.sql.SQLException; |
| 8796 | method public java.sql.ResultSet getResultSet() throws java.sql.SQLException; |
| 8797 | method public java.sql.ResultSet getResultSet(java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 8798 | method public java.sql.ResultSet getResultSet(long, int) throws java.sql.SQLException; |
| 8799 | method public java.sql.ResultSet getResultSet(long, int, java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 8800 | } |
| 8801 | |
| 8802 | public class BatchUpdateException extends java.sql.SQLException { |
| 8803 | ctor public BatchUpdateException(String, String, int, int[]); |
| 8804 | ctor public BatchUpdateException(String, String, int[]); |
| 8805 | ctor public BatchUpdateException(String, int[]); |
| 8806 | ctor public BatchUpdateException(int[]); |
| 8807 | ctor public BatchUpdateException(); |
| 8808 | ctor public BatchUpdateException(Throwable); |
| 8809 | ctor public BatchUpdateException(int[], Throwable); |
| 8810 | ctor public BatchUpdateException(String, int[], Throwable); |
| 8811 | ctor public BatchUpdateException(String, String, int[], Throwable); |
| 8812 | ctor public BatchUpdateException(String, String, int, int[], Throwable); |
| 8813 | method public int[] getUpdateCounts(); |
| 8814 | } |
| 8815 | |
| 8816 | public interface Blob { |
| 8817 | method public void free() throws java.sql.SQLException; |
| 8818 | method public java.io.InputStream getBinaryStream() throws java.sql.SQLException; |
| 8819 | method public java.io.InputStream getBinaryStream(long, long) throws java.sql.SQLException; |
| 8820 | method public byte[] getBytes(long, int) throws java.sql.SQLException; |
| 8821 | method public long length() throws java.sql.SQLException; |
| 8822 | method public long position(byte[], long) throws java.sql.SQLException; |
| 8823 | method public long position(java.sql.Blob, long) throws java.sql.SQLException; |
| 8824 | method public java.io.OutputStream setBinaryStream(long) throws java.sql.SQLException; |
| 8825 | method public int setBytes(long, byte[]) throws java.sql.SQLException; |
| 8826 | method public int setBytes(long, byte[], int, int) throws java.sql.SQLException; |
| 8827 | method public void truncate(long) throws java.sql.SQLException; |
| 8828 | } |
| 8829 | |
| 8830 | public interface CallableStatement extends java.sql.PreparedStatement { |
| 8831 | method public java.sql.Array getArray(int) throws java.sql.SQLException; |
| 8832 | method public java.sql.Array getArray(String) throws java.sql.SQLException; |
| 8833 | method @Deprecated public java.math.BigDecimal getBigDecimal(int, int) throws java.sql.SQLException; |
| 8834 | method public java.math.BigDecimal getBigDecimal(int) throws java.sql.SQLException; |
| 8835 | method public java.math.BigDecimal getBigDecimal(String) throws java.sql.SQLException; |
| 8836 | method public java.sql.Blob getBlob(int) throws java.sql.SQLException; |
| 8837 | method public java.sql.Blob getBlob(String) throws java.sql.SQLException; |
| 8838 | method public boolean getBoolean(int) throws java.sql.SQLException; |
| 8839 | method public boolean getBoolean(String) throws java.sql.SQLException; |
| 8840 | method public byte getByte(int) throws java.sql.SQLException; |
| 8841 | method public byte getByte(String) throws java.sql.SQLException; |
| 8842 | method public byte[] getBytes(int) throws java.sql.SQLException; |
| 8843 | method public byte[] getBytes(String) throws java.sql.SQLException; |
| 8844 | method public java.io.Reader getCharacterStream(int) throws java.sql.SQLException; |
| 8845 | method public java.io.Reader getCharacterStream(String) throws java.sql.SQLException; |
| 8846 | method public java.sql.Clob getClob(int) throws java.sql.SQLException; |
| 8847 | method public java.sql.Clob getClob(String) throws java.sql.SQLException; |
| 8848 | method public java.sql.Date getDate(int) throws java.sql.SQLException; |
| 8849 | method public java.sql.Date getDate(int, java.util.Calendar) throws java.sql.SQLException; |
| 8850 | method public java.sql.Date getDate(String) throws java.sql.SQLException; |
| 8851 | method public java.sql.Date getDate(String, java.util.Calendar) throws java.sql.SQLException; |
| 8852 | method public double getDouble(int) throws java.sql.SQLException; |
| 8853 | method public double getDouble(String) throws java.sql.SQLException; |
| 8854 | method public float getFloat(int) throws java.sql.SQLException; |
| 8855 | method public float getFloat(String) throws java.sql.SQLException; |
| 8856 | method public int getInt(int) throws java.sql.SQLException; |
| 8857 | method public int getInt(String) throws java.sql.SQLException; |
| 8858 | method public long getLong(int) throws java.sql.SQLException; |
| 8859 | method public long getLong(String) throws java.sql.SQLException; |
| 8860 | method public java.io.Reader getNCharacterStream(int) throws java.sql.SQLException; |
| 8861 | method public java.io.Reader getNCharacterStream(String) throws java.sql.SQLException; |
| 8862 | method public java.sql.NClob getNClob(int) throws java.sql.SQLException; |
| 8863 | method public java.sql.NClob getNClob(String) throws java.sql.SQLException; |
| 8864 | method public String getNString(int) throws java.sql.SQLException; |
| 8865 | method public String getNString(String) throws java.sql.SQLException; |
| 8866 | method public Object getObject(int) throws java.sql.SQLException; |
| 8867 | method public Object getObject(int, java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 8868 | method public Object getObject(String) throws java.sql.SQLException; |
| 8869 | method public Object getObject(String, java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 8870 | method public java.sql.Ref getRef(int) throws java.sql.SQLException; |
| 8871 | method public java.sql.Ref getRef(String) throws java.sql.SQLException; |
| 8872 | method public java.sql.RowId getRowId(int) throws java.sql.SQLException; |
| 8873 | method public java.sql.RowId getRowId(String) throws java.sql.SQLException; |
| 8874 | method public java.sql.SQLXML getSQLXML(int) throws java.sql.SQLException; |
| 8875 | method public java.sql.SQLXML getSQLXML(String) throws java.sql.SQLException; |
| 8876 | method public short getShort(int) throws java.sql.SQLException; |
| 8877 | method public short getShort(String) throws java.sql.SQLException; |
| 8878 | method public String getString(int) throws java.sql.SQLException; |
| 8879 | method public String getString(String) throws java.sql.SQLException; |
| 8880 | method public java.sql.Time getTime(int) throws java.sql.SQLException; |
| 8881 | method public java.sql.Time getTime(int, java.util.Calendar) throws java.sql.SQLException; |
| 8882 | method public java.sql.Time getTime(String) throws java.sql.SQLException; |
| 8883 | method public java.sql.Time getTime(String, java.util.Calendar) throws java.sql.SQLException; |
| 8884 | method public java.sql.Timestamp getTimestamp(int) throws java.sql.SQLException; |
| 8885 | method public java.sql.Timestamp getTimestamp(int, java.util.Calendar) throws java.sql.SQLException; |
| 8886 | method public java.sql.Timestamp getTimestamp(String) throws java.sql.SQLException; |
| 8887 | method public java.sql.Timestamp getTimestamp(String, java.util.Calendar) throws java.sql.SQLException; |
| 8888 | method public java.net.URL getURL(int) throws java.sql.SQLException; |
| 8889 | method public java.net.URL getURL(String) throws java.sql.SQLException; |
| 8890 | method public void registerOutParameter(int, int) throws java.sql.SQLException; |
| 8891 | method public void registerOutParameter(int, int, int) throws java.sql.SQLException; |
| 8892 | method public void registerOutParameter(int, int, String) throws java.sql.SQLException; |
| 8893 | method public void registerOutParameter(String, int) throws java.sql.SQLException; |
| 8894 | method public void registerOutParameter(String, int, int) throws java.sql.SQLException; |
| 8895 | method public void registerOutParameter(String, int, String) throws java.sql.SQLException; |
| 8896 | method public void setAsciiStream(String, java.io.InputStream, int) throws java.sql.SQLException; |
| 8897 | method public void setAsciiStream(String, java.io.InputStream, long) throws java.sql.SQLException; |
| 8898 | method public void setAsciiStream(String, java.io.InputStream) throws java.sql.SQLException; |
| 8899 | method public void setBigDecimal(String, java.math.BigDecimal) throws java.sql.SQLException; |
| 8900 | method public void setBinaryStream(String, java.io.InputStream, int) throws java.sql.SQLException; |
| 8901 | method public void setBinaryStream(String, java.io.InputStream, long) throws java.sql.SQLException; |
| 8902 | method public void setBinaryStream(String, java.io.InputStream) throws java.sql.SQLException; |
| 8903 | method public void setBlob(String, java.io.InputStream, long) throws java.sql.SQLException; |
| 8904 | method public void setBlob(String, java.sql.Blob) throws java.sql.SQLException; |
| 8905 | method public void setBlob(String, java.io.InputStream) throws java.sql.SQLException; |
| 8906 | method public void setBoolean(String, boolean) throws java.sql.SQLException; |
| 8907 | method public void setByte(String, byte) throws java.sql.SQLException; |
| 8908 | method public void setBytes(String, byte[]) throws java.sql.SQLException; |
| 8909 | method public void setCharacterStream(String, java.io.Reader, int) throws java.sql.SQLException; |
| 8910 | method public void setCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException; |
| 8911 | method public void setCharacterStream(String, java.io.Reader) throws java.sql.SQLException; |
| 8912 | method public void setClob(String, java.io.Reader, long) throws java.sql.SQLException; |
| 8913 | method public void setClob(String, java.sql.Clob) throws java.sql.SQLException; |
| 8914 | method public void setClob(String, java.io.Reader) throws java.sql.SQLException; |
| 8915 | method public void setDate(String, java.sql.Date) throws java.sql.SQLException; |
| 8916 | method public void setDate(String, java.sql.Date, java.util.Calendar) throws java.sql.SQLException; |
| 8917 | method public void setDouble(String, double) throws java.sql.SQLException; |
| 8918 | method public void setFloat(String, float) throws java.sql.SQLException; |
| 8919 | method public void setInt(String, int) throws java.sql.SQLException; |
| 8920 | method public void setLong(String, long) throws java.sql.SQLException; |
| 8921 | method public void setNCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException; |
| 8922 | method public void setNCharacterStream(String, java.io.Reader) throws java.sql.SQLException; |
| 8923 | method public void setNClob(String, java.sql.NClob) throws java.sql.SQLException; |
| 8924 | method public void setNClob(String, java.io.Reader, long) throws java.sql.SQLException; |
| 8925 | method public void setNClob(String, java.io.Reader) throws java.sql.SQLException; |
| 8926 | method public void setNString(String, String) throws java.sql.SQLException; |
| 8927 | method public void setNull(String, int) throws java.sql.SQLException; |
| 8928 | method public void setNull(String, int, String) throws java.sql.SQLException; |
| 8929 | method public void setObject(String, Object, int, int) throws java.sql.SQLException; |
| 8930 | method public void setObject(String, Object, int) throws java.sql.SQLException; |
| 8931 | method public void setObject(String, Object) throws java.sql.SQLException; |
| 8932 | method public void setRowId(String, java.sql.RowId) throws java.sql.SQLException; |
| 8933 | method public void setSQLXML(String, java.sql.SQLXML) throws java.sql.SQLException; |
| 8934 | method public void setShort(String, short) throws java.sql.SQLException; |
| 8935 | method public void setString(String, String) throws java.sql.SQLException; |
| 8936 | method public void setTime(String, java.sql.Time) throws java.sql.SQLException; |
| 8937 | method public void setTime(String, java.sql.Time, java.util.Calendar) throws java.sql.SQLException; |
| 8938 | method public void setTimestamp(String, java.sql.Timestamp) throws java.sql.SQLException; |
| 8939 | method public void setTimestamp(String, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException; |
| 8940 | method public void setURL(String, java.net.URL) throws java.sql.SQLException; |
| 8941 | method public boolean wasNull() throws java.sql.SQLException; |
| 8942 | } |
| 8943 | |
| 8944 | public enum ClientInfoStatus { |
| 8945 | enum_constant public static final java.sql.ClientInfoStatus REASON_UNKNOWN; |
| 8946 | enum_constant public static final java.sql.ClientInfoStatus REASON_UNKNOWN_PROPERTY; |
| 8947 | enum_constant public static final java.sql.ClientInfoStatus REASON_VALUE_INVALID; |
| 8948 | enum_constant public static final java.sql.ClientInfoStatus REASON_VALUE_TRUNCATED; |
| 8949 | } |
| 8950 | |
| 8951 | public interface Clob { |
| 8952 | method public void free() throws java.sql.SQLException; |
| 8953 | method public java.io.InputStream getAsciiStream() throws java.sql.SQLException; |
| 8954 | method public java.io.Reader getCharacterStream() throws java.sql.SQLException; |
| 8955 | method public java.io.Reader getCharacterStream(long, long) throws java.sql.SQLException; |
| 8956 | method public String getSubString(long, int) throws java.sql.SQLException; |
| 8957 | method public long length() throws java.sql.SQLException; |
| 8958 | method public long position(String, long) throws java.sql.SQLException; |
| 8959 | method public long position(java.sql.Clob, long) throws java.sql.SQLException; |
| 8960 | method public java.io.OutputStream setAsciiStream(long) throws java.sql.SQLException; |
| 8961 | method public java.io.Writer setCharacterStream(long) throws java.sql.SQLException; |
| 8962 | method public int setString(long, String) throws java.sql.SQLException; |
| 8963 | method public int setString(long, String, int, int) throws java.sql.SQLException; |
| 8964 | method public void truncate(long) throws java.sql.SQLException; |
| 8965 | } |
| 8966 | |
| 8967 | public interface Connection extends java.sql.Wrapper java.lang.AutoCloseable { |
| 8968 | method public void clearWarnings() throws java.sql.SQLException; |
| 8969 | method public void close() throws java.sql.SQLException; |
| 8970 | method public void commit() throws java.sql.SQLException; |
| 8971 | method public java.sql.Array createArrayOf(String, Object[]) throws java.sql.SQLException; |
| 8972 | method public java.sql.Blob createBlob() throws java.sql.SQLException; |
| 8973 | method public java.sql.Clob createClob() throws java.sql.SQLException; |
| 8974 | method public java.sql.NClob createNClob() throws java.sql.SQLException; |
| 8975 | method public java.sql.SQLXML createSQLXML() throws java.sql.SQLException; |
| 8976 | method public java.sql.Statement createStatement() throws java.sql.SQLException; |
| 8977 | method public java.sql.Statement createStatement(int, int) throws java.sql.SQLException; |
| 8978 | method public java.sql.Statement createStatement(int, int, int) throws java.sql.SQLException; |
| 8979 | method public java.sql.Struct createStruct(String, Object[]) throws java.sql.SQLException; |
| 8980 | method public boolean getAutoCommit() throws java.sql.SQLException; |
| 8981 | method public String getCatalog() throws java.sql.SQLException; |
| 8982 | method public String getClientInfo(String) throws java.sql.SQLException; |
| 8983 | method public java.util.Properties getClientInfo() throws java.sql.SQLException; |
| 8984 | method public int getHoldability() throws java.sql.SQLException; |
| 8985 | method public java.sql.DatabaseMetaData getMetaData() throws java.sql.SQLException; |
| 8986 | method public int getTransactionIsolation() throws java.sql.SQLException; |
| 8987 | method public java.util.Map<java.lang.String,java.lang.Class<?>> getTypeMap() throws java.sql.SQLException; |
| 8988 | method public java.sql.SQLWarning getWarnings() throws java.sql.SQLException; |
| 8989 | method public boolean isClosed() throws java.sql.SQLException; |
| 8990 | method public boolean isReadOnly() throws java.sql.SQLException; |
| 8991 | method public boolean isValid(int) throws java.sql.SQLException; |
| 8992 | method public String nativeSQL(String) throws java.sql.SQLException; |
| 8993 | method public java.sql.CallableStatement prepareCall(String) throws java.sql.SQLException; |
| 8994 | method public java.sql.CallableStatement prepareCall(String, int, int) throws java.sql.SQLException; |
| 8995 | method public java.sql.CallableStatement prepareCall(String, int, int, int) throws java.sql.SQLException; |
| 8996 | method public java.sql.PreparedStatement prepareStatement(String) throws java.sql.SQLException; |
| 8997 | method public java.sql.PreparedStatement prepareStatement(String, int, int) throws java.sql.SQLException; |
| 8998 | method public java.sql.PreparedStatement prepareStatement(String, int, int, int) throws java.sql.SQLException; |
| 8999 | method public java.sql.PreparedStatement prepareStatement(String, int) throws java.sql.SQLException; |
| 9000 | method public java.sql.PreparedStatement prepareStatement(String, int[]) throws java.sql.SQLException; |
| 9001 | method public java.sql.PreparedStatement prepareStatement(String, String[]) throws java.sql.SQLException; |
| 9002 | method public void releaseSavepoint(java.sql.Savepoint) throws java.sql.SQLException; |
| 9003 | method public void rollback() throws java.sql.SQLException; |
| 9004 | method public void rollback(java.sql.Savepoint) throws java.sql.SQLException; |
| 9005 | method public void setAutoCommit(boolean) throws java.sql.SQLException; |
| 9006 | method public void setCatalog(String) throws java.sql.SQLException; |
| 9007 | method public void setClientInfo(String, String) throws java.sql.SQLClientInfoException; |
| 9008 | method public void setClientInfo(java.util.Properties) throws java.sql.SQLClientInfoException; |
| 9009 | method public void setHoldability(int) throws java.sql.SQLException; |
| 9010 | method public void setReadOnly(boolean) throws java.sql.SQLException; |
| 9011 | method public java.sql.Savepoint setSavepoint() throws java.sql.SQLException; |
| 9012 | method public java.sql.Savepoint setSavepoint(String) throws java.sql.SQLException; |
| 9013 | method public void setTransactionIsolation(int) throws java.sql.SQLException; |
| 9014 | method public void setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 9015 | field public static final int TRANSACTION_NONE = 0; // 0x0 |
| 9016 | field public static final int TRANSACTION_READ_COMMITTED = 2; // 0x2 |
| 9017 | field public static final int TRANSACTION_READ_UNCOMMITTED = 1; // 0x1 |
| 9018 | field public static final int TRANSACTION_REPEATABLE_READ = 4; // 0x4 |
| 9019 | field public static final int TRANSACTION_SERIALIZABLE = 8; // 0x8 |
| 9020 | } |
| 9021 | |
| 9022 | public class DataTruncation extends java.sql.SQLWarning { |
| 9023 | ctor public DataTruncation(int, boolean, boolean, int, int); |
| 9024 | ctor public DataTruncation(int, boolean, boolean, int, int, Throwable); |
| 9025 | method public int getDataSize(); |
| 9026 | method public int getIndex(); |
| 9027 | method public boolean getParameter(); |
| 9028 | method public boolean getRead(); |
| 9029 | method public int getTransferSize(); |
| 9030 | } |
| 9031 | |
| 9032 | public interface DatabaseMetaData extends java.sql.Wrapper { |
| 9033 | method public boolean allProceduresAreCallable() throws java.sql.SQLException; |
| 9034 | method public boolean allTablesAreSelectable() throws java.sql.SQLException; |
| 9035 | method public boolean autoCommitFailureClosesAllResultSets() throws java.sql.SQLException; |
| 9036 | method public boolean dataDefinitionCausesTransactionCommit() throws java.sql.SQLException; |
| 9037 | method public boolean dataDefinitionIgnoredInTransactions() throws java.sql.SQLException; |
| 9038 | method public boolean deletesAreDetected(int) throws java.sql.SQLException; |
| 9039 | method public boolean doesMaxRowSizeIncludeBlobs() throws java.sql.SQLException; |
| 9040 | method public java.sql.ResultSet getAttributes(String, String, String, String) throws java.sql.SQLException; |
| 9041 | method public java.sql.ResultSet getBestRowIdentifier(String, String, String, int, boolean) throws java.sql.SQLException; |
| 9042 | method public String getCatalogSeparator() throws java.sql.SQLException; |
| 9043 | method public String getCatalogTerm() throws java.sql.SQLException; |
| 9044 | method public java.sql.ResultSet getCatalogs() throws java.sql.SQLException; |
| 9045 | method public java.sql.ResultSet getClientInfoProperties() throws java.sql.SQLException; |
| 9046 | method public java.sql.ResultSet getColumnPrivileges(String, String, String, String) throws java.sql.SQLException; |
| 9047 | method public java.sql.ResultSet getColumns(String, String, String, String) throws java.sql.SQLException; |
| 9048 | method public java.sql.Connection getConnection() throws java.sql.SQLException; |
| 9049 | method public java.sql.ResultSet getCrossReference(String, String, String, String, String, String) throws java.sql.SQLException; |
| 9050 | method public int getDatabaseMajorVersion() throws java.sql.SQLException; |
| 9051 | method public int getDatabaseMinorVersion() throws java.sql.SQLException; |
| 9052 | method public String getDatabaseProductName() throws java.sql.SQLException; |
| 9053 | method public String getDatabaseProductVersion() throws java.sql.SQLException; |
| 9054 | method public int getDefaultTransactionIsolation() throws java.sql.SQLException; |
| 9055 | method public int getDriverMajorVersion(); |
| 9056 | method public int getDriverMinorVersion(); |
| 9057 | method public String getDriverName() throws java.sql.SQLException; |
| 9058 | method public String getDriverVersion() throws java.sql.SQLException; |
| 9059 | method public java.sql.ResultSet getExportedKeys(String, String, String) throws java.sql.SQLException; |
| 9060 | method public String getExtraNameCharacters() throws java.sql.SQLException; |
| 9061 | method public java.sql.ResultSet getFunctionColumns(String, String, String, String) throws java.sql.SQLException; |
| 9062 | method public java.sql.ResultSet getFunctions(String, String, String) throws java.sql.SQLException; |
| 9063 | method public String getIdentifierQuoteString() throws java.sql.SQLException; |
| 9064 | method public java.sql.ResultSet getImportedKeys(String, String, String) throws java.sql.SQLException; |
| 9065 | method public java.sql.ResultSet getIndexInfo(String, String, String, boolean, boolean) throws java.sql.SQLException; |
| 9066 | method public int getJDBCMajorVersion() throws java.sql.SQLException; |
| 9067 | method public int getJDBCMinorVersion() throws java.sql.SQLException; |
| 9068 | method public int getMaxBinaryLiteralLength() throws java.sql.SQLException; |
| 9069 | method public int getMaxCatalogNameLength() throws java.sql.SQLException; |
| 9070 | method public int getMaxCharLiteralLength() throws java.sql.SQLException; |
| 9071 | method public int getMaxColumnNameLength() throws java.sql.SQLException; |
| 9072 | method public int getMaxColumnsInGroupBy() throws java.sql.SQLException; |
| 9073 | method public int getMaxColumnsInIndex() throws java.sql.SQLException; |
| 9074 | method public int getMaxColumnsInOrderBy() throws java.sql.SQLException; |
| 9075 | method public int getMaxColumnsInSelect() throws java.sql.SQLException; |
| 9076 | method public int getMaxColumnsInTable() throws java.sql.SQLException; |
| 9077 | method public int getMaxConnections() throws java.sql.SQLException; |
| 9078 | method public int getMaxCursorNameLength() throws java.sql.SQLException; |
| 9079 | method public int getMaxIndexLength() throws java.sql.SQLException; |
| 9080 | method public int getMaxProcedureNameLength() throws java.sql.SQLException; |
| 9081 | method public int getMaxRowSize() throws java.sql.SQLException; |
| 9082 | method public int getMaxSchemaNameLength() throws java.sql.SQLException; |
| 9083 | method public int getMaxStatementLength() throws java.sql.SQLException; |
| 9084 | method public int getMaxStatements() throws java.sql.SQLException; |
| 9085 | method public int getMaxTableNameLength() throws java.sql.SQLException; |
| 9086 | method public int getMaxTablesInSelect() throws java.sql.SQLException; |
| 9087 | method public int getMaxUserNameLength() throws java.sql.SQLException; |
| 9088 | method public String getNumericFunctions() throws java.sql.SQLException; |
| 9089 | method public java.sql.ResultSet getPrimaryKeys(String, String, String) throws java.sql.SQLException; |
| 9090 | method public java.sql.ResultSet getProcedureColumns(String, String, String, String) throws java.sql.SQLException; |
| 9091 | method public String getProcedureTerm() throws java.sql.SQLException; |
| 9092 | method public java.sql.ResultSet getProcedures(String, String, String) throws java.sql.SQLException; |
| 9093 | method public int getResultSetHoldability() throws java.sql.SQLException; |
| 9094 | method public java.sql.RowIdLifetime getRowIdLifetime() throws java.sql.SQLException; |
| 9095 | method public String getSQLKeywords() throws java.sql.SQLException; |
| 9096 | method public int getSQLStateType() throws java.sql.SQLException; |
| 9097 | method public String getSchemaTerm() throws java.sql.SQLException; |
| 9098 | method public java.sql.ResultSet getSchemas() throws java.sql.SQLException; |
| 9099 | method public java.sql.ResultSet getSchemas(String, String) throws java.sql.SQLException; |
| 9100 | method public String getSearchStringEscape() throws java.sql.SQLException; |
| 9101 | method public String getStringFunctions() throws java.sql.SQLException; |
| 9102 | method public java.sql.ResultSet getSuperTables(String, String, String) throws java.sql.SQLException; |
| 9103 | method public java.sql.ResultSet getSuperTypes(String, String, String) throws java.sql.SQLException; |
| 9104 | method public String getSystemFunctions() throws java.sql.SQLException; |
| 9105 | method public java.sql.ResultSet getTablePrivileges(String, String, String) throws java.sql.SQLException; |
| 9106 | method public java.sql.ResultSet getTableTypes() throws java.sql.SQLException; |
| 9107 | method public java.sql.ResultSet getTables(String, String, String, String[]) throws java.sql.SQLException; |
| 9108 | method public String getTimeDateFunctions() throws java.sql.SQLException; |
| 9109 | method public java.sql.ResultSet getTypeInfo() throws java.sql.SQLException; |
| 9110 | method public java.sql.ResultSet getUDTs(String, String, String, int[]) throws java.sql.SQLException; |
| 9111 | method public String getURL() throws java.sql.SQLException; |
| 9112 | method public String getUserName() throws java.sql.SQLException; |
| 9113 | method public java.sql.ResultSet getVersionColumns(String, String, String) throws java.sql.SQLException; |
| 9114 | method public boolean insertsAreDetected(int) throws java.sql.SQLException; |
| 9115 | method public boolean isCatalogAtStart() throws java.sql.SQLException; |
| 9116 | method public boolean isReadOnly() throws java.sql.SQLException; |
| 9117 | method public boolean locatorsUpdateCopy() throws java.sql.SQLException; |
| 9118 | method public boolean nullPlusNonNullIsNull() throws java.sql.SQLException; |
| 9119 | method public boolean nullsAreSortedAtEnd() throws java.sql.SQLException; |
| 9120 | method public boolean nullsAreSortedAtStart() throws java.sql.SQLException; |
| 9121 | method public boolean nullsAreSortedHigh() throws java.sql.SQLException; |
| 9122 | method public boolean nullsAreSortedLow() throws java.sql.SQLException; |
| 9123 | method public boolean othersDeletesAreVisible(int) throws java.sql.SQLException; |
| 9124 | method public boolean othersInsertsAreVisible(int) throws java.sql.SQLException; |
| 9125 | method public boolean othersUpdatesAreVisible(int) throws java.sql.SQLException; |
| 9126 | method public boolean ownDeletesAreVisible(int) throws java.sql.SQLException; |
| 9127 | method public boolean ownInsertsAreVisible(int) throws java.sql.SQLException; |
| 9128 | method public boolean ownUpdatesAreVisible(int) throws java.sql.SQLException; |
| 9129 | method public boolean storesLowerCaseIdentifiers() throws java.sql.SQLException; |
| 9130 | method public boolean storesLowerCaseQuotedIdentifiers() throws java.sql.SQLException; |
| 9131 | method public boolean storesMixedCaseIdentifiers() throws java.sql.SQLException; |
| 9132 | method public boolean storesMixedCaseQuotedIdentifiers() throws java.sql.SQLException; |
| 9133 | method public boolean storesUpperCaseIdentifiers() throws java.sql.SQLException; |
| 9134 | method public boolean storesUpperCaseQuotedIdentifiers() throws java.sql.SQLException; |
| 9135 | method public boolean supportsANSI92EntryLevelSQL() throws java.sql.SQLException; |
| 9136 | method public boolean supportsANSI92FullSQL() throws java.sql.SQLException; |
| 9137 | method public boolean supportsANSI92IntermediateSQL() throws java.sql.SQLException; |
| 9138 | method public boolean supportsAlterTableWithAddColumn() throws java.sql.SQLException; |
| 9139 | method public boolean supportsAlterTableWithDropColumn() throws java.sql.SQLException; |
| 9140 | method public boolean supportsBatchUpdates() throws java.sql.SQLException; |
| 9141 | method public boolean supportsCatalogsInDataManipulation() throws java.sql.SQLException; |
| 9142 | method public boolean supportsCatalogsInIndexDefinitions() throws java.sql.SQLException; |
| 9143 | method public boolean supportsCatalogsInPrivilegeDefinitions() throws java.sql.SQLException; |
| 9144 | method public boolean supportsCatalogsInProcedureCalls() throws java.sql.SQLException; |
| 9145 | method public boolean supportsCatalogsInTableDefinitions() throws java.sql.SQLException; |
| 9146 | method public boolean supportsColumnAliasing() throws java.sql.SQLException; |
| 9147 | method public boolean supportsConvert() throws java.sql.SQLException; |
| 9148 | method public boolean supportsConvert(int, int) throws java.sql.SQLException; |
| 9149 | method public boolean supportsCoreSQLGrammar() throws java.sql.SQLException; |
| 9150 | method public boolean supportsCorrelatedSubqueries() throws java.sql.SQLException; |
| 9151 | method public boolean supportsDataDefinitionAndDataManipulationTransactions() throws java.sql.SQLException; |
| 9152 | method public boolean supportsDataManipulationTransactionsOnly() throws java.sql.SQLException; |
| 9153 | method public boolean supportsDifferentTableCorrelationNames() throws java.sql.SQLException; |
| 9154 | method public boolean supportsExpressionsInOrderBy() throws java.sql.SQLException; |
| 9155 | method public boolean supportsExtendedSQLGrammar() throws java.sql.SQLException; |
| 9156 | method public boolean supportsFullOuterJoins() throws java.sql.SQLException; |
| 9157 | method public boolean supportsGetGeneratedKeys() throws java.sql.SQLException; |
| 9158 | method public boolean supportsGroupBy() throws java.sql.SQLException; |
| 9159 | method public boolean supportsGroupByBeyondSelect() throws java.sql.SQLException; |
| 9160 | method public boolean supportsGroupByUnrelated() throws java.sql.SQLException; |
| 9161 | method public boolean supportsIntegrityEnhancementFacility() throws java.sql.SQLException; |
| 9162 | method public boolean supportsLikeEscapeClause() throws java.sql.SQLException; |
| 9163 | method public boolean supportsLimitedOuterJoins() throws java.sql.SQLException; |
| 9164 | method public boolean supportsMinimumSQLGrammar() throws java.sql.SQLException; |
| 9165 | method public boolean supportsMixedCaseIdentifiers() throws java.sql.SQLException; |
| 9166 | method public boolean supportsMixedCaseQuotedIdentifiers() throws java.sql.SQLException; |
| 9167 | method public boolean supportsMultipleOpenResults() throws java.sql.SQLException; |
| 9168 | method public boolean supportsMultipleResultSets() throws java.sql.SQLException; |
| 9169 | method public boolean supportsMultipleTransactions() throws java.sql.SQLException; |
| 9170 | method public boolean supportsNamedParameters() throws java.sql.SQLException; |
| 9171 | method public boolean supportsNonNullableColumns() throws java.sql.SQLException; |
| 9172 | method public boolean supportsOpenCursorsAcrossCommit() throws java.sql.SQLException; |
| 9173 | method public boolean supportsOpenCursorsAcrossRollback() throws java.sql.SQLException; |
| 9174 | method public boolean supportsOpenStatementsAcrossCommit() throws java.sql.SQLException; |
| 9175 | method public boolean supportsOpenStatementsAcrossRollback() throws java.sql.SQLException; |
| 9176 | method public boolean supportsOrderByUnrelated() throws java.sql.SQLException; |
| 9177 | method public boolean supportsOuterJoins() throws java.sql.SQLException; |
| 9178 | method public boolean supportsPositionedDelete() throws java.sql.SQLException; |
| 9179 | method public boolean supportsPositionedUpdate() throws java.sql.SQLException; |
| 9180 | method public boolean supportsResultSetConcurrency(int, int) throws java.sql.SQLException; |
| 9181 | method public boolean supportsResultSetHoldability(int) throws java.sql.SQLException; |
| 9182 | method public boolean supportsResultSetType(int) throws java.sql.SQLException; |
| 9183 | method public boolean supportsSavepoints() throws java.sql.SQLException; |
| 9184 | method public boolean supportsSchemasInDataManipulation() throws java.sql.SQLException; |
| 9185 | method public boolean supportsSchemasInIndexDefinitions() throws java.sql.SQLException; |
| 9186 | method public boolean supportsSchemasInPrivilegeDefinitions() throws java.sql.SQLException; |
| 9187 | method public boolean supportsSchemasInProcedureCalls() throws java.sql.SQLException; |
| 9188 | method public boolean supportsSchemasInTableDefinitions() throws java.sql.SQLException; |
| 9189 | method public boolean supportsSelectForUpdate() throws java.sql.SQLException; |
| 9190 | method public boolean supportsStatementPooling() throws java.sql.SQLException; |
| 9191 | method public boolean supportsStoredFunctionsUsingCallSyntax() throws java.sql.SQLException; |
| 9192 | method public boolean supportsStoredProcedures() throws java.sql.SQLException; |
| 9193 | method public boolean supportsSubqueriesInComparisons() throws java.sql.SQLException; |
| 9194 | method public boolean supportsSubqueriesInExists() throws java.sql.SQLException; |
| 9195 | method public boolean supportsSubqueriesInIns() throws java.sql.SQLException; |
| 9196 | method public boolean supportsSubqueriesInQuantifieds() throws java.sql.SQLException; |
| 9197 | method public boolean supportsTableCorrelationNames() throws java.sql.SQLException; |
| 9198 | method public boolean supportsTransactionIsolationLevel(int) throws java.sql.SQLException; |
| 9199 | method public boolean supportsTransactions() throws java.sql.SQLException; |
| 9200 | method public boolean supportsUnion() throws java.sql.SQLException; |
| 9201 | method public boolean supportsUnionAll() throws java.sql.SQLException; |
| 9202 | method public boolean updatesAreDetected(int) throws java.sql.SQLException; |
| 9203 | method public boolean usesLocalFilePerTable() throws java.sql.SQLException; |
| 9204 | method public boolean usesLocalFiles() throws java.sql.SQLException; |
| 9205 | field public static final short attributeNoNulls = 0; // 0x0 |
| 9206 | field public static final short attributeNullable = 1; // 0x1 |
| 9207 | field public static final short attributeNullableUnknown = 2; // 0x2 |
| 9208 | field public static final int bestRowNotPseudo = 1; // 0x1 |
| 9209 | field public static final int bestRowPseudo = 2; // 0x2 |
| 9210 | field public static final int bestRowSession = 2; // 0x2 |
| 9211 | field public static final int bestRowTemporary = 0; // 0x0 |
| 9212 | field public static final int bestRowTransaction = 1; // 0x1 |
| 9213 | field public static final int bestRowUnknown = 0; // 0x0 |
| 9214 | field public static final int columnNoNulls = 0; // 0x0 |
| 9215 | field public static final int columnNullable = 1; // 0x1 |
| 9216 | field public static final int columnNullableUnknown = 2; // 0x2 |
| 9217 | field public static final int functionColumnIn = 1; // 0x1 |
| 9218 | field public static final int functionColumnInOut = 2; // 0x2 |
| 9219 | field public static final int functionColumnOut = 3; // 0x3 |
| 9220 | field public static final int functionColumnResult = 5; // 0x5 |
| 9221 | field public static final int functionColumnUnknown = 0; // 0x0 |
| 9222 | field public static final int functionNoNulls = 0; // 0x0 |
| 9223 | field public static final int functionNoTable = 1; // 0x1 |
| 9224 | field public static final int functionNullable = 1; // 0x1 |
| 9225 | field public static final int functionNullableUnknown = 2; // 0x2 |
| 9226 | field public static final int functionResultUnknown = 0; // 0x0 |
| 9227 | field public static final int functionReturn = 4; // 0x4 |
| 9228 | field public static final int functionReturnsTable = 2; // 0x2 |
| 9229 | field public static final int importedKeyCascade = 0; // 0x0 |
| 9230 | field public static final int importedKeyInitiallyDeferred = 5; // 0x5 |
| 9231 | field public static final int importedKeyInitiallyImmediate = 6; // 0x6 |
| 9232 | field public static final int importedKeyNoAction = 3; // 0x3 |
| 9233 | field public static final int importedKeyNotDeferrable = 7; // 0x7 |
| 9234 | field public static final int importedKeyRestrict = 1; // 0x1 |
| 9235 | field public static final int importedKeySetDefault = 4; // 0x4 |
| 9236 | field public static final int importedKeySetNull = 2; // 0x2 |
| 9237 | field public static final int procedureColumnIn = 1; // 0x1 |
| 9238 | field public static final int procedureColumnInOut = 2; // 0x2 |
| 9239 | field public static final int procedureColumnOut = 4; // 0x4 |
| 9240 | field public static final int procedureColumnResult = 3; // 0x3 |
| 9241 | field public static final int procedureColumnReturn = 5; // 0x5 |
| 9242 | field public static final int procedureColumnUnknown = 0; // 0x0 |
| 9243 | field public static final int procedureNoNulls = 0; // 0x0 |
| 9244 | field public static final int procedureNoResult = 1; // 0x1 |
| 9245 | field public static final int procedureNullable = 1; // 0x1 |
| 9246 | field public static final int procedureNullableUnknown = 2; // 0x2 |
| 9247 | field public static final int procedureResultUnknown = 0; // 0x0 |
| 9248 | field public static final int procedureReturnsResult = 2; // 0x2 |
| 9249 | field public static final int sqlStateSQL = 2; // 0x2 |
| 9250 | field public static final int sqlStateSQL99 = 2; // 0x2 |
| 9251 | field public static final int sqlStateXOpen = 1; // 0x1 |
| 9252 | field public static final short tableIndexClustered = 1; // 0x1 |
| 9253 | field public static final short tableIndexHashed = 2; // 0x2 |
| 9254 | field public static final short tableIndexOther = 3; // 0x3 |
| 9255 | field public static final short tableIndexStatistic = 0; // 0x0 |
| 9256 | field public static final int typeNoNulls = 0; // 0x0 |
| 9257 | field public static final int typeNullable = 1; // 0x1 |
| 9258 | field public static final int typeNullableUnknown = 2; // 0x2 |
| 9259 | field public static final int typePredBasic = 2; // 0x2 |
| 9260 | field public static final int typePredChar = 1; // 0x1 |
| 9261 | field public static final int typePredNone = 0; // 0x0 |
| 9262 | field public static final int typeSearchable = 3; // 0x3 |
| 9263 | field public static final int versionColumnNotPseudo = 1; // 0x1 |
| 9264 | field public static final int versionColumnPseudo = 2; // 0x2 |
| 9265 | field public static final int versionColumnUnknown = 0; // 0x0 |
| 9266 | } |
| 9267 | |
| 9268 | public class Date extends java.util.Date { |
| 9269 | ctor @Deprecated public Date(int, int, int); |
| 9270 | ctor public Date(long); |
| 9271 | method public static java.sql.Date valueOf(String); |
| 9272 | } |
| 9273 | |
| 9274 | public interface Driver { |
| 9275 | method public boolean acceptsURL(String) throws java.sql.SQLException; |
| 9276 | method public java.sql.Connection connect(String, java.util.Properties) throws java.sql.SQLException; |
| 9277 | method public int getMajorVersion(); |
| 9278 | method public int getMinorVersion(); |
| 9279 | method public java.sql.DriverPropertyInfo[] getPropertyInfo(String, java.util.Properties) throws java.sql.SQLException; |
| 9280 | method public boolean jdbcCompliant(); |
| 9281 | } |
| 9282 | |
| 9283 | public class DriverManager { |
| 9284 | method public static void deregisterDriver(java.sql.Driver) throws java.sql.SQLException; |
| 9285 | method public static java.sql.Connection getConnection(String, java.util.Properties) throws java.sql.SQLException; |
| 9286 | method public static java.sql.Connection getConnection(String, String, String) throws java.sql.SQLException; |
| 9287 | method public static java.sql.Connection getConnection(String) throws java.sql.SQLException; |
| 9288 | method public static java.sql.Driver getDriver(String) throws java.sql.SQLException; |
| 9289 | method public static java.util.Enumeration<java.sql.Driver> getDrivers(); |
| 9290 | method @Deprecated public static java.io.PrintStream getLogStream(); |
| 9291 | method public static java.io.PrintWriter getLogWriter(); |
| 9292 | method public static int getLoginTimeout(); |
| 9293 | method public static void println(String); |
| 9294 | method public static void registerDriver(java.sql.Driver) throws java.sql.SQLException; |
| 9295 | method @Deprecated public static void setLogStream(java.io.PrintStream); |
| 9296 | method public static void setLogWriter(java.io.PrintWriter); |
| 9297 | method public static void setLoginTimeout(int); |
| 9298 | } |
| 9299 | |
| 9300 | public class DriverPropertyInfo { |
| 9301 | ctor public DriverPropertyInfo(String, String); |
| 9302 | field public String[] choices; |
| 9303 | field public String description; |
| 9304 | field public String name; |
| 9305 | field public boolean required; |
| 9306 | field public String value; |
| 9307 | } |
| 9308 | |
| 9309 | public interface NClob extends java.sql.Clob { |
| 9310 | } |
| 9311 | |
| 9312 | public interface ParameterMetaData extends java.sql.Wrapper { |
| 9313 | method public String getParameterClassName(int) throws java.sql.SQLException; |
| 9314 | method public int getParameterCount() throws java.sql.SQLException; |
| 9315 | method public int getParameterMode(int) throws java.sql.SQLException; |
| 9316 | method public int getParameterType(int) throws java.sql.SQLException; |
| 9317 | method public String getParameterTypeName(int) throws java.sql.SQLException; |
| 9318 | method public int getPrecision(int) throws java.sql.SQLException; |
| 9319 | method public int getScale(int) throws java.sql.SQLException; |
| 9320 | method public int isNullable(int) throws java.sql.SQLException; |
| 9321 | method public boolean isSigned(int) throws java.sql.SQLException; |
| 9322 | field public static final int parameterModeIn = 1; // 0x1 |
| 9323 | field public static final int parameterModeInOut = 2; // 0x2 |
| 9324 | field public static final int parameterModeOut = 4; // 0x4 |
| 9325 | field public static final int parameterModeUnknown = 0; // 0x0 |
| 9326 | field public static final int parameterNoNulls = 0; // 0x0 |
| 9327 | field public static final int parameterNullable = 1; // 0x1 |
| 9328 | field public static final int parameterNullableUnknown = 2; // 0x2 |
| 9329 | } |
| 9330 | |
| 9331 | public interface PreparedStatement extends java.sql.Statement { |
| 9332 | method public void addBatch() throws java.sql.SQLException; |
| 9333 | method public void clearParameters() throws java.sql.SQLException; |
| 9334 | method public boolean execute() throws java.sql.SQLException; |
| 9335 | method public java.sql.ResultSet executeQuery() throws java.sql.SQLException; |
| 9336 | method public int executeUpdate() throws java.sql.SQLException; |
| 9337 | method public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException; |
| 9338 | method public java.sql.ParameterMetaData getParameterMetaData() throws java.sql.SQLException; |
| 9339 | method public void setArray(int, java.sql.Array) throws java.sql.SQLException; |
| 9340 | method public void setAsciiStream(int, java.io.InputStream, int) throws java.sql.SQLException; |
| 9341 | method public void setAsciiStream(int, java.io.InputStream, long) throws java.sql.SQLException; |
| 9342 | method public void setAsciiStream(int, java.io.InputStream) throws java.sql.SQLException; |
| 9343 | method public void setBigDecimal(int, java.math.BigDecimal) throws java.sql.SQLException; |
| 9344 | method public void setBinaryStream(int, java.io.InputStream, int) throws java.sql.SQLException; |
| 9345 | method public void setBinaryStream(int, java.io.InputStream, long) throws java.sql.SQLException; |
| 9346 | method public void setBinaryStream(int, java.io.InputStream) throws java.sql.SQLException; |
| 9347 | method public void setBlob(int, java.sql.Blob) throws java.sql.SQLException; |
| 9348 | method public void setBlob(int, java.io.InputStream, long) throws java.sql.SQLException; |
| 9349 | method public void setBlob(int, java.io.InputStream) throws java.sql.SQLException; |
| 9350 | method public void setBoolean(int, boolean) throws java.sql.SQLException; |
| 9351 | method public void setByte(int, byte) throws java.sql.SQLException; |
| 9352 | method public void setBytes(int, byte[]) throws java.sql.SQLException; |
| 9353 | method public void setCharacterStream(int, java.io.Reader, int) throws java.sql.SQLException; |
| 9354 | method public void setCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9355 | method public void setCharacterStream(int, java.io.Reader) throws java.sql.SQLException; |
| 9356 | method public void setClob(int, java.sql.Clob) throws java.sql.SQLException; |
| 9357 | method public void setClob(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9358 | method public void setClob(int, java.io.Reader) throws java.sql.SQLException; |
| 9359 | method public void setDate(int, java.sql.Date) throws java.sql.SQLException; |
| 9360 | method public void setDate(int, java.sql.Date, java.util.Calendar) throws java.sql.SQLException; |
| 9361 | method public void setDouble(int, double) throws java.sql.SQLException; |
| 9362 | method public void setFloat(int, float) throws java.sql.SQLException; |
| 9363 | method public void setInt(int, int) throws java.sql.SQLException; |
| 9364 | method public void setLong(int, long) throws java.sql.SQLException; |
| 9365 | method public void setNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9366 | method public void setNCharacterStream(int, java.io.Reader) throws java.sql.SQLException; |
| 9367 | method public void setNClob(int, java.sql.NClob) throws java.sql.SQLException; |
| 9368 | method public void setNClob(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9369 | method public void setNClob(int, java.io.Reader) throws java.sql.SQLException; |
| 9370 | method public void setNString(int, String) throws java.sql.SQLException; |
| 9371 | method public void setNull(int, int) throws java.sql.SQLException; |
| 9372 | method public void setNull(int, int, String) throws java.sql.SQLException; |
| 9373 | method public void setObject(int, Object, int) throws java.sql.SQLException; |
| 9374 | method public void setObject(int, Object) throws java.sql.SQLException; |
| 9375 | method public void setObject(int, Object, int, int) throws java.sql.SQLException; |
| 9376 | method public void setRef(int, java.sql.Ref) throws java.sql.SQLException; |
| 9377 | method public void setRowId(int, java.sql.RowId) throws java.sql.SQLException; |
| 9378 | method public void setSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException; |
| 9379 | method public void setShort(int, short) throws java.sql.SQLException; |
| 9380 | method public void setString(int, String) throws java.sql.SQLException; |
| 9381 | method public void setTime(int, java.sql.Time) throws java.sql.SQLException; |
| 9382 | method public void setTime(int, java.sql.Time, java.util.Calendar) throws java.sql.SQLException; |
| 9383 | method public void setTimestamp(int, java.sql.Timestamp) throws java.sql.SQLException; |
| 9384 | method public void setTimestamp(int, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException; |
| 9385 | method public void setURL(int, java.net.URL) throws java.sql.SQLException; |
| 9386 | method @Deprecated public void setUnicodeStream(int, java.io.InputStream, int) throws java.sql.SQLException; |
| 9387 | } |
| 9388 | |
| 9389 | public interface Ref { |
| 9390 | method public String getBaseTypeName() throws java.sql.SQLException; |
| 9391 | method public Object getObject(java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 9392 | method public Object getObject() throws java.sql.SQLException; |
| 9393 | method public void setObject(Object) throws java.sql.SQLException; |
| 9394 | } |
| 9395 | |
| 9396 | public interface ResultSet extends java.sql.Wrapper java.lang.AutoCloseable { |
| 9397 | method public boolean absolute(int) throws java.sql.SQLException; |
| 9398 | method public void afterLast() throws java.sql.SQLException; |
| 9399 | method public void beforeFirst() throws java.sql.SQLException; |
| 9400 | method public void cancelRowUpdates() throws java.sql.SQLException; |
| 9401 | method public void clearWarnings() throws java.sql.SQLException; |
| 9402 | method public void close() throws java.sql.SQLException; |
| 9403 | method public void deleteRow() throws java.sql.SQLException; |
| 9404 | method public int findColumn(String) throws java.sql.SQLException; |
| 9405 | method public boolean first() throws java.sql.SQLException; |
| 9406 | method public java.sql.Array getArray(int) throws java.sql.SQLException; |
| 9407 | method public java.sql.Array getArray(String) throws java.sql.SQLException; |
| 9408 | method public java.io.InputStream getAsciiStream(int) throws java.sql.SQLException; |
| 9409 | method public java.io.InputStream getAsciiStream(String) throws java.sql.SQLException; |
| 9410 | method @Deprecated public java.math.BigDecimal getBigDecimal(int, int) throws java.sql.SQLException; |
| 9411 | method @Deprecated public java.math.BigDecimal getBigDecimal(String, int) throws java.sql.SQLException; |
| 9412 | method public java.math.BigDecimal getBigDecimal(int) throws java.sql.SQLException; |
| 9413 | method public java.math.BigDecimal getBigDecimal(String) throws java.sql.SQLException; |
| 9414 | method public java.io.InputStream getBinaryStream(int) throws java.sql.SQLException; |
| 9415 | method public java.io.InputStream getBinaryStream(String) throws java.sql.SQLException; |
| 9416 | method public java.sql.Blob getBlob(int) throws java.sql.SQLException; |
| 9417 | method public java.sql.Blob getBlob(String) throws java.sql.SQLException; |
| 9418 | method public boolean getBoolean(int) throws java.sql.SQLException; |
| 9419 | method public boolean getBoolean(String) throws java.sql.SQLException; |
| 9420 | method public byte getByte(int) throws java.sql.SQLException; |
| 9421 | method public byte getByte(String) throws java.sql.SQLException; |
| 9422 | method public byte[] getBytes(int) throws java.sql.SQLException; |
| 9423 | method public byte[] getBytes(String) throws java.sql.SQLException; |
| 9424 | method public java.io.Reader getCharacterStream(int) throws java.sql.SQLException; |
| 9425 | method public java.io.Reader getCharacterStream(String) throws java.sql.SQLException; |
| 9426 | method public java.sql.Clob getClob(int) throws java.sql.SQLException; |
| 9427 | method public java.sql.Clob getClob(String) throws java.sql.SQLException; |
| 9428 | method public int getConcurrency() throws java.sql.SQLException; |
| 9429 | method public String getCursorName() throws java.sql.SQLException; |
| 9430 | method public java.sql.Date getDate(int) throws java.sql.SQLException; |
| 9431 | method public java.sql.Date getDate(String) throws java.sql.SQLException; |
| 9432 | method public java.sql.Date getDate(int, java.util.Calendar) throws java.sql.SQLException; |
| 9433 | method public java.sql.Date getDate(String, java.util.Calendar) throws java.sql.SQLException; |
| 9434 | method public double getDouble(int) throws java.sql.SQLException; |
| 9435 | method public double getDouble(String) throws java.sql.SQLException; |
| 9436 | method public int getFetchDirection() throws java.sql.SQLException; |
| 9437 | method public int getFetchSize() throws java.sql.SQLException; |
| 9438 | method public float getFloat(int) throws java.sql.SQLException; |
| 9439 | method public float getFloat(String) throws java.sql.SQLException; |
| 9440 | method public int getHoldability() throws java.sql.SQLException; |
| 9441 | method public int getInt(int) throws java.sql.SQLException; |
| 9442 | method public int getInt(String) throws java.sql.SQLException; |
| 9443 | method public long getLong(int) throws java.sql.SQLException; |
| 9444 | method public long getLong(String) throws java.sql.SQLException; |
| 9445 | method public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException; |
| 9446 | method public java.io.Reader getNCharacterStream(int) throws java.sql.SQLException; |
| 9447 | method public java.io.Reader getNCharacterStream(String) throws java.sql.SQLException; |
| 9448 | method public java.sql.NClob getNClob(int) throws java.sql.SQLException; |
| 9449 | method public java.sql.NClob getNClob(String) throws java.sql.SQLException; |
| 9450 | method public String getNString(int) throws java.sql.SQLException; |
| 9451 | method public String getNString(String) throws java.sql.SQLException; |
| 9452 | method public Object getObject(int) throws java.sql.SQLException; |
| 9453 | method public Object getObject(String) throws java.sql.SQLException; |
| 9454 | method public Object getObject(int, java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 9455 | method public Object getObject(String, java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 9456 | method public java.sql.Ref getRef(int) throws java.sql.SQLException; |
| 9457 | method public java.sql.Ref getRef(String) throws java.sql.SQLException; |
| 9458 | method public int getRow() throws java.sql.SQLException; |
| 9459 | method public java.sql.RowId getRowId(int) throws java.sql.SQLException; |
| 9460 | method public java.sql.RowId getRowId(String) throws java.sql.SQLException; |
| 9461 | method public java.sql.SQLXML getSQLXML(int) throws java.sql.SQLException; |
| 9462 | method public java.sql.SQLXML getSQLXML(String) throws java.sql.SQLException; |
| 9463 | method public short getShort(int) throws java.sql.SQLException; |
| 9464 | method public short getShort(String) throws java.sql.SQLException; |
| 9465 | method public java.sql.Statement getStatement() throws java.sql.SQLException; |
| 9466 | method public String getString(int) throws java.sql.SQLException; |
| 9467 | method public String getString(String) throws java.sql.SQLException; |
| 9468 | method public java.sql.Time getTime(int) throws java.sql.SQLException; |
| 9469 | method public java.sql.Time getTime(String) throws java.sql.SQLException; |
| 9470 | method public java.sql.Time getTime(int, java.util.Calendar) throws java.sql.SQLException; |
| 9471 | method public java.sql.Time getTime(String, java.util.Calendar) throws java.sql.SQLException; |
| 9472 | method public java.sql.Timestamp getTimestamp(int) throws java.sql.SQLException; |
| 9473 | method public java.sql.Timestamp getTimestamp(String) throws java.sql.SQLException; |
| 9474 | method public java.sql.Timestamp getTimestamp(int, java.util.Calendar) throws java.sql.SQLException; |
| 9475 | method public java.sql.Timestamp getTimestamp(String, java.util.Calendar) throws java.sql.SQLException; |
| 9476 | method public int getType() throws java.sql.SQLException; |
| 9477 | method public java.net.URL getURL(int) throws java.sql.SQLException; |
| 9478 | method public java.net.URL getURL(String) throws java.sql.SQLException; |
| 9479 | method @Deprecated public java.io.InputStream getUnicodeStream(int) throws java.sql.SQLException; |
| 9480 | method @Deprecated public java.io.InputStream getUnicodeStream(String) throws java.sql.SQLException; |
| 9481 | method public java.sql.SQLWarning getWarnings() throws java.sql.SQLException; |
| 9482 | method public void insertRow() throws java.sql.SQLException; |
| 9483 | method public boolean isAfterLast() throws java.sql.SQLException; |
| 9484 | method public boolean isBeforeFirst() throws java.sql.SQLException; |
| 9485 | method public boolean isClosed() throws java.sql.SQLException; |
| 9486 | method public boolean isFirst() throws java.sql.SQLException; |
| 9487 | method public boolean isLast() throws java.sql.SQLException; |
| 9488 | method public boolean last() throws java.sql.SQLException; |
| 9489 | method public void moveToCurrentRow() throws java.sql.SQLException; |
| 9490 | method public void moveToInsertRow() throws java.sql.SQLException; |
| 9491 | method public boolean next() throws java.sql.SQLException; |
| 9492 | method public boolean previous() throws java.sql.SQLException; |
| 9493 | method public void refreshRow() throws java.sql.SQLException; |
| 9494 | method public boolean relative(int) throws java.sql.SQLException; |
| 9495 | method public boolean rowDeleted() throws java.sql.SQLException; |
| 9496 | method public boolean rowInserted() throws java.sql.SQLException; |
| 9497 | method public boolean rowUpdated() throws java.sql.SQLException; |
| 9498 | method public void setFetchDirection(int) throws java.sql.SQLException; |
| 9499 | method public void setFetchSize(int) throws java.sql.SQLException; |
| 9500 | method public void updateArray(int, java.sql.Array) throws java.sql.SQLException; |
| 9501 | method public void updateArray(String, java.sql.Array) throws java.sql.SQLException; |
| 9502 | method public void updateAsciiStream(int, java.io.InputStream, int) throws java.sql.SQLException; |
| 9503 | method public void updateAsciiStream(String, java.io.InputStream, int) throws java.sql.SQLException; |
| 9504 | method public void updateAsciiStream(int, java.io.InputStream, long) throws java.sql.SQLException; |
| 9505 | method public void updateAsciiStream(String, java.io.InputStream, long) throws java.sql.SQLException; |
| 9506 | method public void updateAsciiStream(int, java.io.InputStream) throws java.sql.SQLException; |
| 9507 | method public void updateAsciiStream(String, java.io.InputStream) throws java.sql.SQLException; |
| 9508 | method public void updateBigDecimal(int, java.math.BigDecimal) throws java.sql.SQLException; |
| 9509 | method public void updateBigDecimal(String, java.math.BigDecimal) throws java.sql.SQLException; |
| 9510 | method public void updateBinaryStream(int, java.io.InputStream, int) throws java.sql.SQLException; |
| 9511 | method public void updateBinaryStream(String, java.io.InputStream, int) throws java.sql.SQLException; |
| 9512 | method public void updateBinaryStream(int, java.io.InputStream, long) throws java.sql.SQLException; |
| 9513 | method public void updateBinaryStream(String, java.io.InputStream, long) throws java.sql.SQLException; |
| 9514 | method public void updateBinaryStream(int, java.io.InputStream) throws java.sql.SQLException; |
| 9515 | method public void updateBinaryStream(String, java.io.InputStream) throws java.sql.SQLException; |
| 9516 | method public void updateBlob(int, java.sql.Blob) throws java.sql.SQLException; |
| 9517 | method public void updateBlob(String, java.sql.Blob) throws java.sql.SQLException; |
| 9518 | method public void updateBlob(int, java.io.InputStream, long) throws java.sql.SQLException; |
| 9519 | method public void updateBlob(String, java.io.InputStream, long) throws java.sql.SQLException; |
| 9520 | method public void updateBlob(int, java.io.InputStream) throws java.sql.SQLException; |
| 9521 | method public void updateBlob(String, java.io.InputStream) throws java.sql.SQLException; |
| 9522 | method public void updateBoolean(int, boolean) throws java.sql.SQLException; |
| 9523 | method public void updateBoolean(String, boolean) throws java.sql.SQLException; |
| 9524 | method public void updateByte(int, byte) throws java.sql.SQLException; |
| 9525 | method public void updateByte(String, byte) throws java.sql.SQLException; |
| 9526 | method public void updateBytes(int, byte[]) throws java.sql.SQLException; |
| 9527 | method public void updateBytes(String, byte[]) throws java.sql.SQLException; |
| 9528 | method public void updateCharacterStream(int, java.io.Reader, int) throws java.sql.SQLException; |
| 9529 | method public void updateCharacterStream(String, java.io.Reader, int) throws java.sql.SQLException; |
| 9530 | method public void updateCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9531 | method public void updateCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException; |
| 9532 | method public void updateCharacterStream(int, java.io.Reader) throws java.sql.SQLException; |
| 9533 | method public void updateCharacterStream(String, java.io.Reader) throws java.sql.SQLException; |
| 9534 | method public void updateClob(int, java.sql.Clob) throws java.sql.SQLException; |
| 9535 | method public void updateClob(String, java.sql.Clob) throws java.sql.SQLException; |
| 9536 | method public void updateClob(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9537 | method public void updateClob(String, java.io.Reader, long) throws java.sql.SQLException; |
| 9538 | method public void updateClob(int, java.io.Reader) throws java.sql.SQLException; |
| 9539 | method public void updateClob(String, java.io.Reader) throws java.sql.SQLException; |
| 9540 | method public void updateDate(int, java.sql.Date) throws java.sql.SQLException; |
| 9541 | method public void updateDate(String, java.sql.Date) throws java.sql.SQLException; |
| 9542 | method public void updateDouble(int, double) throws java.sql.SQLException; |
| 9543 | method public void updateDouble(String, double) throws java.sql.SQLException; |
| 9544 | method public void updateFloat(int, float) throws java.sql.SQLException; |
| 9545 | method public void updateFloat(String, float) throws java.sql.SQLException; |
| 9546 | method public void updateInt(int, int) throws java.sql.SQLException; |
| 9547 | method public void updateInt(String, int) throws java.sql.SQLException; |
| 9548 | method public void updateLong(int, long) throws java.sql.SQLException; |
| 9549 | method public void updateLong(String, long) throws java.sql.SQLException; |
| 9550 | method public void updateNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9551 | method public void updateNCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException; |
| 9552 | method public void updateNCharacterStream(int, java.io.Reader) throws java.sql.SQLException; |
| 9553 | method public void updateNCharacterStream(String, java.io.Reader) throws java.sql.SQLException; |
| 9554 | method public void updateNClob(int, java.sql.NClob) throws java.sql.SQLException; |
| 9555 | method public void updateNClob(String, java.sql.NClob) throws java.sql.SQLException; |
| 9556 | method public void updateNClob(int, java.io.Reader, long) throws java.sql.SQLException; |
| 9557 | method public void updateNClob(String, java.io.Reader, long) throws java.sql.SQLException; |
| 9558 | method public void updateNClob(int, java.io.Reader) throws java.sql.SQLException; |
| 9559 | method public void updateNClob(String, java.io.Reader) throws java.sql.SQLException; |
| 9560 | method public void updateNString(int, String) throws java.sql.SQLException; |
| 9561 | method public void updateNString(String, String) throws java.sql.SQLException; |
| 9562 | method public void updateNull(int) throws java.sql.SQLException; |
| 9563 | method public void updateNull(String) throws java.sql.SQLException; |
| 9564 | method public void updateObject(int, Object, int) throws java.sql.SQLException; |
| 9565 | method public void updateObject(int, Object) throws java.sql.SQLException; |
| 9566 | method public void updateObject(String, Object, int) throws java.sql.SQLException; |
| 9567 | method public void updateObject(String, Object) throws java.sql.SQLException; |
| 9568 | method public void updateRef(int, java.sql.Ref) throws java.sql.SQLException; |
| 9569 | method public void updateRef(String, java.sql.Ref) throws java.sql.SQLException; |
| 9570 | method public void updateRow() throws java.sql.SQLException; |
| 9571 | method public void updateRowId(int, java.sql.RowId) throws java.sql.SQLException; |
| 9572 | method public void updateRowId(String, java.sql.RowId) throws java.sql.SQLException; |
| 9573 | method public void updateSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException; |
| 9574 | method public void updateSQLXML(String, java.sql.SQLXML) throws java.sql.SQLException; |
| 9575 | method public void updateShort(int, short) throws java.sql.SQLException; |
| 9576 | method public void updateShort(String, short) throws java.sql.SQLException; |
| 9577 | method public void updateString(int, String) throws java.sql.SQLException; |
| 9578 | method public void updateString(String, String) throws java.sql.SQLException; |
| 9579 | method public void updateTime(int, java.sql.Time) throws java.sql.SQLException; |
| 9580 | method public void updateTime(String, java.sql.Time) throws java.sql.SQLException; |
| 9581 | method public void updateTimestamp(int, java.sql.Timestamp) throws java.sql.SQLException; |
| 9582 | method public void updateTimestamp(String, java.sql.Timestamp) throws java.sql.SQLException; |
| 9583 | method public boolean wasNull() throws java.sql.SQLException; |
| 9584 | field public static final int CLOSE_CURSORS_AT_COMMIT = 2; // 0x2 |
| 9585 | field public static final int CONCUR_READ_ONLY = 1007; // 0x3ef |
| 9586 | field public static final int CONCUR_UPDATABLE = 1008; // 0x3f0 |
| 9587 | field public static final int FETCH_FORWARD = 1000; // 0x3e8 |
| 9588 | field public static final int FETCH_REVERSE = 1001; // 0x3e9 |
| 9589 | field public static final int FETCH_UNKNOWN = 1002; // 0x3ea |
| 9590 | field public static final int HOLD_CURSORS_OVER_COMMIT = 1; // 0x1 |
| 9591 | field public static final int TYPE_FORWARD_ONLY = 1003; // 0x3eb |
| 9592 | field public static final int TYPE_SCROLL_INSENSITIVE = 1004; // 0x3ec |
| 9593 | field public static final int TYPE_SCROLL_SENSITIVE = 1005; // 0x3ed |
| 9594 | } |
| 9595 | |
| 9596 | public interface ResultSetMetaData extends java.sql.Wrapper { |
| 9597 | method public String getCatalogName(int) throws java.sql.SQLException; |
| 9598 | method public String getColumnClassName(int) throws java.sql.SQLException; |
| 9599 | method public int getColumnCount() throws java.sql.SQLException; |
| 9600 | method public int getColumnDisplaySize(int) throws java.sql.SQLException; |
| 9601 | method public String getColumnLabel(int) throws java.sql.SQLException; |
| 9602 | method public String getColumnName(int) throws java.sql.SQLException; |
| 9603 | method public int getColumnType(int) throws java.sql.SQLException; |
| 9604 | method public String getColumnTypeName(int) throws java.sql.SQLException; |
| 9605 | method public int getPrecision(int) throws java.sql.SQLException; |
| 9606 | method public int getScale(int) throws java.sql.SQLException; |
| 9607 | method public String getSchemaName(int) throws java.sql.SQLException; |
| 9608 | method public String getTableName(int) throws java.sql.SQLException; |
| 9609 | method public boolean isAutoIncrement(int) throws java.sql.SQLException; |
| 9610 | method public boolean isCaseSensitive(int) throws java.sql.SQLException; |
| 9611 | method public boolean isCurrency(int) throws java.sql.SQLException; |
| 9612 | method public boolean isDefinitelyWritable(int) throws java.sql.SQLException; |
| 9613 | method public int isNullable(int) throws java.sql.SQLException; |
| 9614 | method public boolean isReadOnly(int) throws java.sql.SQLException; |
| 9615 | method public boolean isSearchable(int) throws java.sql.SQLException; |
| 9616 | method public boolean isSigned(int) throws java.sql.SQLException; |
| 9617 | method public boolean isWritable(int) throws java.sql.SQLException; |
| 9618 | field public static final int columnNoNulls = 0; // 0x0 |
| 9619 | field public static final int columnNullable = 1; // 0x1 |
| 9620 | field public static final int columnNullableUnknown = 2; // 0x2 |
| 9621 | } |
| 9622 | |
| 9623 | public interface RowId { |
| 9624 | method public boolean equals(Object); |
| 9625 | method public byte[] getBytes(); |
| 9626 | method public int hashCode(); |
| 9627 | method public String toString(); |
| 9628 | } |
| 9629 | |
| 9630 | public enum RowIdLifetime { |
| 9631 | enum_constant public static final java.sql.RowIdLifetime ROWID_UNSUPPORTED; |
| 9632 | enum_constant public static final java.sql.RowIdLifetime ROWID_VALID_FOREVER; |
| 9633 | enum_constant public static final java.sql.RowIdLifetime ROWID_VALID_OTHER; |
| 9634 | enum_constant public static final java.sql.RowIdLifetime ROWID_VALID_SESSION; |
| 9635 | enum_constant public static final java.sql.RowIdLifetime ROWID_VALID_TRANSACTION; |
| 9636 | } |
| 9637 | |
| 9638 | public class SQLClientInfoException extends java.sql.SQLException { |
| 9639 | ctor public SQLClientInfoException(); |
| 9640 | ctor public SQLClientInfoException(java.util.Map<java.lang.String,java.sql.ClientInfoStatus>); |
| 9641 | ctor public SQLClientInfoException(java.util.Map<java.lang.String,java.sql.ClientInfoStatus>, Throwable); |
| 9642 | ctor public SQLClientInfoException(String, java.util.Map<java.lang.String,java.sql.ClientInfoStatus>); |
| 9643 | ctor public SQLClientInfoException(String, java.util.Map<java.lang.String,java.sql.ClientInfoStatus>, Throwable); |
| 9644 | ctor public SQLClientInfoException(String, String, java.util.Map<java.lang.String,java.sql.ClientInfoStatus>); |
| 9645 | ctor public SQLClientInfoException(String, String, java.util.Map<java.lang.String,java.sql.ClientInfoStatus>, Throwable); |
| 9646 | ctor public SQLClientInfoException(String, String, int, java.util.Map<java.lang.String,java.sql.ClientInfoStatus>); |
| 9647 | ctor public SQLClientInfoException(String, String, int, java.util.Map<java.lang.String,java.sql.ClientInfoStatus>, Throwable); |
| 9648 | method public java.util.Map<java.lang.String,java.sql.ClientInfoStatus> getFailedProperties(); |
| 9649 | } |
| 9650 | |
| 9651 | public interface SQLData { |
| 9652 | method public String getSQLTypeName() throws java.sql.SQLException; |
| 9653 | method public void readSQL(java.sql.SQLInput, String) throws java.sql.SQLException; |
| 9654 | method public void writeSQL(java.sql.SQLOutput) throws java.sql.SQLException; |
| 9655 | } |
| 9656 | |
| 9657 | public class SQLDataException extends java.sql.SQLNonTransientException { |
| 9658 | ctor public SQLDataException(); |
| 9659 | ctor public SQLDataException(String); |
| 9660 | ctor public SQLDataException(String, String); |
| 9661 | ctor public SQLDataException(String, String, int); |
| 9662 | ctor public SQLDataException(Throwable); |
| 9663 | ctor public SQLDataException(String, Throwable); |
| 9664 | ctor public SQLDataException(String, String, Throwable); |
| 9665 | ctor public SQLDataException(String, String, int, Throwable); |
| 9666 | } |
| 9667 | |
| 9668 | public class SQLException extends java.lang.Exception implements java.lang.Iterable<java.lang.Throwable> { |
| 9669 | ctor public SQLException(String, String, int); |
| 9670 | ctor public SQLException(String, String); |
| 9671 | ctor public SQLException(String); |
| 9672 | ctor public SQLException(); |
| 9673 | ctor public SQLException(Throwable); |
| 9674 | ctor public SQLException(String, Throwable); |
| 9675 | ctor public SQLException(String, String, Throwable); |
| 9676 | ctor public SQLException(String, String, int, Throwable); |
| 9677 | method public int getErrorCode(); |
| 9678 | method public java.sql.SQLException getNextException(); |
| 9679 | method public String getSQLState(); |
| 9680 | method public java.util.Iterator<java.lang.Throwable> iterator(); |
| 9681 | method public void setNextException(java.sql.SQLException); |
| 9682 | } |
| 9683 | |
| 9684 | public class SQLFeatureNotSupportedException extends java.sql.SQLNonTransientException { |
| 9685 | ctor public SQLFeatureNotSupportedException(); |
| 9686 | ctor public SQLFeatureNotSupportedException(String); |
| 9687 | ctor public SQLFeatureNotSupportedException(String, String); |
| 9688 | ctor public SQLFeatureNotSupportedException(String, String, int); |
| 9689 | ctor public SQLFeatureNotSupportedException(Throwable); |
| 9690 | ctor public SQLFeatureNotSupportedException(String, Throwable); |
| 9691 | ctor public SQLFeatureNotSupportedException(String, String, Throwable); |
| 9692 | ctor public SQLFeatureNotSupportedException(String, String, int, Throwable); |
| 9693 | } |
| 9694 | |
| 9695 | public interface SQLInput { |
| 9696 | method public java.sql.Array readArray() throws java.sql.SQLException; |
| 9697 | method public java.io.InputStream readAsciiStream() throws java.sql.SQLException; |
| 9698 | method public java.math.BigDecimal readBigDecimal() throws java.sql.SQLException; |
| 9699 | method public java.io.InputStream readBinaryStream() throws java.sql.SQLException; |
| 9700 | method public java.sql.Blob readBlob() throws java.sql.SQLException; |
| 9701 | method public boolean readBoolean() throws java.sql.SQLException; |
| 9702 | method public byte readByte() throws java.sql.SQLException; |
| 9703 | method public byte[] readBytes() throws java.sql.SQLException; |
| 9704 | method public java.io.Reader readCharacterStream() throws java.sql.SQLException; |
| 9705 | method public java.sql.Clob readClob() throws java.sql.SQLException; |
| 9706 | method public java.sql.Date readDate() throws java.sql.SQLException; |
| 9707 | method public double readDouble() throws java.sql.SQLException; |
| 9708 | method public float readFloat() throws java.sql.SQLException; |
| 9709 | method public int readInt() throws java.sql.SQLException; |
| 9710 | method public long readLong() throws java.sql.SQLException; |
| 9711 | method public java.sql.NClob readNClob() throws java.sql.SQLException; |
| 9712 | method public String readNString() throws java.sql.SQLException; |
| 9713 | method public Object readObject() throws java.sql.SQLException; |
| 9714 | method public java.sql.Ref readRef() throws java.sql.SQLException; |
| 9715 | method public java.sql.RowId readRowId() throws java.sql.SQLException; |
| 9716 | method public java.sql.SQLXML readSQLXML() throws java.sql.SQLException; |
| 9717 | method public short readShort() throws java.sql.SQLException; |
| 9718 | method public String readString() throws java.sql.SQLException; |
| 9719 | method public java.sql.Time readTime() throws java.sql.SQLException; |
| 9720 | method public java.sql.Timestamp readTimestamp() throws java.sql.SQLException; |
| 9721 | method public java.net.URL readURL() throws java.sql.SQLException; |
| 9722 | method public boolean wasNull() throws java.sql.SQLException; |
| 9723 | } |
| 9724 | |
| 9725 | public class SQLIntegrityConstraintViolationException extends java.sql.SQLNonTransientException { |
| 9726 | ctor public SQLIntegrityConstraintViolationException(); |
| 9727 | ctor public SQLIntegrityConstraintViolationException(String); |
| 9728 | ctor public SQLIntegrityConstraintViolationException(String, String); |
| 9729 | ctor public SQLIntegrityConstraintViolationException(String, String, int); |
| 9730 | ctor public SQLIntegrityConstraintViolationException(Throwable); |
| 9731 | ctor public SQLIntegrityConstraintViolationException(String, Throwable); |
| 9732 | ctor public SQLIntegrityConstraintViolationException(String, String, Throwable); |
| 9733 | ctor public SQLIntegrityConstraintViolationException(String, String, int, Throwable); |
| 9734 | } |
| 9735 | |
| 9736 | public class SQLInvalidAuthorizationSpecException extends java.sql.SQLNonTransientException { |
| 9737 | ctor public SQLInvalidAuthorizationSpecException(); |
| 9738 | ctor public SQLInvalidAuthorizationSpecException(String); |
| 9739 | ctor public SQLInvalidAuthorizationSpecException(String, String); |
| 9740 | ctor public SQLInvalidAuthorizationSpecException(String, String, int); |
| 9741 | ctor public SQLInvalidAuthorizationSpecException(Throwable); |
| 9742 | ctor public SQLInvalidAuthorizationSpecException(String, Throwable); |
| 9743 | ctor public SQLInvalidAuthorizationSpecException(String, String, Throwable); |
| 9744 | ctor public SQLInvalidAuthorizationSpecException(String, String, int, Throwable); |
| 9745 | } |
| 9746 | |
| 9747 | public class SQLNonTransientConnectionException extends java.sql.SQLNonTransientException { |
| 9748 | ctor public SQLNonTransientConnectionException(); |
| 9749 | ctor public SQLNonTransientConnectionException(String); |
| 9750 | ctor public SQLNonTransientConnectionException(String, String); |
| 9751 | ctor public SQLNonTransientConnectionException(String, String, int); |
| 9752 | ctor public SQLNonTransientConnectionException(Throwable); |
| 9753 | ctor public SQLNonTransientConnectionException(String, Throwable); |
| 9754 | ctor public SQLNonTransientConnectionException(String, String, Throwable); |
| 9755 | ctor public SQLNonTransientConnectionException(String, String, int, Throwable); |
| 9756 | } |
| 9757 | |
| 9758 | public class SQLNonTransientException extends java.sql.SQLException { |
| 9759 | ctor public SQLNonTransientException(); |
| 9760 | ctor public SQLNonTransientException(String); |
| 9761 | ctor public SQLNonTransientException(String, String); |
| 9762 | ctor public SQLNonTransientException(String, String, int); |
| 9763 | ctor public SQLNonTransientException(Throwable); |
| 9764 | ctor public SQLNonTransientException(String, Throwable); |
| 9765 | ctor public SQLNonTransientException(String, String, Throwable); |
| 9766 | ctor public SQLNonTransientException(String, String, int, Throwable); |
| 9767 | } |
| 9768 | |
| 9769 | public interface SQLOutput { |
| 9770 | method public void writeArray(java.sql.Array) throws java.sql.SQLException; |
| 9771 | method public void writeAsciiStream(java.io.InputStream) throws java.sql.SQLException; |
| 9772 | method public void writeBigDecimal(java.math.BigDecimal) throws java.sql.SQLException; |
| 9773 | method public void writeBinaryStream(java.io.InputStream) throws java.sql.SQLException; |
| 9774 | method public void writeBlob(java.sql.Blob) throws java.sql.SQLException; |
| 9775 | method public void writeBoolean(boolean) throws java.sql.SQLException; |
| 9776 | method public void writeByte(byte) throws java.sql.SQLException; |
| 9777 | method public void writeBytes(byte[]) throws java.sql.SQLException; |
| 9778 | method public void writeCharacterStream(java.io.Reader) throws java.sql.SQLException; |
| 9779 | method public void writeClob(java.sql.Clob) throws java.sql.SQLException; |
| 9780 | method public void writeDate(java.sql.Date) throws java.sql.SQLException; |
| 9781 | method public void writeDouble(double) throws java.sql.SQLException; |
| 9782 | method public void writeFloat(float) throws java.sql.SQLException; |
| 9783 | method public void writeInt(int) throws java.sql.SQLException; |
| 9784 | method public void writeLong(long) throws java.sql.SQLException; |
| 9785 | method public void writeNClob(java.sql.NClob) throws java.sql.SQLException; |
| 9786 | method public void writeNString(String) throws java.sql.SQLException; |
| 9787 | method public void writeObject(java.sql.SQLData) throws java.sql.SQLException; |
| 9788 | method public void writeRef(java.sql.Ref) throws java.sql.SQLException; |
| 9789 | method public void writeRowId(java.sql.RowId) throws java.sql.SQLException; |
| 9790 | method public void writeSQLXML(java.sql.SQLXML) throws java.sql.SQLException; |
| 9791 | method public void writeShort(short) throws java.sql.SQLException; |
| 9792 | method public void writeString(String) throws java.sql.SQLException; |
| 9793 | method public void writeStruct(java.sql.Struct) throws java.sql.SQLException; |
| 9794 | method public void writeTime(java.sql.Time) throws java.sql.SQLException; |
| 9795 | method public void writeTimestamp(java.sql.Timestamp) throws java.sql.SQLException; |
| 9796 | method public void writeURL(java.net.URL) throws java.sql.SQLException; |
| 9797 | } |
| 9798 | |
| 9799 | public final class SQLPermission extends java.security.BasicPermission { |
| 9800 | ctor public SQLPermission(String); |
| 9801 | ctor public SQLPermission(String, String); |
| 9802 | } |
| 9803 | |
| 9804 | public class SQLRecoverableException extends java.sql.SQLException { |
| 9805 | ctor public SQLRecoverableException(); |
| 9806 | ctor public SQLRecoverableException(String); |
| 9807 | ctor public SQLRecoverableException(String, String); |
| 9808 | ctor public SQLRecoverableException(String, String, int); |
| 9809 | ctor public SQLRecoverableException(Throwable); |
| 9810 | ctor public SQLRecoverableException(String, Throwable); |
| 9811 | ctor public SQLRecoverableException(String, String, Throwable); |
| 9812 | ctor public SQLRecoverableException(String, String, int, Throwable); |
| 9813 | } |
| 9814 | |
| 9815 | public class SQLSyntaxErrorException extends java.sql.SQLNonTransientException { |
| 9816 | ctor public SQLSyntaxErrorException(); |
| 9817 | ctor public SQLSyntaxErrorException(String); |
| 9818 | ctor public SQLSyntaxErrorException(String, String); |
| 9819 | ctor public SQLSyntaxErrorException(String, String, int); |
| 9820 | ctor public SQLSyntaxErrorException(Throwable); |
| 9821 | ctor public SQLSyntaxErrorException(String, Throwable); |
| 9822 | ctor public SQLSyntaxErrorException(String, String, Throwable); |
| 9823 | ctor public SQLSyntaxErrorException(String, String, int, Throwable); |
| 9824 | } |
| 9825 | |
| 9826 | public class SQLTimeoutException extends java.sql.SQLTransientException { |
| 9827 | ctor public SQLTimeoutException(); |
| 9828 | ctor public SQLTimeoutException(String); |
| 9829 | ctor public SQLTimeoutException(String, String); |
| 9830 | ctor public SQLTimeoutException(String, String, int); |
| 9831 | ctor public SQLTimeoutException(Throwable); |
| 9832 | ctor public SQLTimeoutException(String, Throwable); |
| 9833 | ctor public SQLTimeoutException(String, String, Throwable); |
| 9834 | ctor public SQLTimeoutException(String, String, int, Throwable); |
| 9835 | } |
| 9836 | |
| 9837 | public class SQLTransactionRollbackException extends java.sql.SQLTransientException { |
| 9838 | ctor public SQLTransactionRollbackException(); |
| 9839 | ctor public SQLTransactionRollbackException(String); |
| 9840 | ctor public SQLTransactionRollbackException(String, String); |
| 9841 | ctor public SQLTransactionRollbackException(String, String, int); |
| 9842 | ctor public SQLTransactionRollbackException(Throwable); |
| 9843 | ctor public SQLTransactionRollbackException(String, Throwable); |
| 9844 | ctor public SQLTransactionRollbackException(String, String, Throwable); |
| 9845 | ctor public SQLTransactionRollbackException(String, String, int, Throwable); |
| 9846 | } |
| 9847 | |
| 9848 | public class SQLTransientConnectionException extends java.sql.SQLTransientException { |
| 9849 | ctor public SQLTransientConnectionException(); |
| 9850 | ctor public SQLTransientConnectionException(String); |
| 9851 | ctor public SQLTransientConnectionException(String, String); |
| 9852 | ctor public SQLTransientConnectionException(String, String, int); |
| 9853 | ctor public SQLTransientConnectionException(Throwable); |
| 9854 | ctor public SQLTransientConnectionException(String, Throwable); |
| 9855 | ctor public SQLTransientConnectionException(String, String, Throwable); |
| 9856 | ctor public SQLTransientConnectionException(String, String, int, Throwable); |
| 9857 | } |
| 9858 | |
| 9859 | public class SQLTransientException extends java.sql.SQLException { |
| 9860 | ctor public SQLTransientException(); |
| 9861 | ctor public SQLTransientException(String); |
| 9862 | ctor public SQLTransientException(String, String); |
| 9863 | ctor public SQLTransientException(String, String, int); |
| 9864 | ctor public SQLTransientException(Throwable); |
| 9865 | ctor public SQLTransientException(String, Throwable); |
| 9866 | ctor public SQLTransientException(String, String, Throwable); |
| 9867 | ctor public SQLTransientException(String, String, int, Throwable); |
| 9868 | } |
| 9869 | |
| 9870 | public class SQLWarning extends java.sql.SQLException { |
| 9871 | ctor public SQLWarning(String, String, int); |
| 9872 | ctor public SQLWarning(String, String); |
| 9873 | ctor public SQLWarning(String); |
| 9874 | ctor public SQLWarning(); |
| 9875 | ctor public SQLWarning(Throwable); |
| 9876 | ctor public SQLWarning(String, Throwable); |
| 9877 | ctor public SQLWarning(String, String, Throwable); |
| 9878 | ctor public SQLWarning(String, String, int, Throwable); |
| 9879 | method public java.sql.SQLWarning getNextWarning(); |
| 9880 | method public void setNextWarning(java.sql.SQLWarning); |
| 9881 | } |
| 9882 | |
| 9883 | public interface SQLXML { |
| 9884 | method public void free() throws java.sql.SQLException; |
| 9885 | method public java.io.InputStream getBinaryStream() throws java.sql.SQLException; |
| 9886 | method public java.io.Reader getCharacterStream() throws java.sql.SQLException; |
| 9887 | method public <T extends javax.xml.transform.Source> T getSource(Class<T>) throws java.sql.SQLException; |
| 9888 | method public String getString() throws java.sql.SQLException; |
| 9889 | method public java.io.OutputStream setBinaryStream() throws java.sql.SQLException; |
| 9890 | method public java.io.Writer setCharacterStream() throws java.sql.SQLException; |
| 9891 | method public <T extends javax.xml.transform.Result> T setResult(Class<T>) throws java.sql.SQLException; |
| 9892 | method public void setString(String) throws java.sql.SQLException; |
| 9893 | } |
| 9894 | |
| 9895 | public interface Savepoint { |
| 9896 | method public int getSavepointId() throws java.sql.SQLException; |
| 9897 | method public String getSavepointName() throws java.sql.SQLException; |
| 9898 | } |
| 9899 | |
| 9900 | public interface Statement extends java.sql.Wrapper java.lang.AutoCloseable { |
| 9901 | method public void addBatch(String) throws java.sql.SQLException; |
| 9902 | method public void cancel() throws java.sql.SQLException; |
| 9903 | method public void clearBatch() throws java.sql.SQLException; |
| 9904 | method public void clearWarnings() throws java.sql.SQLException; |
| 9905 | method public void close() throws java.sql.SQLException; |
| 9906 | method public boolean execute(String) throws java.sql.SQLException; |
| 9907 | method public boolean execute(String, int) throws java.sql.SQLException; |
| 9908 | method public boolean execute(String, int[]) throws java.sql.SQLException; |
| 9909 | method public boolean execute(String, String[]) throws java.sql.SQLException; |
| 9910 | method public int[] executeBatch() throws java.sql.SQLException; |
| 9911 | method public java.sql.ResultSet executeQuery(String) throws java.sql.SQLException; |
| 9912 | method public int executeUpdate(String) throws java.sql.SQLException; |
| 9913 | method public int executeUpdate(String, int) throws java.sql.SQLException; |
| 9914 | method public int executeUpdate(String, int[]) throws java.sql.SQLException; |
| 9915 | method public int executeUpdate(String, String[]) throws java.sql.SQLException; |
| 9916 | method public java.sql.Connection getConnection() throws java.sql.SQLException; |
| 9917 | method public int getFetchDirection() throws java.sql.SQLException; |
| 9918 | method public int getFetchSize() throws java.sql.SQLException; |
| 9919 | method public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException; |
| 9920 | method public int getMaxFieldSize() throws java.sql.SQLException; |
| 9921 | method public int getMaxRows() throws java.sql.SQLException; |
| 9922 | method public boolean getMoreResults() throws java.sql.SQLException; |
| 9923 | method public boolean getMoreResults(int) throws java.sql.SQLException; |
| 9924 | method public int getQueryTimeout() throws java.sql.SQLException; |
| 9925 | method public java.sql.ResultSet getResultSet() throws java.sql.SQLException; |
| 9926 | method public int getResultSetConcurrency() throws java.sql.SQLException; |
| 9927 | method public int getResultSetHoldability() throws java.sql.SQLException; |
| 9928 | method public int getResultSetType() throws java.sql.SQLException; |
| 9929 | method public int getUpdateCount() throws java.sql.SQLException; |
| 9930 | method public java.sql.SQLWarning getWarnings() throws java.sql.SQLException; |
| 9931 | method public boolean isClosed() throws java.sql.SQLException; |
| 9932 | method public boolean isPoolable() throws java.sql.SQLException; |
| 9933 | method public void setCursorName(String) throws java.sql.SQLException; |
| 9934 | method public void setEscapeProcessing(boolean) throws java.sql.SQLException; |
| 9935 | method public void setFetchDirection(int) throws java.sql.SQLException; |
| 9936 | method public void setFetchSize(int) throws java.sql.SQLException; |
| 9937 | method public void setMaxFieldSize(int) throws java.sql.SQLException; |
| 9938 | method public void setMaxRows(int) throws java.sql.SQLException; |
| 9939 | method public void setPoolable(boolean) throws java.sql.SQLException; |
| 9940 | method public void setQueryTimeout(int) throws java.sql.SQLException; |
| 9941 | field public static final int CLOSE_ALL_RESULTS = 3; // 0x3 |
| 9942 | field public static final int CLOSE_CURRENT_RESULT = 1; // 0x1 |
| 9943 | field public static final int EXECUTE_FAILED = -3; // 0xfffffffd |
| 9944 | field public static final int KEEP_CURRENT_RESULT = 2; // 0x2 |
| 9945 | field public static final int NO_GENERATED_KEYS = 2; // 0x2 |
| 9946 | field public static final int RETURN_GENERATED_KEYS = 1; // 0x1 |
| 9947 | field public static final int SUCCESS_NO_INFO = -2; // 0xfffffffe |
| 9948 | } |
| 9949 | |
| 9950 | public interface Struct { |
| 9951 | method public Object[] getAttributes() throws java.sql.SQLException; |
| 9952 | method public Object[] getAttributes(java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 9953 | method public String getSQLTypeName() throws java.sql.SQLException; |
| 9954 | } |
| 9955 | |
| 9956 | public class Time extends java.util.Date { |
| 9957 | ctor @Deprecated public Time(int, int, int); |
| 9958 | ctor public Time(long); |
| 9959 | method public static java.sql.Time valueOf(String); |
| 9960 | } |
| 9961 | |
| 9962 | public class Timestamp extends java.util.Date { |
| 9963 | ctor @Deprecated public Timestamp(int, int, int, int, int, int, int); |
| 9964 | ctor public Timestamp(long); |
| 9965 | method public boolean after(java.sql.Timestamp); |
| 9966 | method public boolean before(java.sql.Timestamp); |
| 9967 | method public int compareTo(java.sql.Timestamp); |
| 9968 | method public boolean equals(java.sql.Timestamp); |
| 9969 | method public int getNanos(); |
| 9970 | method public void setNanos(int); |
| 9971 | method public static java.sql.Timestamp valueOf(String); |
| 9972 | } |
| 9973 | |
| 9974 | public class Types { |
| 9975 | field public static final int ARRAY = 2003; // 0x7d3 |
| 9976 | field public static final int BIGINT = -5; // 0xfffffffb |
| 9977 | field public static final int BINARY = -2; // 0xfffffffe |
| 9978 | field public static final int BIT = -7; // 0xfffffff9 |
| 9979 | field public static final int BLOB = 2004; // 0x7d4 |
| 9980 | field public static final int BOOLEAN = 16; // 0x10 |
| 9981 | field public static final int CHAR = 1; // 0x1 |
| 9982 | field public static final int CLOB = 2005; // 0x7d5 |
| 9983 | field public static final int DATALINK = 70; // 0x46 |
| 9984 | field public static final int DATE = 91; // 0x5b |
| 9985 | field public static final int DECIMAL = 3; // 0x3 |
| 9986 | field public static final int DISTINCT = 2001; // 0x7d1 |
| 9987 | field public static final int DOUBLE = 8; // 0x8 |
| 9988 | field public static final int FLOAT = 6; // 0x6 |
| 9989 | field public static final int INTEGER = 4; // 0x4 |
| 9990 | field public static final int JAVA_OBJECT = 2000; // 0x7d0 |
| 9991 | field public static final int LONGNVARCHAR = -16; // 0xfffffff0 |
| 9992 | field public static final int LONGVARBINARY = -4; // 0xfffffffc |
| 9993 | field public static final int LONGVARCHAR = -1; // 0xffffffff |
| 9994 | field public static final int NCHAR = -15; // 0xfffffff1 |
| 9995 | field public static final int NCLOB = 2011; // 0x7db |
| 9996 | field public static final int NULL = 0; // 0x0 |
| 9997 | field public static final int NUMERIC = 2; // 0x2 |
| 9998 | field public static final int NVARCHAR = -9; // 0xfffffff7 |
| 9999 | field public static final int OTHER = 1111; // 0x457 |
| 10000 | field public static final int REAL = 7; // 0x7 |
| 10001 | field public static final int REF = 2006; // 0x7d6 |
| 10002 | field public static final int ROWID = -8; // 0xfffffff8 |
| 10003 | field public static final int SMALLINT = 5; // 0x5 |
| 10004 | field public static final int SQLXML = 2009; // 0x7d9 |
| 10005 | field public static final int STRUCT = 2002; // 0x7d2 |
| 10006 | field public static final int TIME = 92; // 0x5c |
| 10007 | field public static final int TIMESTAMP = 93; // 0x5d |
| 10008 | field public static final int TINYINT = -6; // 0xfffffffa |
| 10009 | field public static final int VARBINARY = -3; // 0xfffffffd |
| 10010 | field public static final int VARCHAR = 12; // 0xc |
| 10011 | } |
| 10012 | |
| 10013 | public interface Wrapper { |
| 10014 | method public boolean isWrapperFor(Class<?>) throws java.sql.SQLException; |
| 10015 | method public <T> T unwrap(Class<T>) throws java.sql.SQLException; |
| 10016 | } |
| 10017 | |
| 10018 | } |
| 10019 | |
| 10020 | package java.text { |
| 10021 | |
| 10022 | public class Annotation { |
| 10023 | ctor public Annotation(Object); |
| 10024 | method public Object getValue(); |
| 10025 | } |
| 10026 | |
| 10027 | public interface AttributedCharacterIterator extends java.text.CharacterIterator { |
| 10028 | method public java.util.Set<java.text.AttributedCharacterIterator.Attribute> getAllAttributeKeys(); |
| 10029 | method public Object getAttribute(java.text.AttributedCharacterIterator.Attribute); |
| 10030 | method public java.util.Map<java.text.AttributedCharacterIterator.Attribute,java.lang.Object> getAttributes(); |
| 10031 | method public int getRunLimit(); |
| 10032 | method public int getRunLimit(java.text.AttributedCharacterIterator.Attribute); |
| 10033 | method public int getRunLimit(java.util.Set<? extends java.text.AttributedCharacterIterator.Attribute>); |
| 10034 | method public int getRunStart(); |
| 10035 | method public int getRunStart(java.text.AttributedCharacterIterator.Attribute); |
| 10036 | method public int getRunStart(java.util.Set<? extends java.text.AttributedCharacterIterator.Attribute>); |
| 10037 | } |
| 10038 | |
| 10039 | public static class AttributedCharacterIterator.Attribute implements java.io.Serializable { |
| 10040 | ctor protected AttributedCharacterIterator.Attribute(String); |
| 10041 | method public final boolean equals(Object); |
| 10042 | method protected String getName(); |
| 10043 | method public final int hashCode(); |
| 10044 | method protected Object readResolve() throws java.io.InvalidObjectException; |
| 10045 | field public static final java.text.AttributedCharacterIterator.Attribute INPUT_METHOD_SEGMENT; |
| 10046 | field public static final java.text.AttributedCharacterIterator.Attribute LANGUAGE; |
| 10047 | field public static final java.text.AttributedCharacterIterator.Attribute READING; |
| 10048 | } |
| 10049 | |
| 10050 | public class AttributedString { |
| 10051 | ctor public AttributedString(String); |
| 10052 | ctor public AttributedString(String, java.util.Map<? extends java.text.AttributedCharacterIterator.Attribute,?>); |
| 10053 | ctor public AttributedString(java.text.AttributedCharacterIterator); |
| 10054 | ctor public AttributedString(java.text.AttributedCharacterIterator, int, int); |
| 10055 | ctor public AttributedString(java.text.AttributedCharacterIterator, int, int, java.text.AttributedCharacterIterator.Attribute[]); |
| 10056 | method public void addAttribute(java.text.AttributedCharacterIterator.Attribute, Object); |
| 10057 | method public void addAttribute(java.text.AttributedCharacterIterator.Attribute, Object, int, int); |
| 10058 | method public void addAttributes(java.util.Map<? extends java.text.AttributedCharacterIterator.Attribute,?>, int, int); |
| 10059 | method public java.text.AttributedCharacterIterator getIterator(); |
| 10060 | method public java.text.AttributedCharacterIterator getIterator(java.text.AttributedCharacterIterator.Attribute[]); |
| 10061 | method public java.text.AttributedCharacterIterator getIterator(java.text.AttributedCharacterIterator.Attribute[], int, int); |
| 10062 | } |
| 10063 | |
| 10064 | public final class Bidi { |
| 10065 | ctor public Bidi(String, int); |
| 10066 | ctor public Bidi(java.text.AttributedCharacterIterator); |
| 10067 | ctor public Bidi(char[], int, byte[], int, int, int); |
| 10068 | method public boolean baseIsLeftToRight(); |
| 10069 | method public java.text.Bidi createLineBidi(int, int); |
| 10070 | method public int getBaseLevel(); |
| 10071 | method public int getLength(); |
| 10072 | method public int getLevelAt(int); |
| 10073 | method public int getRunCount(); |
| 10074 | method public int getRunLevel(int); |
| 10075 | method public int getRunLimit(int); |
| 10076 | method public int getRunStart(int); |
| 10077 | method public boolean isLeftToRight(); |
| 10078 | method public boolean isMixed(); |
| 10079 | method public boolean isRightToLeft(); |
| 10080 | method public static void reorderVisually(byte[], int, Object[], int, int); |
| 10081 | method public static boolean requiresBidi(char[], int, int); |
| 10082 | field public static final int DIRECTION_DEFAULT_LEFT_TO_RIGHT = -2; // 0xfffffffe |
| 10083 | field public static final int DIRECTION_DEFAULT_RIGHT_TO_LEFT = -1; // 0xffffffff |
| 10084 | field public static final int DIRECTION_LEFT_TO_RIGHT = 0; // 0x0 |
| 10085 | field public static final int DIRECTION_RIGHT_TO_LEFT = 1; // 0x1 |
| 10086 | } |
| 10087 | |
| 10088 | public abstract class BreakIterator implements java.lang.Cloneable { |
| 10089 | ctor protected BreakIterator(); |
| 10090 | method public Object clone(); |
| 10091 | method public abstract int current(); |
| 10092 | method public abstract int first(); |
| 10093 | method public abstract int following(int); |
| 10094 | method public static java.util.Locale[] getAvailableLocales(); |
| 10095 | method public static java.text.BreakIterator getCharacterInstance(); |
| 10096 | method public static java.text.BreakIterator getCharacterInstance(java.util.Locale); |
| 10097 | method public static java.text.BreakIterator getLineInstance(); |
| 10098 | method public static java.text.BreakIterator getLineInstance(java.util.Locale); |
| 10099 | method public static java.text.BreakIterator getSentenceInstance(); |
| 10100 | method public static java.text.BreakIterator getSentenceInstance(java.util.Locale); |
| 10101 | method public abstract java.text.CharacterIterator getText(); |
| 10102 | method public static java.text.BreakIterator getWordInstance(); |
| 10103 | method public static java.text.BreakIterator getWordInstance(java.util.Locale); |
| 10104 | method public boolean isBoundary(int); |
| 10105 | method public abstract int last(); |
| 10106 | method public abstract int next(int); |
| 10107 | method public abstract int next(); |
| 10108 | method public int preceding(int); |
| 10109 | method public abstract int previous(); |
| 10110 | method public void setText(String); |
| 10111 | method public abstract void setText(java.text.CharacterIterator); |
| 10112 | field public static final int DONE = -1; // 0xffffffff |
| 10113 | } |
| 10114 | |
| 10115 | public interface CharacterIterator extends java.lang.Cloneable { |
| 10116 | method public Object clone(); |
| 10117 | method public char current(); |
| 10118 | method public char first(); |
| 10119 | method public int getBeginIndex(); |
| 10120 | method public int getEndIndex(); |
| 10121 | method public int getIndex(); |
| 10122 | method public char last(); |
| 10123 | method public char next(); |
| 10124 | method public char previous(); |
| 10125 | method public char setIndex(int); |
| 10126 | field public static final char DONE = 65535; // 0xffff '\uffff' |
| 10127 | } |
| 10128 | |
| 10129 | public class ChoiceFormat extends java.text.NumberFormat { |
| 10130 | ctor public ChoiceFormat(String); |
| 10131 | ctor public ChoiceFormat(double[], String[]); |
| 10132 | method public void applyPattern(String); |
| 10133 | method public StringBuffer format(long, StringBuffer, java.text.FieldPosition); |
| 10134 | method public StringBuffer format(double, StringBuffer, java.text.FieldPosition); |
| 10135 | method public Object[] getFormats(); |
| 10136 | method public double[] getLimits(); |
| 10137 | method public static final double nextDouble(double); |
| 10138 | method public static double nextDouble(double, boolean); |
| 10139 | method public Number parse(String, java.text.ParsePosition); |
| 10140 | method public static final double previousDouble(double); |
| 10141 | method public void setChoices(double[], String[]); |
| 10142 | method public String toPattern(); |
| 10143 | } |
| 10144 | |
| 10145 | public final class CollationElementIterator { |
| 10146 | method public int getMaxExpansion(int); |
| 10147 | method public int getOffset(); |
| 10148 | method public int next(); |
| 10149 | method public int previous(); |
| 10150 | method public static int primaryOrder(int); |
| 10151 | method public void reset(); |
| 10152 | method public static short secondaryOrder(int); |
| 10153 | method public void setOffset(int); |
| 10154 | method public void setText(String); |
| 10155 | method public void setText(java.text.CharacterIterator); |
| 10156 | method public static short tertiaryOrder(int); |
| 10157 | field public static final int NULLORDER = -1; // 0xffffffff |
| 10158 | } |
| 10159 | |
| 10160 | public abstract class CollationKey implements java.lang.Comparable<java.text.CollationKey> { |
| 10161 | ctor protected CollationKey(String); |
| 10162 | method public abstract int compareTo(java.text.CollationKey); |
| 10163 | method public String getSourceString(); |
| 10164 | method public abstract byte[] toByteArray(); |
| 10165 | } |
| 10166 | |
| 10167 | public abstract class Collator implements java.lang.Cloneable java.util.Comparator<java.lang.Object> { |
| 10168 | ctor protected Collator(); |
| 10169 | method public Object clone(); |
| 10170 | method public abstract int compare(String, String); |
| 10171 | method public int compare(Object, Object); |
| 10172 | method public boolean equals(String, String); |
| 10173 | method public static java.util.Locale[] getAvailableLocales(); |
| 10174 | method public abstract java.text.CollationKey getCollationKey(String); |
| 10175 | method public int getDecomposition(); |
| 10176 | method public static java.text.Collator getInstance(); |
| 10177 | method public static java.text.Collator getInstance(java.util.Locale); |
| 10178 | method public int getStrength(); |
| 10179 | method public abstract int hashCode(); |
| 10180 | method public void setDecomposition(int); |
| 10181 | method public void setStrength(int); |
| 10182 | field public static final int CANONICAL_DECOMPOSITION = 1; // 0x1 |
| 10183 | field public static final int FULL_DECOMPOSITION = 2; // 0x2 |
| 10184 | field public static final int IDENTICAL = 3; // 0x3 |
| 10185 | field public static final int NO_DECOMPOSITION = 0; // 0x0 |
| 10186 | field public static final int PRIMARY = 0; // 0x0 |
| 10187 | field public static final int SECONDARY = 1; // 0x1 |
| 10188 | field public static final int TERTIARY = 2; // 0x2 |
| 10189 | } |
| 10190 | |
| 10191 | public abstract class DateFormat extends java.text.Format { |
| 10192 | ctor protected DateFormat(); |
| 10193 | method @NonNull public final StringBuffer format(@NonNull Object, @NonNull StringBuffer, @NonNull java.text.FieldPosition); |
| 10194 | method @NonNull public abstract StringBuffer format(@NonNull java.util.Date, @NonNull StringBuffer, @NonNull java.text.FieldPosition); |
| 10195 | method @NonNull public final String format(@NonNull java.util.Date); |
| 10196 | method @NonNull public static java.util.Locale[] getAvailableLocales(); |
| 10197 | method @NonNull public java.util.Calendar getCalendar(); |
| 10198 | method @NonNull public static final java.text.DateFormat getDateInstance(); |
| 10199 | method @NonNull public static final java.text.DateFormat getDateInstance(int); |
| 10200 | method @NonNull public static final java.text.DateFormat getDateInstance(int, @NonNull java.util.Locale); |
| 10201 | method @NonNull public static final java.text.DateFormat getDateTimeInstance(); |
| 10202 | method @NonNull public static final java.text.DateFormat getDateTimeInstance(int, int); |
| 10203 | method @NonNull public static final java.text.DateFormat getDateTimeInstance(int, int, @NonNull java.util.Locale); |
| 10204 | method @NonNull public static final java.text.DateFormat getInstance(); |
| 10205 | method @NonNull public java.text.NumberFormat getNumberFormat(); |
| 10206 | method @NonNull public static final java.text.DateFormat getTimeInstance(); |
| 10207 | method @NonNull public static final java.text.DateFormat getTimeInstance(int); |
| 10208 | method @NonNull public static final java.text.DateFormat getTimeInstance(int, @NonNull java.util.Locale); |
| 10209 | method @NonNull public java.util.TimeZone getTimeZone(); |
| 10210 | method public boolean isLenient(); |
| 10211 | method @Nullable public java.util.Date parse(@NonNull String) throws java.text.ParseException; |
| 10212 | method @Nullable public abstract java.util.Date parse(@NonNull String, @NonNull java.text.ParsePosition); |
| 10213 | method @Nullable public Object parseObject(@NonNull String, @NonNull java.text.ParsePosition); |
| 10214 | method public void setCalendar(@NonNull java.util.Calendar); |
| 10215 | method public void setLenient(boolean); |
| 10216 | method public void setNumberFormat(@NonNull java.text.NumberFormat); |
| 10217 | method public void setTimeZone(@NonNull java.util.TimeZone); |
| 10218 | field public static final int AM_PM_FIELD = 14; // 0xe |
| 10219 | field public static final int DATE_FIELD = 3; // 0x3 |
| 10220 | field public static final int DAY_OF_WEEK_FIELD = 9; // 0x9 |
| 10221 | field public static final int DAY_OF_WEEK_IN_MONTH_FIELD = 11; // 0xb |
| 10222 | field public static final int DAY_OF_YEAR_FIELD = 10; // 0xa |
| 10223 | field public static final int DEFAULT = 2; // 0x2 |
| 10224 | field public static final int ERA_FIELD = 0; // 0x0 |
| 10225 | field public static final int FULL = 0; // 0x0 |
| 10226 | field public static final int HOUR0_FIELD = 16; // 0x10 |
| 10227 | field public static final int HOUR1_FIELD = 15; // 0xf |
| 10228 | field public static final int HOUR_OF_DAY0_FIELD = 5; // 0x5 |
| 10229 | field public static final int HOUR_OF_DAY1_FIELD = 4; // 0x4 |
| 10230 | field public static final int LONG = 1; // 0x1 |
| 10231 | field public static final int MEDIUM = 2; // 0x2 |
| 10232 | field public static final int MILLISECOND_FIELD = 8; // 0x8 |
| 10233 | field public static final int MINUTE_FIELD = 6; // 0x6 |
| 10234 | field public static final int MONTH_FIELD = 2; // 0x2 |
| 10235 | field public static final int SECOND_FIELD = 7; // 0x7 |
| 10236 | field public static final int SHORT = 3; // 0x3 |
| 10237 | field public static final int TIMEZONE_FIELD = 17; // 0x11 |
| 10238 | field public static final int WEEK_OF_MONTH_FIELD = 13; // 0xd |
| 10239 | field public static final int WEEK_OF_YEAR_FIELD = 12; // 0xc |
| 10240 | field public static final int YEAR_FIELD = 1; // 0x1 |
| 10241 | field @NonNull protected java.util.Calendar calendar; |
| 10242 | field @NonNull protected java.text.NumberFormat numberFormat; |
| 10243 | } |
| 10244 | |
| 10245 | public static class DateFormat.Field extends java.text.Format.Field { |
| 10246 | ctor protected DateFormat.Field(@NonNull String, int); |
| 10247 | method public int getCalendarField(); |
| 10248 | method @NonNull public static java.text.DateFormat.Field ofCalendarField(int); |
| 10249 | field @NonNull public static final java.text.DateFormat.Field AM_PM; |
| 10250 | field @NonNull public static final java.text.DateFormat.Field DAY_OF_MONTH; |
| 10251 | field @NonNull public static final java.text.DateFormat.Field DAY_OF_WEEK; |
| 10252 | field @NonNull public static final java.text.DateFormat.Field DAY_OF_WEEK_IN_MONTH; |
| 10253 | field @NonNull public static final java.text.DateFormat.Field DAY_OF_YEAR; |
| 10254 | field @NonNull public static final java.text.DateFormat.Field ERA; |
| 10255 | field @NonNull public static final java.text.DateFormat.Field HOUR0; |
| 10256 | field @NonNull public static final java.text.DateFormat.Field HOUR1; |
| 10257 | field @NonNull public static final java.text.DateFormat.Field HOUR_OF_DAY0; |
| 10258 | field @NonNull public static final java.text.DateFormat.Field HOUR_OF_DAY1; |
| 10259 | field @NonNull public static final java.text.DateFormat.Field MILLISECOND; |
| 10260 | field @NonNull public static final java.text.DateFormat.Field MINUTE; |
| 10261 | field @NonNull public static final java.text.DateFormat.Field MONTH; |
| 10262 | field @NonNull public static final java.text.DateFormat.Field SECOND; |
| 10263 | field @NonNull public static final java.text.DateFormat.Field TIME_ZONE; |
| 10264 | field @NonNull public static final java.text.DateFormat.Field WEEK_OF_MONTH; |
| 10265 | field @NonNull public static final java.text.DateFormat.Field WEEK_OF_YEAR; |
| 10266 | field @NonNull public static final java.text.DateFormat.Field YEAR; |
| 10267 | } |
| 10268 | |
| 10269 | public class DateFormatSymbols implements java.lang.Cloneable java.io.Serializable { |
| 10270 | ctor public DateFormatSymbols(); |
| 10271 | ctor public DateFormatSymbols(java.util.Locale); |
| 10272 | method public Object clone(); |
| 10273 | method public String[] getAmPmStrings(); |
| 10274 | method public static java.util.Locale[] getAvailableLocales(); |
| 10275 | method public String[] getEras(); |
| 10276 | method public static final java.text.DateFormatSymbols getInstance(); |
| 10277 | method public static final java.text.DateFormatSymbols getInstance(java.util.Locale); |
| 10278 | method public String getLocalPatternChars(); |
| 10279 | method public String[] getMonths(); |
| 10280 | method public String[] getShortMonths(); |
| 10281 | method public String[] getShortWeekdays(); |
| 10282 | method public String[] getWeekdays(); |
| 10283 | method public String[][] getZoneStrings(); |
| 10284 | method public void setAmPmStrings(String[]); |
| 10285 | method public void setEras(String[]); |
| 10286 | method public void setLocalPatternChars(String); |
| 10287 | method public void setMonths(String[]); |
| 10288 | method public void setShortMonths(String[]); |
| 10289 | method public void setShortWeekdays(String[]); |
| 10290 | method public void setWeekdays(String[]); |
| 10291 | method public void setZoneStrings(String[][]); |
| 10292 | } |
| 10293 | |
| 10294 | public class DecimalFormat extends java.text.NumberFormat { |
| 10295 | ctor public DecimalFormat(); |
| 10296 | ctor public DecimalFormat(String); |
| 10297 | ctor public DecimalFormat(String, java.text.DecimalFormatSymbols); |
| 10298 | method public void applyLocalizedPattern(String); |
| 10299 | method public void applyPattern(String); |
| 10300 | method public final StringBuffer format(Object, StringBuffer, java.text.FieldPosition); |
| 10301 | method public StringBuffer format(double, StringBuffer, java.text.FieldPosition); |
| 10302 | method public StringBuffer format(long, StringBuffer, java.text.FieldPosition); |
| 10303 | method public java.text.DecimalFormatSymbols getDecimalFormatSymbols(); |
| 10304 | method public int getGroupingSize(); |
| 10305 | method public int getMultiplier(); |
| 10306 | method public String getNegativePrefix(); |
| 10307 | method public String getNegativeSuffix(); |
| 10308 | method public String getPositivePrefix(); |
| 10309 | method public String getPositiveSuffix(); |
| 10310 | method public boolean isDecimalSeparatorAlwaysShown(); |
| 10311 | method public boolean isParseBigDecimal(); |
| 10312 | method public Number parse(String, java.text.ParsePosition); |
| 10313 | method public void setDecimalFormatSymbols(java.text.DecimalFormatSymbols); |
| 10314 | method public void setDecimalSeparatorAlwaysShown(boolean); |
| 10315 | method public void setGroupingSize(int); |
| 10316 | method public void setMultiplier(int); |
| 10317 | method public void setNegativePrefix(String); |
| 10318 | method public void setNegativeSuffix(String); |
| 10319 | method public void setParseBigDecimal(boolean); |
| 10320 | method public void setPositivePrefix(String); |
| 10321 | method public void setPositiveSuffix(String); |
| 10322 | method public String toLocalizedPattern(); |
| 10323 | method public String toPattern(); |
| 10324 | } |
| 10325 | |
| 10326 | public class DecimalFormatSymbols implements java.lang.Cloneable java.io.Serializable { |
| 10327 | ctor public DecimalFormatSymbols(); |
| 10328 | ctor public DecimalFormatSymbols(java.util.Locale); |
| 10329 | method public Object clone(); |
| 10330 | method public static java.util.Locale[] getAvailableLocales(); |
| 10331 | method public java.util.Currency getCurrency(); |
| 10332 | method public String getCurrencySymbol(); |
| 10333 | method public char getDecimalSeparator(); |
| 10334 | method public char getDigit(); |
| 10335 | method public String getExponentSeparator(); |
| 10336 | method public char getGroupingSeparator(); |
| 10337 | method public String getInfinity(); |
| 10338 | method public static final java.text.DecimalFormatSymbols getInstance(); |
| 10339 | method public static final java.text.DecimalFormatSymbols getInstance(java.util.Locale); |
| 10340 | method public String getInternationalCurrencySymbol(); |
| 10341 | method public char getMinusSign(); |
| 10342 | method public char getMonetaryDecimalSeparator(); |
| 10343 | method public String getNaN(); |
| 10344 | method public char getPatternSeparator(); |
| 10345 | method public char getPerMill(); |
| 10346 | method public char getPercent(); |
| 10347 | method public char getZeroDigit(); |
| 10348 | method public void setCurrency(java.util.Currency); |
| 10349 | method public void setCurrencySymbol(String); |
| 10350 | method public void setDecimalSeparator(char); |
| 10351 | method public void setDigit(char); |
| 10352 | method public void setExponentSeparator(String); |
| 10353 | method public void setGroupingSeparator(char); |
| 10354 | method public void setInfinity(String); |
| 10355 | method public void setInternationalCurrencySymbol(String); |
| 10356 | method public void setMinusSign(char); |
| 10357 | method public void setMonetaryDecimalSeparator(char); |
| 10358 | method public void setNaN(String); |
| 10359 | method public void setPatternSeparator(char); |
| 10360 | method public void setPerMill(char); |
| 10361 | method public void setPercent(char); |
| 10362 | method public void setZeroDigit(char); |
| 10363 | } |
| 10364 | |
| 10365 | public class FieldPosition { |
| 10366 | ctor public FieldPosition(int); |
| 10367 | ctor public FieldPosition(java.text.Format.Field); |
| 10368 | ctor public FieldPosition(java.text.Format.Field, int); |
| 10369 | method public int getBeginIndex(); |
| 10370 | method public int getEndIndex(); |
| 10371 | method public int getField(); |
| 10372 | method public java.text.Format.Field getFieldAttribute(); |
| 10373 | method public void setBeginIndex(int); |
| 10374 | method public void setEndIndex(int); |
| 10375 | } |
| 10376 | |
| 10377 | public abstract class Format implements java.lang.Cloneable java.io.Serializable { |
| 10378 | ctor protected Format(); |
| 10379 | method public Object clone(); |
| 10380 | method public final String format(Object); |
| 10381 | method public abstract StringBuffer format(Object, StringBuffer, java.text.FieldPosition); |
| 10382 | method public java.text.AttributedCharacterIterator formatToCharacterIterator(Object); |
| 10383 | method public abstract Object parseObject(String, java.text.ParsePosition); |
| 10384 | method public Object parseObject(String) throws java.text.ParseException; |
| 10385 | } |
| 10386 | |
| 10387 | public static class Format.Field extends java.text.AttributedCharacterIterator.Attribute { |
| 10388 | ctor protected Format.Field(String); |
| 10389 | } |
| 10390 | |
| 10391 | public class MessageFormat extends java.text.Format { |
| 10392 | ctor public MessageFormat(String); |
| 10393 | ctor public MessageFormat(String, java.util.Locale); |
| 10394 | method public void applyPattern(String); |
| 10395 | method public final StringBuffer format(Object[], StringBuffer, java.text.FieldPosition); |
| 10396 | method public static String format(String, java.lang.Object...); |
| 10397 | method public final StringBuffer format(Object, StringBuffer, java.text.FieldPosition); |
| 10398 | method public java.text.Format[] getFormats(); |
| 10399 | method public java.text.Format[] getFormatsByArgumentIndex(); |
| 10400 | method public java.util.Locale getLocale(); |
| 10401 | method public Object[] parse(String, java.text.ParsePosition); |
| 10402 | method public Object[] parse(String) throws java.text.ParseException; |
| 10403 | method public Object parseObject(String, java.text.ParsePosition); |
| 10404 | method public void setFormat(int, java.text.Format); |
| 10405 | method public void setFormatByArgumentIndex(int, java.text.Format); |
| 10406 | method public void setFormats(java.text.Format[]); |
| 10407 | method public void setFormatsByArgumentIndex(java.text.Format[]); |
| 10408 | method public void setLocale(java.util.Locale); |
| 10409 | method public String toPattern(); |
| 10410 | } |
| 10411 | |
| 10412 | public static class MessageFormat.Field extends java.text.Format.Field { |
| 10413 | ctor protected MessageFormat.Field(String); |
| 10414 | field public static final java.text.MessageFormat.Field ARGUMENT; |
| 10415 | } |
| 10416 | |
| 10417 | public final class Normalizer { |
| 10418 | method public static boolean isNormalized(CharSequence, java.text.Normalizer.Form); |
| 10419 | method public static String normalize(CharSequence, java.text.Normalizer.Form); |
| 10420 | } |
| 10421 | |
| 10422 | public enum Normalizer.Form { |
| 10423 | enum_constant public static final java.text.Normalizer.Form NFC; |
| 10424 | enum_constant public static final java.text.Normalizer.Form NFD; |
| 10425 | enum_constant public static final java.text.Normalizer.Form NFKC; |
| 10426 | enum_constant public static final java.text.Normalizer.Form NFKD; |
| 10427 | } |
| 10428 | |
| 10429 | public abstract class NumberFormat extends java.text.Format { |
| 10430 | ctor protected NumberFormat(); |
| 10431 | method @NonNull public StringBuffer format(@NonNull Object, @NonNull StringBuffer, @NonNull java.text.FieldPosition); |
| 10432 | method @NonNull public final String format(double); |
| 10433 | method @NonNull public final String format(long); |
| 10434 | method @NonNull public abstract StringBuffer format(double, @NonNull StringBuffer, @NonNull java.text.FieldPosition); |
| 10435 | method @NonNull public abstract StringBuffer format(long, @NonNull StringBuffer, @NonNull java.text.FieldPosition); |
| 10436 | method @NonNull public static java.util.Locale[] getAvailableLocales(); |
| 10437 | method @Nullable public java.util.Currency getCurrency(); |
| 10438 | method @NonNull public static final java.text.NumberFormat getCurrencyInstance(); |
| 10439 | method @NonNull public static java.text.NumberFormat getCurrencyInstance(@NonNull java.util.Locale); |
| 10440 | method @NonNull public static final java.text.NumberFormat getInstance(); |
| 10441 | method @NonNull public static java.text.NumberFormat getInstance(@NonNull java.util.Locale); |
| 10442 | method @NonNull public static final java.text.NumberFormat getIntegerInstance(); |
| 10443 | method @NonNull public static java.text.NumberFormat getIntegerInstance(@NonNull java.util.Locale); |
| 10444 | method public int getMaximumFractionDigits(); |
| 10445 | method public int getMaximumIntegerDigits(); |
| 10446 | method public int getMinimumFractionDigits(); |
| 10447 | method public int getMinimumIntegerDigits(); |
| 10448 | method @NonNull public static final java.text.NumberFormat getNumberInstance(); |
| 10449 | method @NonNull public static java.text.NumberFormat getNumberInstance(@NonNull java.util.Locale); |
| 10450 | method @NonNull public static final java.text.NumberFormat getPercentInstance(); |
| 10451 | method @NonNull public static java.text.NumberFormat getPercentInstance(@NonNull java.util.Locale); |
| 10452 | method @NonNull public java.math.RoundingMode getRoundingMode(); |
| 10453 | method public boolean isGroupingUsed(); |
| 10454 | method public boolean isParseIntegerOnly(); |
| 10455 | method @Nullable public abstract Number parse(@NonNull String, @NonNull java.text.ParsePosition); |
| 10456 | method @Nullable public Number parse(@NonNull String) throws java.text.ParseException; |
| 10457 | method @Nullable public final Object parseObject(@NonNull String, @NonNull java.text.ParsePosition); |
| 10458 | method public void setCurrency(@NonNull java.util.Currency); |
| 10459 | method public void setGroupingUsed(boolean); |
| 10460 | method public void setMaximumFractionDigits(int); |
| 10461 | method public void setMaximumIntegerDigits(int); |
| 10462 | method public void setMinimumFractionDigits(int); |
| 10463 | method public void setMinimumIntegerDigits(int); |
| 10464 | method public void setParseIntegerOnly(boolean); |
| 10465 | method public void setRoundingMode(@Nullable java.math.RoundingMode); |
| 10466 | field public static final int FRACTION_FIELD = 1; // 0x1 |
| 10467 | field public static final int INTEGER_FIELD = 0; // 0x0 |
| 10468 | } |
| 10469 | |
| 10470 | public static class NumberFormat.Field extends java.text.Format.Field { |
| 10471 | ctor protected NumberFormat.Field(@NonNull String); |
| 10472 | field @NonNull public static final java.text.NumberFormat.Field CURRENCY; |
| 10473 | field @NonNull public static final java.text.NumberFormat.Field DECIMAL_SEPARATOR; |
| 10474 | field @NonNull public static final java.text.NumberFormat.Field EXPONENT; |
| 10475 | field @NonNull public static final java.text.NumberFormat.Field EXPONENT_SIGN; |
| 10476 | field @NonNull public static final java.text.NumberFormat.Field EXPONENT_SYMBOL; |
| 10477 | field @NonNull public static final java.text.NumberFormat.Field FRACTION; |
| 10478 | field @NonNull public static final java.text.NumberFormat.Field GROUPING_SEPARATOR; |
| 10479 | field @NonNull public static final java.text.NumberFormat.Field INTEGER; |
| 10480 | field @NonNull public static final java.text.NumberFormat.Field PERCENT; |
| 10481 | field @NonNull public static final java.text.NumberFormat.Field PERMILLE; |
| 10482 | field @NonNull public static final java.text.NumberFormat.Field SIGN; |
| 10483 | } |
| 10484 | |
| 10485 | public class ParseException extends java.lang.Exception { |
| 10486 | ctor public ParseException(String, int); |
| 10487 | method public int getErrorOffset(); |
| 10488 | } |
| 10489 | |
| 10490 | public class ParsePosition { |
| 10491 | ctor public ParsePosition(int); |
| 10492 | method public int getErrorIndex(); |
| 10493 | method public int getIndex(); |
| 10494 | method public void setErrorIndex(int); |
| 10495 | method public void setIndex(int); |
| 10496 | } |
| 10497 | |
| 10498 | public class RuleBasedCollator extends java.text.Collator { |
| 10499 | ctor public RuleBasedCollator(String) throws java.text.ParseException; |
| 10500 | method public int compare(String, String); |
| 10501 | method public java.text.CollationElementIterator getCollationElementIterator(String); |
| 10502 | method public java.text.CollationElementIterator getCollationElementIterator(java.text.CharacterIterator); |
| 10503 | method public java.text.CollationKey getCollationKey(String); |
| 10504 | method public String getRules(); |
| 10505 | } |
| 10506 | |
| 10507 | public class SimpleDateFormat extends java.text.DateFormat { |
| 10508 | ctor public SimpleDateFormat(); |
| 10509 | ctor public SimpleDateFormat(String); |
| 10510 | ctor public SimpleDateFormat(String, java.util.Locale); |
| 10511 | ctor public SimpleDateFormat(String, java.text.DateFormatSymbols); |
| 10512 | method public void applyLocalizedPattern(String); |
| 10513 | method public void applyPattern(String); |
| 10514 | method public StringBuffer format(java.util.Date, StringBuffer, java.text.FieldPosition); |
| 10515 | method public java.util.Date get2DigitYearStart(); |
| 10516 | method public java.text.DateFormatSymbols getDateFormatSymbols(); |
| 10517 | method public java.util.Date parse(String, java.text.ParsePosition); |
| 10518 | method public void set2DigitYearStart(java.util.Date); |
| 10519 | method public void setDateFormatSymbols(java.text.DateFormatSymbols); |
| 10520 | method public String toLocalizedPattern(); |
| 10521 | method public String toPattern(); |
| 10522 | } |
| 10523 | |
| 10524 | public final class StringCharacterIterator implements java.text.CharacterIterator { |
| 10525 | ctor public StringCharacterIterator(String); |
| 10526 | ctor public StringCharacterIterator(String, int); |
| 10527 | ctor public StringCharacterIterator(String, int, int, int); |
| 10528 | method public Object clone(); |
| 10529 | method public char current(); |
| 10530 | method public char first(); |
| 10531 | method public int getBeginIndex(); |
| 10532 | method public int getEndIndex(); |
| 10533 | method public int getIndex(); |
| 10534 | method public char last(); |
| 10535 | method public char next(); |
| 10536 | method public char previous(); |
| 10537 | method public char setIndex(int); |
| 10538 | method public void setText(String); |
| 10539 | } |
| 10540 | |
| 10541 | } |
| 10542 | |
| 10543 | package java.time { |
| 10544 | |
| 10545 | public abstract class Clock { |
| 10546 | ctor protected Clock(); |
| 10547 | method public static java.time.Clock fixed(java.time.Instant, java.time.ZoneId); |
| 10548 | method public abstract java.time.ZoneId getZone(); |
| 10549 | method public abstract java.time.Instant instant(); |
| 10550 | method public long millis(); |
| 10551 | method public static java.time.Clock offset(java.time.Clock, java.time.Duration); |
| 10552 | method public static java.time.Clock system(java.time.ZoneId); |
| 10553 | method public static java.time.Clock systemDefaultZone(); |
| 10554 | method public static java.time.Clock systemUTC(); |
| 10555 | method public static java.time.Clock tick(java.time.Clock, java.time.Duration); |
| 10556 | method public static java.time.Clock tickMinutes(java.time.ZoneId); |
| 10557 | method public static java.time.Clock tickSeconds(java.time.ZoneId); |
| 10558 | method public abstract java.time.Clock withZone(java.time.ZoneId); |
| 10559 | } |
| 10560 | |
| 10561 | public class DateTimeException extends java.lang.RuntimeException { |
| 10562 | ctor public DateTimeException(String); |
| 10563 | ctor public DateTimeException(String, Throwable); |
| 10564 | } |
| 10565 | |
| 10566 | public enum DayOfWeek implements java.time.temporal.TemporalAccessor java.time.temporal.TemporalAdjuster { |
| 10567 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 10568 | method public static java.time.DayOfWeek from(java.time.temporal.TemporalAccessor); |
| 10569 | method public String getDisplayName(java.time.format.TextStyle, java.util.Locale); |
| 10570 | method public long getLong(java.time.temporal.TemporalField); |
| 10571 | method public int getValue(); |
| 10572 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 10573 | method public java.time.DayOfWeek minus(long); |
| 10574 | method public static java.time.DayOfWeek of(int); |
| 10575 | method public java.time.DayOfWeek plus(long); |
| 10576 | enum_constant public static final java.time.DayOfWeek FRIDAY; |
| 10577 | enum_constant public static final java.time.DayOfWeek MONDAY; |
| 10578 | enum_constant public static final java.time.DayOfWeek SATURDAY; |
| 10579 | enum_constant public static final java.time.DayOfWeek SUNDAY; |
| 10580 | enum_constant public static final java.time.DayOfWeek THURSDAY; |
| 10581 | enum_constant public static final java.time.DayOfWeek TUESDAY; |
| 10582 | enum_constant public static final java.time.DayOfWeek WEDNESDAY; |
| 10583 | } |
| 10584 | |
| 10585 | public final class Duration implements java.lang.Comparable<java.time.Duration> java.io.Serializable java.time.temporal.TemporalAmount { |
| 10586 | method public java.time.Duration abs(); |
| 10587 | method public java.time.temporal.Temporal addTo(java.time.temporal.Temporal); |
| 10588 | method public static java.time.Duration between(java.time.temporal.Temporal, java.time.temporal.Temporal); |
| 10589 | method public int compareTo(java.time.Duration); |
| 10590 | method public java.time.Duration dividedBy(long); |
| 10591 | method public static java.time.Duration from(java.time.temporal.TemporalAmount); |
| 10592 | method public long get(java.time.temporal.TemporalUnit); |
| 10593 | method public int getNano(); |
| 10594 | method public long getSeconds(); |
| 10595 | method public java.util.List<java.time.temporal.TemporalUnit> getUnits(); |
| 10596 | method public boolean isNegative(); |
| 10597 | method public boolean isZero(); |
| 10598 | method public java.time.Duration minus(java.time.Duration); |
| 10599 | method public java.time.Duration minus(long, java.time.temporal.TemporalUnit); |
| 10600 | method public java.time.Duration minusDays(long); |
| 10601 | method public java.time.Duration minusHours(long); |
| 10602 | method public java.time.Duration minusMillis(long); |
| 10603 | method public java.time.Duration minusMinutes(long); |
| 10604 | method public java.time.Duration minusNanos(long); |
| 10605 | method public java.time.Duration minusSeconds(long); |
| 10606 | method public java.time.Duration multipliedBy(long); |
| 10607 | method public java.time.Duration negated(); |
| 10608 | method public static java.time.Duration of(long, java.time.temporal.TemporalUnit); |
| 10609 | method public static java.time.Duration ofDays(long); |
| 10610 | method public static java.time.Duration ofHours(long); |
| 10611 | method public static java.time.Duration ofMillis(long); |
| 10612 | method public static java.time.Duration ofMinutes(long); |
| 10613 | method public static java.time.Duration ofNanos(long); |
| 10614 | method public static java.time.Duration ofSeconds(long); |
| 10615 | method public static java.time.Duration ofSeconds(long, long); |
| 10616 | method public static java.time.Duration parse(CharSequence); |
| 10617 | method public java.time.Duration plus(java.time.Duration); |
| 10618 | method public java.time.Duration plus(long, java.time.temporal.TemporalUnit); |
| 10619 | method public java.time.Duration plusDays(long); |
| 10620 | method public java.time.Duration plusHours(long); |
| 10621 | method public java.time.Duration plusMillis(long); |
| 10622 | method public java.time.Duration plusMinutes(long); |
| 10623 | method public java.time.Duration plusNanos(long); |
| 10624 | method public java.time.Duration plusSeconds(long); |
| 10625 | method public java.time.temporal.Temporal subtractFrom(java.time.temporal.Temporal); |
| 10626 | method public long toDays(); |
| 10627 | method public long toHours(); |
| 10628 | method public long toMillis(); |
| 10629 | method public long toMinutes(); |
| 10630 | method public long toNanos(); |
| 10631 | method public java.time.Duration withNanos(int); |
| 10632 | method public java.time.Duration withSeconds(long); |
| 10633 | field public static final java.time.Duration ZERO; |
| 10634 | } |
| 10635 | |
| 10636 | public final class Instant implements java.lang.Comparable<java.time.Instant> java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 10637 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 10638 | method public java.time.OffsetDateTime atOffset(java.time.ZoneOffset); |
| 10639 | method public java.time.ZonedDateTime atZone(java.time.ZoneId); |
| 10640 | method public int compareTo(java.time.Instant); |
| 10641 | method public static java.time.Instant from(java.time.temporal.TemporalAccessor); |
| 10642 | method public long getEpochSecond(); |
| 10643 | method public long getLong(java.time.temporal.TemporalField); |
| 10644 | method public int getNano(); |
| 10645 | method public boolean isAfter(java.time.Instant); |
| 10646 | method public boolean isBefore(java.time.Instant); |
| 10647 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 10648 | method public boolean isSupported(java.time.temporal.TemporalUnit); |
| 10649 | method public java.time.Instant minus(java.time.temporal.TemporalAmount); |
| 10650 | method public java.time.Instant minus(long, java.time.temporal.TemporalUnit); |
| 10651 | method public java.time.Instant minusMillis(long); |
| 10652 | method public java.time.Instant minusNanos(long); |
| 10653 | method public java.time.Instant minusSeconds(long); |
| 10654 | method public static java.time.Instant now(); |
| 10655 | method public static java.time.Instant now(java.time.Clock); |
| 10656 | method public static java.time.Instant ofEpochMilli(long); |
| 10657 | method public static java.time.Instant ofEpochSecond(long); |
| 10658 | method public static java.time.Instant ofEpochSecond(long, long); |
| 10659 | method public static java.time.Instant parse(CharSequence); |
| 10660 | method public java.time.Instant plus(java.time.temporal.TemporalAmount); |
| 10661 | method public java.time.Instant plus(long, java.time.temporal.TemporalUnit); |
| 10662 | method public java.time.Instant plusMillis(long); |
| 10663 | method public java.time.Instant plusNanos(long); |
| 10664 | method public java.time.Instant plusSeconds(long); |
| 10665 | method public long toEpochMilli(); |
| 10666 | method public java.time.Instant truncatedTo(java.time.temporal.TemporalUnit); |
| 10667 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 10668 | method public java.time.Instant with(java.time.temporal.TemporalAdjuster); |
| 10669 | method public java.time.Instant with(java.time.temporal.TemporalField, long); |
| 10670 | field public static final java.time.Instant EPOCH; |
| 10671 | field public static final java.time.Instant MAX; |
| 10672 | field public static final java.time.Instant MIN; |
| 10673 | } |
| 10674 | |
| 10675 | public final class LocalDate implements java.time.chrono.ChronoLocalDate java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 10676 | method public java.time.LocalDateTime atStartOfDay(); |
| 10677 | method public java.time.ZonedDateTime atStartOfDay(java.time.ZoneId); |
| 10678 | method public java.time.LocalDateTime atTime(java.time.LocalTime); |
| 10679 | method public java.time.LocalDateTime atTime(int, int); |
| 10680 | method public java.time.LocalDateTime atTime(int, int, int); |
| 10681 | method public java.time.LocalDateTime atTime(int, int, int, int); |
| 10682 | method public java.time.OffsetDateTime atTime(java.time.OffsetTime); |
| 10683 | method public static java.time.LocalDate from(java.time.temporal.TemporalAccessor); |
| 10684 | method public java.time.chrono.IsoChronology getChronology(); |
| 10685 | method public int getDayOfMonth(); |
| 10686 | method public java.time.DayOfWeek getDayOfWeek(); |
| 10687 | method public int getDayOfYear(); |
| 10688 | method public long getLong(java.time.temporal.TemporalField); |
| 10689 | method public java.time.Month getMonth(); |
| 10690 | method public int getMonthValue(); |
| 10691 | method public int getYear(); |
| 10692 | method public int lengthOfMonth(); |
| 10693 | method public java.time.LocalDate minus(java.time.temporal.TemporalAmount); |
| 10694 | method public java.time.LocalDate minus(long, java.time.temporal.TemporalUnit); |
| 10695 | method public java.time.LocalDate minusDays(long); |
| 10696 | method public java.time.LocalDate minusMonths(long); |
| 10697 | method public java.time.LocalDate minusWeeks(long); |
| 10698 | method public java.time.LocalDate minusYears(long); |
| 10699 | method public static java.time.LocalDate now(); |
| 10700 | method public static java.time.LocalDate now(java.time.ZoneId); |
| 10701 | method public static java.time.LocalDate now(java.time.Clock); |
| 10702 | method public static java.time.LocalDate of(int, java.time.Month, int); |
| 10703 | method public static java.time.LocalDate of(int, int, int); |
| 10704 | method public static java.time.LocalDate ofEpochDay(long); |
| 10705 | method public static java.time.LocalDate ofYearDay(int, int); |
| 10706 | method public static java.time.LocalDate parse(CharSequence); |
| 10707 | method public static java.time.LocalDate parse(CharSequence, java.time.format.DateTimeFormatter); |
| 10708 | method public java.time.LocalDate plus(java.time.temporal.TemporalAmount); |
| 10709 | method public java.time.LocalDate plus(long, java.time.temporal.TemporalUnit); |
| 10710 | method public java.time.LocalDate plusDays(long); |
| 10711 | method public java.time.LocalDate plusMonths(long); |
| 10712 | method public java.time.LocalDate plusWeeks(long); |
| 10713 | method public java.time.LocalDate plusYears(long); |
| 10714 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 10715 | method public java.time.Period until(java.time.chrono.ChronoLocalDate); |
| 10716 | method public java.time.LocalDate with(java.time.temporal.TemporalAdjuster); |
| 10717 | method public java.time.LocalDate with(java.time.temporal.TemporalField, long); |
| 10718 | method public java.time.LocalDate withDayOfMonth(int); |
| 10719 | method public java.time.LocalDate withDayOfYear(int); |
| 10720 | method public java.time.LocalDate withMonth(int); |
| 10721 | method public java.time.LocalDate withYear(int); |
| 10722 | field public static final java.time.LocalDate MAX; |
| 10723 | field public static final java.time.LocalDate MIN; |
| 10724 | } |
| 10725 | |
| 10726 | public final class LocalDateTime implements java.time.chrono.ChronoLocalDateTime<java.time.LocalDate> java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 10727 | method public java.time.OffsetDateTime atOffset(java.time.ZoneOffset); |
| 10728 | method public java.time.ZonedDateTime atZone(java.time.ZoneId); |
| 10729 | method public static java.time.LocalDateTime from(java.time.temporal.TemporalAccessor); |
| 10730 | method public int getDayOfMonth(); |
| 10731 | method public java.time.DayOfWeek getDayOfWeek(); |
| 10732 | method public int getDayOfYear(); |
| 10733 | method public int getHour(); |
| 10734 | method public long getLong(java.time.temporal.TemporalField); |
| 10735 | method public int getMinute(); |
| 10736 | method public java.time.Month getMonth(); |
| 10737 | method public int getMonthValue(); |
| 10738 | method public int getNano(); |
| 10739 | method public int getSecond(); |
| 10740 | method public int getYear(); |
| 10741 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 10742 | method public java.time.LocalDateTime minus(java.time.temporal.TemporalAmount); |
| 10743 | method public java.time.LocalDateTime minus(long, java.time.temporal.TemporalUnit); |
| 10744 | method public java.time.LocalDateTime minusDays(long); |
| 10745 | method public java.time.LocalDateTime minusHours(long); |
| 10746 | method public java.time.LocalDateTime minusMinutes(long); |
| 10747 | method public java.time.LocalDateTime minusMonths(long); |
| 10748 | method public java.time.LocalDateTime minusNanos(long); |
| 10749 | method public java.time.LocalDateTime minusSeconds(long); |
| 10750 | method public java.time.LocalDateTime minusWeeks(long); |
| 10751 | method public java.time.LocalDateTime minusYears(long); |
| 10752 | method public static java.time.LocalDateTime now(); |
| 10753 | method public static java.time.LocalDateTime now(java.time.ZoneId); |
| 10754 | method public static java.time.LocalDateTime now(java.time.Clock); |
| 10755 | method public static java.time.LocalDateTime of(int, java.time.Month, int, int, int); |
| 10756 | method public static java.time.LocalDateTime of(int, java.time.Month, int, int, int, int); |
| 10757 | method public static java.time.LocalDateTime of(int, java.time.Month, int, int, int, int, int); |
| 10758 | method public static java.time.LocalDateTime of(int, int, int, int, int); |
| 10759 | method public static java.time.LocalDateTime of(int, int, int, int, int, int); |
| 10760 | method public static java.time.LocalDateTime of(int, int, int, int, int, int, int); |
| 10761 | method public static java.time.LocalDateTime of(java.time.LocalDate, java.time.LocalTime); |
| 10762 | method public static java.time.LocalDateTime ofEpochSecond(long, int, java.time.ZoneOffset); |
| 10763 | method public static java.time.LocalDateTime ofInstant(java.time.Instant, java.time.ZoneId); |
| 10764 | method public static java.time.LocalDateTime parse(CharSequence); |
| 10765 | method public static java.time.LocalDateTime parse(CharSequence, java.time.format.DateTimeFormatter); |
| 10766 | method public java.time.LocalDateTime plus(java.time.temporal.TemporalAmount); |
| 10767 | method public java.time.LocalDateTime plus(long, java.time.temporal.TemporalUnit); |
| 10768 | method public java.time.LocalDateTime plusDays(long); |
| 10769 | method public java.time.LocalDateTime plusHours(long); |
| 10770 | method public java.time.LocalDateTime plusMinutes(long); |
| 10771 | method public java.time.LocalDateTime plusMonths(long); |
| 10772 | method public java.time.LocalDateTime plusNanos(long); |
| 10773 | method public java.time.LocalDateTime plusSeconds(long); |
| 10774 | method public java.time.LocalDateTime plusWeeks(long); |
| 10775 | method public java.time.LocalDateTime plusYears(long); |
| 10776 | method public java.time.LocalDate toLocalDate(); |
| 10777 | method public java.time.LocalTime toLocalTime(); |
| 10778 | method public java.time.LocalDateTime truncatedTo(java.time.temporal.TemporalUnit); |
| 10779 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 10780 | method public java.time.LocalDateTime with(java.time.temporal.TemporalAdjuster); |
| 10781 | method public java.time.LocalDateTime with(java.time.temporal.TemporalField, long); |
| 10782 | method public java.time.LocalDateTime withDayOfMonth(int); |
| 10783 | method public java.time.LocalDateTime withDayOfYear(int); |
| 10784 | method public java.time.LocalDateTime withHour(int); |
| 10785 | method public java.time.LocalDateTime withMinute(int); |
| 10786 | method public java.time.LocalDateTime withMonth(int); |
| 10787 | method public java.time.LocalDateTime withNano(int); |
| 10788 | method public java.time.LocalDateTime withSecond(int); |
| 10789 | method public java.time.LocalDateTime withYear(int); |
| 10790 | field public static final java.time.LocalDateTime MAX; |
| 10791 | field public static final java.time.LocalDateTime MIN; |
| 10792 | } |
| 10793 | |
| 10794 | public final class LocalTime implements java.lang.Comparable<java.time.LocalTime> java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 10795 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 10796 | method public java.time.LocalDateTime atDate(java.time.LocalDate); |
| 10797 | method public java.time.OffsetTime atOffset(java.time.ZoneOffset); |
| 10798 | method public int compareTo(java.time.LocalTime); |
| 10799 | method public String format(java.time.format.DateTimeFormatter); |
| 10800 | method public static java.time.LocalTime from(java.time.temporal.TemporalAccessor); |
| 10801 | method public int getHour(); |
| 10802 | method public long getLong(java.time.temporal.TemporalField); |
| 10803 | method public int getMinute(); |
| 10804 | method public int getNano(); |
| 10805 | method public int getSecond(); |
| 10806 | method public boolean isAfter(java.time.LocalTime); |
| 10807 | method public boolean isBefore(java.time.LocalTime); |
| 10808 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 10809 | method public boolean isSupported(java.time.temporal.TemporalUnit); |
| 10810 | method public java.time.LocalTime minus(java.time.temporal.TemporalAmount); |
| 10811 | method public java.time.LocalTime minus(long, java.time.temporal.TemporalUnit); |
| 10812 | method public java.time.LocalTime minusHours(long); |
| 10813 | method public java.time.LocalTime minusMinutes(long); |
| 10814 | method public java.time.LocalTime minusNanos(long); |
| 10815 | method public java.time.LocalTime minusSeconds(long); |
| 10816 | method public static java.time.LocalTime now(); |
| 10817 | method public static java.time.LocalTime now(java.time.ZoneId); |
| 10818 | method public static java.time.LocalTime now(java.time.Clock); |
| 10819 | method public static java.time.LocalTime of(int, int); |
| 10820 | method public static java.time.LocalTime of(int, int, int); |
| 10821 | method public static java.time.LocalTime of(int, int, int, int); |
Nikita Iashchenko | 7e5592b | 2020-12-11 10:00:50 +0000 | [diff] [blame^] | 10822 | method public static java.time.LocalTime ofInstant(java.time.Instant, java.time.ZoneId); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 10823 | method public static java.time.LocalTime ofNanoOfDay(long); |
| 10824 | method public static java.time.LocalTime ofSecondOfDay(long); |
| 10825 | method public static java.time.LocalTime parse(CharSequence); |
| 10826 | method public static java.time.LocalTime parse(CharSequence, java.time.format.DateTimeFormatter); |
| 10827 | method public java.time.LocalTime plus(java.time.temporal.TemporalAmount); |
| 10828 | method public java.time.LocalTime plus(long, java.time.temporal.TemporalUnit); |
| 10829 | method public java.time.LocalTime plusHours(long); |
| 10830 | method public java.time.LocalTime plusMinutes(long); |
| 10831 | method public java.time.LocalTime plusNanos(long); |
| 10832 | method public java.time.LocalTime plusSeconds(long); |
Nikita Iashchenko | 7e5592b | 2020-12-11 10:00:50 +0000 | [diff] [blame^] | 10833 | method public long toEpochSecond(java.time.LocalDate, java.time.ZoneOffset); |
Paul Duffin | c9abfe9 | 2020-09-10 10:48:09 +0100 | [diff] [blame] | 10834 | method public long toNanoOfDay(); |
| 10835 | method public int toSecondOfDay(); |
| 10836 | method public java.time.LocalTime truncatedTo(java.time.temporal.TemporalUnit); |
| 10837 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 10838 | method public java.time.LocalTime with(java.time.temporal.TemporalAdjuster); |
| 10839 | method public java.time.LocalTime with(java.time.temporal.TemporalField, long); |
| 10840 | method public java.time.LocalTime withHour(int); |
| 10841 | method public java.time.LocalTime withMinute(int); |
| 10842 | method public java.time.LocalTime withNano(int); |
| 10843 | method public java.time.LocalTime withSecond(int); |
| 10844 | field public static final java.time.LocalTime MAX; |
| 10845 | field public static final java.time.LocalTime MIDNIGHT; |
| 10846 | field public static final java.time.LocalTime MIN; |
| 10847 | field public static final java.time.LocalTime NOON; |
| 10848 | } |
| 10849 | |
| 10850 | public enum Month implements java.time.temporal.TemporalAccessor java.time.temporal.TemporalAdjuster { |
| 10851 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 10852 | method public int firstDayOfYear(boolean); |
| 10853 | method public java.time.Month firstMonthOfQuarter(); |
| 10854 | method public static java.time.Month from(java.time.temporal.TemporalAccessor); |
| 10855 | method public String getDisplayName(java.time.format.TextStyle, java.util.Locale); |
| 10856 | method public long getLong(java.time.temporal.TemporalField); |
| 10857 | method public int getValue(); |
| 10858 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 10859 | method public int length(boolean); |
| 10860 | method public int maxLength(); |
| 10861 | method public int minLength(); |
| 10862 | method public java.time.Month minus(long); |
| 10863 | method public static java.time.Month of(int); |
| 10864 | method public java.time.Month plus(long); |
| 10865 | enum_constant public static final java.time.Month APRIL; |
| 10866 | enum_constant public static final java.time.Month AUGUST; |
| 10867 | enum_constant public static final java.time.Month DECEMBER; |
| 10868 | enum_constant public static final java.time.Month FEBRUARY; |
| 10869 | enum_constant public static final java.time.Month JANUARY; |
| 10870 | enum_constant public static final java.time.Month JULY; |
| 10871 | enum_constant public static final java.time.Month JUNE; |
| 10872 | enum_constant public static final java.time.Month MARCH; |
| 10873 | enum_constant public static final java.time.Month MAY; |
| 10874 | enum_constant public static final java.time.Month NOVEMBER; |
| 10875 | enum_constant public static final java.time.Month OCTOBER; |
| 10876 | enum_constant public static final java.time.Month SEPTEMBER; |
| 10877 | } |
| 10878 | |
| 10879 | public final class MonthDay implements java.lang.Comparable<java.time.MonthDay> java.io.Serializable java.time.temporal.TemporalAccessor java.time.temporal.TemporalAdjuster { |
| 10880 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 10881 | method public java.time.LocalDate atYear(int); |
| 10882 | method public int compareTo(java.time.MonthDay); |
| 10883 | method public String format(java.time.format.DateTimeFormatter); |
| 10884 | method public static java.time.MonthDay from(java.time.temporal.TemporalAccessor); |
| 10885 | method public int getDayOfMonth(); |
| 10886 | method public long getLong(java.time.temporal.TemporalField); |
| 10887 | method public java.time.Month getMonth(); |
| 10888 | method public int getMonthValue(); |
| 10889 | method public boolean isAfter(java.time.MonthDay); |
| 10890 | method public boolean isBefore(java.time.MonthDay); |
| 10891 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 10892 | method public boolean isValidYear(int); |
| 10893 | method public static java.time.MonthDay now(); |
| 10894 | method public static java.time.MonthDay now(java.time.ZoneId); |
| 10895 | method public static java.time.MonthDay now(java.time.Clock); |
| 10896 | method public static java.time.MonthDay of(java.time.Month, int); |
| 10897 | method public static java.time.MonthDay of(int, int); |
| 10898 | method public static java.time.MonthDay parse(CharSequence); |
| 10899 | method public static java.time.MonthDay parse(CharSequence, java.time.format.DateTimeFormatter); |
| 10900 | method public java.time.MonthDay with(java.time.Month); |
| 10901 | method public java.time.MonthDay withDayOfMonth(int); |
| 10902 | method public java.time.MonthDay withMonth(int); |
| 10903 | } |
| 10904 | |
| 10905 | public final class OffsetDateTime implements java.lang.Comparable<java.time.OffsetDateTime> java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 10906 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 10907 | method public java.time.ZonedDateTime atZoneSameInstant(java.time.ZoneId); |
| 10908 | method public java.time.ZonedDateTime atZoneSimilarLocal(java.time.ZoneId); |
| 10909 | method public int compareTo(java.time.OffsetDateTime); |
| 10910 | method public String format(java.time.format.DateTimeFormatter); |
| 10911 | method public static java.time.OffsetDateTime from(java.time.temporal.TemporalAccessor); |
| 10912 | method public int getDayOfMonth(); |
| 10913 | method public java.time.DayOfWeek getDayOfWeek(); |
| 10914 | method public int getDayOfYear(); |
| 10915 | method public int getHour(); |
| 10916 | method public long getLong(java.time.temporal.TemporalField); |
| 10917 | method public int getMinute(); |
| 10918 | method public java.time.Month getMonth(); |
| 10919 | method public int getMonthValue(); |
| 10920 | method public int getNano(); |
| 10921 | method public java.time.ZoneOffset getOffset(); |
| 10922 | method public int getSecond(); |
| 10923 | method public int getYear(); |
| 10924 | method public boolean isAfter(java.time.OffsetDateTime); |
| 10925 | method public boolean isBefore(java.time.OffsetDateTime); |
| 10926 | method public boolean isEqual(java.time.OffsetDateTime); |
| 10927 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 10928 | method public boolean isSupported(java.time.temporal.TemporalUnit); |
| 10929 | method public java.time.OffsetDateTime minus(java.time.temporal.TemporalAmount); |
| 10930 | method public java.time.OffsetDateTime minus(long, java.time.temporal.TemporalUnit); |
| 10931 | method public java.time.OffsetDateTime minusDays(long); |
| 10932 | method public java.time.OffsetDateTime minusHours(long); |
| 10933 | method public java.time.OffsetDateTime minusMinutes(long); |
| 10934 | method public java.time.OffsetDateTime minusMonths(long); |
| 10935 | method public java.time.OffsetDateTime minusNanos(long); |
| 10936 | method public java.time.OffsetDateTime minusSeconds(long); |
| 10937 | method public java.time.OffsetDateTime minusWeeks(long); |
| 10938 | method public java.time.OffsetDateTime minusYears(long); |
| 10939 | method public static java.time.OffsetDateTime now(); |
| 10940 | method public static java.time.OffsetDateTime now(java.time.ZoneId); |
| 10941 | method public static java.time.OffsetDateTime now(java.time.Clock); |
| 10942 | method public static java.time.OffsetDateTime of(java.time.LocalDate, java.time.LocalTime, java.time.ZoneOffset); |
| 10943 | method public static java.time.OffsetDateTime of(java.time.LocalDateTime, java.time.ZoneOffset); |
| 10944 | method public static java.time.OffsetDateTime of(int, int, int, int, int, int, int, java.time.ZoneOffset); |
| 10945 | method public static java.time.OffsetDateTime ofInstant(java.time.Instant, java.time.ZoneId); |
| 10946 | method public static java.time.OffsetDateTime parse(CharSequence); |
| 10947 | method public static java.time.OffsetDateTime parse(CharSequence, java.time.format.DateTimeFormatter); |
| 10948 | method public java.time.OffsetDateTime plus(java.time.temporal.TemporalAmount); |
| 10949 | method public java.time.OffsetDateTime plus(long, java.time.temporal.TemporalUnit); |
| 10950 | method public java.time.OffsetDateTime plusDays(long); |
| 10951 | method public java.time.OffsetDateTime plusHours(long); |
| 10952 | method public java.time.OffsetDateTime plusMinutes(long); |
| 10953 | method public java.time.OffsetDateTime plusMonths(long); |
| 10954 | method public java.time.OffsetDateTime plusNanos(long); |
| 10955 | method public java.time.OffsetDateTime plusSeconds(long); |
| 10956 | method public java.time.OffsetDateTime plusWeeks(long); |
| 10957 | method public java.time.OffsetDateTime plusYears(long); |
| 10958 | method public static java.util.Comparator<java.time.OffsetDateTime> timeLineOrder(); |
| 10959 | method public long toEpochSecond(); |
| 10960 | method public java.time.Instant toInstant(); |
| 10961 | method public java.time.LocalDate toLocalDate(); |
| 10962 | method public java.time.LocalDateTime toLocalDateTime(); |
| 10963 | method public java.time.LocalTime toLocalTime(); |
| 10964 | method public java.time.OffsetTime toOffsetTime(); |
| 10965 | method public java.time.ZonedDateTime toZonedDateTime(); |
| 10966 | method public java.time.OffsetDateTime truncatedTo(java.time.temporal.TemporalUnit); |
| 10967 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 10968 | method public java.time.OffsetDateTime with(java.time.temporal.TemporalAdjuster); |
| 10969 | method public java.time.OffsetDateTime with(java.time.temporal.TemporalField, long); |
| 10970 | method public java.time.OffsetDateTime withDayOfMonth(int); |
| 10971 | method public java.time.OffsetDateTime withDayOfYear(int); |
| 10972 | method public java.time.OffsetDateTime withHour(int); |
| 10973 | method public java.time.OffsetDateTime withMinute(int); |
| 10974 | method public java.time.OffsetDateTime withMonth(int); |
| 10975 | method public java.time.OffsetDateTime withNano(int); |
| 10976 | method public java.time.OffsetDateTime withOffsetSameInstant(java.time.ZoneOffset); |
| 10977 | method public java.time.OffsetDateTime withOffsetSameLocal(java.time.ZoneOffset); |
| 10978 | method public java.time.OffsetDateTime withSecond(int); |
| 10979 | method public java.time.OffsetDateTime withYear(int); |
| 10980 | field public static final java.time.OffsetDateTime MAX; |
| 10981 | field public static final java.time.OffsetDateTime MIN; |
| 10982 | } |
| 10983 | |
| 10984 | public final class OffsetTime implements java.lang.Comparable<java.time.OffsetTime> java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 10985 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 10986 | method public java.time.OffsetDateTime atDate(java.time.LocalDate); |
| 10987 | method public int compareTo(java.time.OffsetTime); |
| 10988 | method public String format(java.time.format.DateTimeFormatter); |
| 10989 | method public static java.time.OffsetTime from(java.time.temporal.TemporalAccessor); |
| 10990 | method public int getHour(); |
| 10991 | method public long getLong(java.time.temporal.TemporalField); |
| 10992 | method public int getMinute(); |
| 10993 | method public int getNano(); |
| 10994 | method public java.time.ZoneOffset getOffset(); |
| 10995 | method public int getSecond(); |
| 10996 | method public boolean isAfter(java.time.OffsetTime); |
| 10997 | method public boolean isBefore(java.time.OffsetTime); |
| 10998 | method public boolean isEqual(java.time.OffsetTime); |
| 10999 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 11000 | method public boolean isSupported(java.time.temporal.TemporalUnit); |
| 11001 | method public java.time.OffsetTime minus(java.time.temporal.TemporalAmount); |
| 11002 | method public java.time.OffsetTime minus(long, java.time.temporal.TemporalUnit); |
| 11003 | method public java.time.OffsetTime minusHours(long); |
| 11004 | method public java.time.OffsetTime minusMinutes(long); |
| 11005 | method public java.time.OffsetTime minusNanos(long); |
| 11006 | method public java.time.OffsetTime minusSeconds(long); |
| 11007 | method public static java.time.OffsetTime now(); |
| 11008 | method public static java.time.OffsetTime now(java.time.ZoneId); |
| 11009 | method public static java.time.OffsetTime now(java.time.Clock); |
| 11010 | method public static java.time.OffsetTime of(java.time.LocalTime, java.time.ZoneOffset); |
| 11011 | method public static java.time.OffsetTime of(int, int, int, int, java.time.ZoneOffset); |
| 11012 | method public static java.time.OffsetTime ofInstant(java.time.Instant, java.time.ZoneId); |
| 11013 | method public static java.time.OffsetTime parse(CharSequence); |
| 11014 | method public static java.time.OffsetTime parse(CharSequence, java.time.format.DateTimeFormatter); |
| 11015 | method public java.time.OffsetTime plus(java.time.temporal.TemporalAmount); |
| 11016 | method public java.time.OffsetTime plus(long, java.time.temporal.TemporalUnit); |
| 11017 | method public java.time.OffsetTime plusHours(long); |
| 11018 | method public java.time.OffsetTime plusMinutes(long); |
| 11019 | method public java.time.OffsetTime plusNanos(long); |
| 11020 | method public java.time.OffsetTime plusSeconds(long); |
| 11021 | method public java.time.LocalTime toLocalTime(); |
| 11022 | method public java.time.OffsetTime truncatedTo(java.time.temporal.TemporalUnit); |
| 11023 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11024 | method public java.time.OffsetTime with(java.time.temporal.TemporalAdjuster); |
| 11025 | method public java.time.OffsetTime with(java.time.temporal.TemporalField, long); |
| 11026 | method public java.time.OffsetTime withHour(int); |
| 11027 | method public java.time.OffsetTime withMinute(int); |
| 11028 | method public java.time.OffsetTime withNano(int); |
| 11029 | method public java.time.OffsetTime withOffsetSameInstant(java.time.ZoneOffset); |
| 11030 | method public java.time.OffsetTime withOffsetSameLocal(java.time.ZoneOffset); |
| 11031 | method public java.time.OffsetTime withSecond(int); |
| 11032 | field public static final java.time.OffsetTime MAX; |
| 11033 | field public static final java.time.OffsetTime MIN; |
| 11034 | } |
| 11035 | |
| 11036 | public final class Period implements java.time.chrono.ChronoPeriod java.io.Serializable { |
| 11037 | method public java.time.temporal.Temporal addTo(java.time.temporal.Temporal); |
| 11038 | method public static java.time.Period between(java.time.LocalDate, java.time.LocalDate); |
| 11039 | method public static java.time.Period from(java.time.temporal.TemporalAmount); |
| 11040 | method public long get(java.time.temporal.TemporalUnit); |
| 11041 | method public java.time.chrono.IsoChronology getChronology(); |
| 11042 | method public int getDays(); |
| 11043 | method public int getMonths(); |
| 11044 | method public java.util.List<java.time.temporal.TemporalUnit> getUnits(); |
| 11045 | method public int getYears(); |
| 11046 | method public java.time.Period minus(java.time.temporal.TemporalAmount); |
| 11047 | method public java.time.Period minusDays(long); |
| 11048 | method public java.time.Period minusMonths(long); |
| 11049 | method public java.time.Period minusYears(long); |
| 11050 | method public java.time.Period multipliedBy(int); |
| 11051 | method public java.time.Period negated(); |
| 11052 | method public java.time.Period normalized(); |
| 11053 | method public static java.time.Period of(int, int, int); |
| 11054 | method public static java.time.Period ofDays(int); |
| 11055 | method public static java.time.Period ofMonths(int); |
| 11056 | method public static java.time.Period ofWeeks(int); |
| 11057 | method public static java.time.Period ofYears(int); |
| 11058 | method public static java.time.Period parse(CharSequence); |
| 11059 | method public java.time.Period plus(java.time.temporal.TemporalAmount); |
| 11060 | method public java.time.Period plusDays(long); |
| 11061 | method public java.time.Period plusMonths(long); |
| 11062 | method public java.time.Period plusYears(long); |
| 11063 | method public java.time.temporal.Temporal subtractFrom(java.time.temporal.Temporal); |
| 11064 | method public long toTotalMonths(); |
| 11065 | method public java.time.Period withDays(int); |
| 11066 | method public java.time.Period withMonths(int); |
| 11067 | method public java.time.Period withYears(int); |
| 11068 | field public static final java.time.Period ZERO; |
| 11069 | } |
| 11070 | |
| 11071 | public final class Year implements java.lang.Comparable<java.time.Year> java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 11072 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 11073 | method public java.time.LocalDate atDay(int); |
| 11074 | method public java.time.YearMonth atMonth(java.time.Month); |
| 11075 | method public java.time.YearMonth atMonth(int); |
| 11076 | method public java.time.LocalDate atMonthDay(java.time.MonthDay); |
| 11077 | method public int compareTo(java.time.Year); |
| 11078 | method public String format(java.time.format.DateTimeFormatter); |
| 11079 | method public static java.time.Year from(java.time.temporal.TemporalAccessor); |
| 11080 | method public long getLong(java.time.temporal.TemporalField); |
| 11081 | method public int getValue(); |
| 11082 | method public boolean isAfter(java.time.Year); |
| 11083 | method public boolean isBefore(java.time.Year); |
| 11084 | method public static boolean isLeap(long); |
| 11085 | method public boolean isLeap(); |
| 11086 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 11087 | method public boolean isSupported(java.time.temporal.TemporalUnit); |
| 11088 | method public boolean isValidMonthDay(java.time.MonthDay); |
| 11089 | method public int length(); |
| 11090 | method public java.time.Year minus(java.time.temporal.TemporalAmount); |
| 11091 | method public java.time.Year minus(long, java.time.temporal.TemporalUnit); |
| 11092 | method public java.time.Year minusYears(long); |
| 11093 | method public static java.time.Year now(); |
| 11094 | method public static java.time.Year now(java.time.ZoneId); |
| 11095 | method public static java.time.Year now(java.time.Clock); |
| 11096 | method public static java.time.Year of(int); |
| 11097 | method public static java.time.Year parse(CharSequence); |
| 11098 | method public static java.time.Year parse(CharSequence, java.time.format.DateTimeFormatter); |
| 11099 | method public java.time.Year plus(java.time.temporal.TemporalAmount); |
| 11100 | method public java.time.Year plus(long, java.time.temporal.TemporalUnit); |
| 11101 | method public java.time.Year plusYears(long); |
| 11102 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11103 | method public java.time.Year with(java.time.temporal.TemporalAdjuster); |
| 11104 | method public java.time.Year with(java.time.temporal.TemporalField, long); |
| 11105 | field public static final int MAX_VALUE = 999999999; // 0x3b9ac9ff |
| 11106 | field public static final int MIN_VALUE = -999999999; // 0xc4653601 |
| 11107 | } |
| 11108 | |
| 11109 | public final class YearMonth implements java.lang.Comparable<java.time.YearMonth> java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 11110 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 11111 | method public java.time.LocalDate atDay(int); |
| 11112 | method public java.time.LocalDate atEndOfMonth(); |
| 11113 | method public int compareTo(java.time.YearMonth); |
| 11114 | method public String format(java.time.format.DateTimeFormatter); |
| 11115 | method public static java.time.YearMonth from(java.time.temporal.TemporalAccessor); |
| 11116 | method public long getLong(java.time.temporal.TemporalField); |
| 11117 | method public java.time.Month getMonth(); |
| 11118 | method public int getMonthValue(); |
| 11119 | method public int getYear(); |
| 11120 | method public boolean isAfter(java.time.YearMonth); |
| 11121 | method public boolean isBefore(java.time.YearMonth); |
| 11122 | method public boolean isLeapYear(); |
| 11123 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 11124 | method public boolean isSupported(java.time.temporal.TemporalUnit); |
| 11125 | method public boolean isValidDay(int); |
| 11126 | method public int lengthOfMonth(); |
| 11127 | method public int lengthOfYear(); |
| 11128 | method public java.time.YearMonth minus(java.time.temporal.TemporalAmount); |
| 11129 | method public java.time.YearMonth minus(long, java.time.temporal.TemporalUnit); |
| 11130 | method public java.time.YearMonth minusMonths(long); |
| 11131 | method public java.time.YearMonth minusYears(long); |
| 11132 | method public static java.time.YearMonth now(); |
| 11133 | method public static java.time.YearMonth now(java.time.ZoneId); |
| 11134 | method public static java.time.YearMonth now(java.time.Clock); |
| 11135 | method public static java.time.YearMonth of(int, java.time.Month); |
| 11136 | method public static java.time.YearMonth of(int, int); |
| 11137 | method public static java.time.YearMonth parse(CharSequence); |
| 11138 | method public static java.time.YearMonth parse(CharSequence, java.time.format.DateTimeFormatter); |
| 11139 | method public java.time.YearMonth plus(java.time.temporal.TemporalAmount); |
| 11140 | method public java.time.YearMonth plus(long, java.time.temporal.TemporalUnit); |
| 11141 | method public java.time.YearMonth plusMonths(long); |
| 11142 | method public java.time.YearMonth plusYears(long); |
| 11143 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11144 | method public java.time.YearMonth with(java.time.temporal.TemporalAdjuster); |
| 11145 | method public java.time.YearMonth with(java.time.temporal.TemporalField, long); |
| 11146 | method public java.time.YearMonth withMonth(int); |
| 11147 | method public java.time.YearMonth withYear(int); |
| 11148 | } |
| 11149 | |
| 11150 | public abstract class ZoneId implements java.io.Serializable { |
| 11151 | method public static java.time.ZoneId from(java.time.temporal.TemporalAccessor); |
| 11152 | method public static java.util.Set<java.lang.String> getAvailableZoneIds(); |
| 11153 | method public String getDisplayName(java.time.format.TextStyle, java.util.Locale); |
| 11154 | method public abstract String getId(); |
| 11155 | method public abstract java.time.zone.ZoneRules getRules(); |
| 11156 | method public java.time.ZoneId normalized(); |
| 11157 | method public static java.time.ZoneId of(String, java.util.Map<java.lang.String,java.lang.String>); |
| 11158 | method public static java.time.ZoneId of(String); |
| 11159 | method public static java.time.ZoneId ofOffset(String, java.time.ZoneOffset); |
| 11160 | method public static java.time.ZoneId systemDefault(); |
| 11161 | field public static final java.util.Map<java.lang.String,java.lang.String> SHORT_IDS; |
| 11162 | } |
| 11163 | |
| 11164 | public final class ZoneOffset extends java.time.ZoneId implements java.lang.Comparable<java.time.ZoneOffset> java.io.Serializable java.time.temporal.TemporalAccessor java.time.temporal.TemporalAdjuster { |
| 11165 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 11166 | method public int compareTo(java.time.ZoneOffset); |
| 11167 | method public static java.time.ZoneOffset from(java.time.temporal.TemporalAccessor); |
| 11168 | method public String getId(); |
| 11169 | method public long getLong(java.time.temporal.TemporalField); |
| 11170 | method public java.time.zone.ZoneRules getRules(); |
| 11171 | method public int getTotalSeconds(); |
| 11172 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 11173 | method public static java.time.ZoneOffset of(String); |
| 11174 | method public static java.time.ZoneOffset ofHours(int); |
| 11175 | method public static java.time.ZoneOffset ofHoursMinutes(int, int); |
| 11176 | method public static java.time.ZoneOffset ofHoursMinutesSeconds(int, int, int); |
| 11177 | method public static java.time.ZoneOffset ofTotalSeconds(int); |
| 11178 | field public static final java.time.ZoneOffset MAX; |
| 11179 | field public static final java.time.ZoneOffset MIN; |
| 11180 | field public static final java.time.ZoneOffset UTC; |
| 11181 | } |
| 11182 | |
| 11183 | public final class ZonedDateTime implements java.time.chrono.ChronoZonedDateTime<java.time.LocalDate> java.io.Serializable java.time.temporal.Temporal { |
| 11184 | method public static java.time.ZonedDateTime from(java.time.temporal.TemporalAccessor); |
| 11185 | method public int getDayOfMonth(); |
| 11186 | method public java.time.DayOfWeek getDayOfWeek(); |
| 11187 | method public int getDayOfYear(); |
| 11188 | method public int getHour(); |
| 11189 | method public int getMinute(); |
| 11190 | method public java.time.Month getMonth(); |
| 11191 | method public int getMonthValue(); |
| 11192 | method public int getNano(); |
| 11193 | method public java.time.ZoneOffset getOffset(); |
| 11194 | method public int getSecond(); |
| 11195 | method public int getYear(); |
| 11196 | method public java.time.ZoneId getZone(); |
| 11197 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 11198 | method public java.time.ZonedDateTime minus(java.time.temporal.TemporalAmount); |
| 11199 | method public java.time.ZonedDateTime minus(long, java.time.temporal.TemporalUnit); |
| 11200 | method public java.time.ZonedDateTime minusDays(long); |
| 11201 | method public java.time.ZonedDateTime minusHours(long); |
| 11202 | method public java.time.ZonedDateTime minusMinutes(long); |
| 11203 | method public java.time.ZonedDateTime minusMonths(long); |
| 11204 | method public java.time.ZonedDateTime minusNanos(long); |
| 11205 | method public java.time.ZonedDateTime minusSeconds(long); |
| 11206 | method public java.time.ZonedDateTime minusWeeks(long); |
| 11207 | method public java.time.ZonedDateTime minusYears(long); |
| 11208 | method public static java.time.ZonedDateTime now(); |
| 11209 | method public static java.time.ZonedDateTime now(java.time.ZoneId); |
| 11210 | method public static java.time.ZonedDateTime now(java.time.Clock); |
| 11211 | method public static java.time.ZonedDateTime of(java.time.LocalDate, java.time.LocalTime, java.time.ZoneId); |
| 11212 | method public static java.time.ZonedDateTime of(java.time.LocalDateTime, java.time.ZoneId); |
| 11213 | method public static java.time.ZonedDateTime of(int, int, int, int, int, int, int, java.time.ZoneId); |
| 11214 | method public static java.time.ZonedDateTime ofInstant(java.time.Instant, java.time.ZoneId); |
| 11215 | method public static java.time.ZonedDateTime ofInstant(java.time.LocalDateTime, java.time.ZoneOffset, java.time.ZoneId); |
| 11216 | method public static java.time.ZonedDateTime ofLocal(java.time.LocalDateTime, java.time.ZoneId, java.time.ZoneOffset); |
| 11217 | method public static java.time.ZonedDateTime ofStrict(java.time.LocalDateTime, java.time.ZoneOffset, java.time.ZoneId); |
| 11218 | method public static java.time.ZonedDateTime parse(CharSequence); |
| 11219 | method public static java.time.ZonedDateTime parse(CharSequence, java.time.format.DateTimeFormatter); |
| 11220 | method public java.time.ZonedDateTime plus(java.time.temporal.TemporalAmount); |
| 11221 | method public java.time.ZonedDateTime plus(long, java.time.temporal.TemporalUnit); |
| 11222 | method public java.time.ZonedDateTime plusDays(long); |
| 11223 | method public java.time.ZonedDateTime plusHours(long); |
| 11224 | method public java.time.ZonedDateTime plusMinutes(long); |
| 11225 | method public java.time.ZonedDateTime plusMonths(long); |
| 11226 | method public java.time.ZonedDateTime plusNanos(long); |
| 11227 | method public java.time.ZonedDateTime plusSeconds(long); |
| 11228 | method public java.time.ZonedDateTime plusWeeks(long); |
| 11229 | method public java.time.ZonedDateTime plusYears(long); |
| 11230 | method public java.time.LocalDate toLocalDate(); |
| 11231 | method public java.time.LocalDateTime toLocalDateTime(); |
| 11232 | method public java.time.OffsetDateTime toOffsetDateTime(); |
| 11233 | method public java.time.ZonedDateTime truncatedTo(java.time.temporal.TemporalUnit); |
| 11234 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11235 | method public java.time.ZonedDateTime with(java.time.temporal.TemporalAdjuster); |
| 11236 | method public java.time.ZonedDateTime with(java.time.temporal.TemporalField, long); |
| 11237 | method public java.time.ZonedDateTime withDayOfMonth(int); |
| 11238 | method public java.time.ZonedDateTime withDayOfYear(int); |
| 11239 | method public java.time.ZonedDateTime withEarlierOffsetAtOverlap(); |
| 11240 | method public java.time.ZonedDateTime withFixedOffsetZone(); |
| 11241 | method public java.time.ZonedDateTime withHour(int); |
| 11242 | method public java.time.ZonedDateTime withLaterOffsetAtOverlap(); |
| 11243 | method public java.time.ZonedDateTime withMinute(int); |
| 11244 | method public java.time.ZonedDateTime withMonth(int); |
| 11245 | method public java.time.ZonedDateTime withNano(int); |
| 11246 | method public java.time.ZonedDateTime withSecond(int); |
| 11247 | method public java.time.ZonedDateTime withYear(int); |
| 11248 | method public java.time.ZonedDateTime withZoneSameInstant(java.time.ZoneId); |
| 11249 | method public java.time.ZonedDateTime withZoneSameLocal(java.time.ZoneId); |
| 11250 | } |
| 11251 | |
| 11252 | } |
| 11253 | |
| 11254 | package java.time.chrono { |
| 11255 | |
| 11256 | public abstract class AbstractChronology implements java.time.chrono.Chronology { |
| 11257 | ctor protected AbstractChronology(); |
| 11258 | method public int compareTo(java.time.chrono.Chronology); |
| 11259 | method public java.time.chrono.ChronoLocalDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.format.ResolverStyle); |
| 11260 | } |
| 11261 | |
| 11262 | public interface ChronoLocalDate extends java.time.temporal.Temporal java.lang.Comparable<java.time.chrono.ChronoLocalDate> java.time.temporal.TemporalAdjuster { |
| 11263 | method public default java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 11264 | method public default java.time.chrono.ChronoLocalDateTime<?> atTime(java.time.LocalTime); |
| 11265 | method public default int compareTo(java.time.chrono.ChronoLocalDate); |
| 11266 | method public boolean equals(Object); |
| 11267 | method public default String format(java.time.format.DateTimeFormatter); |
| 11268 | method public static java.time.chrono.ChronoLocalDate from(java.time.temporal.TemporalAccessor); |
| 11269 | method public java.time.chrono.Chronology getChronology(); |
| 11270 | method public default java.time.chrono.Era getEra(); |
| 11271 | method public int hashCode(); |
| 11272 | method public default boolean isAfter(java.time.chrono.ChronoLocalDate); |
| 11273 | method public default boolean isBefore(java.time.chrono.ChronoLocalDate); |
| 11274 | method public default boolean isEqual(java.time.chrono.ChronoLocalDate); |
| 11275 | method public default boolean isLeapYear(); |
| 11276 | method public default boolean isSupported(java.time.temporal.TemporalField); |
| 11277 | method public default boolean isSupported(java.time.temporal.TemporalUnit); |
| 11278 | method public int lengthOfMonth(); |
| 11279 | method public default int lengthOfYear(); |
| 11280 | method public default java.time.chrono.ChronoLocalDate minus(java.time.temporal.TemporalAmount); |
| 11281 | method public default java.time.chrono.ChronoLocalDate minus(long, java.time.temporal.TemporalUnit); |
| 11282 | method public default java.time.chrono.ChronoLocalDate plus(java.time.temporal.TemporalAmount); |
| 11283 | method public default java.time.chrono.ChronoLocalDate plus(long, java.time.temporal.TemporalUnit); |
| 11284 | method public static java.util.Comparator<java.time.chrono.ChronoLocalDate> timeLineOrder(); |
| 11285 | method public default long toEpochDay(); |
| 11286 | method public String toString(); |
| 11287 | method public java.time.chrono.ChronoPeriod until(java.time.chrono.ChronoLocalDate); |
| 11288 | method public default java.time.chrono.ChronoLocalDate with(java.time.temporal.TemporalAdjuster); |
| 11289 | method public default java.time.chrono.ChronoLocalDate with(java.time.temporal.TemporalField, long); |
| 11290 | } |
| 11291 | |
| 11292 | public interface ChronoLocalDateTime<D extends java.time.chrono.ChronoLocalDate> extends java.time.temporal.Temporal java.lang.Comparable<java.time.chrono.ChronoLocalDateTime<?>> java.time.temporal.TemporalAdjuster { |
| 11293 | method public default java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 11294 | method public java.time.chrono.ChronoZonedDateTime<D> atZone(java.time.ZoneId); |
| 11295 | method public default int compareTo(java.time.chrono.ChronoLocalDateTime<?>); |
| 11296 | method public boolean equals(Object); |
| 11297 | method public default String format(java.time.format.DateTimeFormatter); |
| 11298 | method public static java.time.chrono.ChronoLocalDateTime<?> from(java.time.temporal.TemporalAccessor); |
| 11299 | method public default java.time.chrono.Chronology getChronology(); |
| 11300 | method public int hashCode(); |
| 11301 | method public default boolean isAfter(java.time.chrono.ChronoLocalDateTime<?>); |
| 11302 | method public default boolean isBefore(java.time.chrono.ChronoLocalDateTime<?>); |
| 11303 | method public default boolean isEqual(java.time.chrono.ChronoLocalDateTime<?>); |
| 11304 | method public default boolean isSupported(java.time.temporal.TemporalUnit); |
| 11305 | method public default java.time.chrono.ChronoLocalDateTime<D> minus(java.time.temporal.TemporalAmount); |
| 11306 | method public default java.time.chrono.ChronoLocalDateTime<D> minus(long, java.time.temporal.TemporalUnit); |
| 11307 | method public default java.time.chrono.ChronoLocalDateTime<D> plus(java.time.temporal.TemporalAmount); |
| 11308 | method public java.time.chrono.ChronoLocalDateTime<D> plus(long, java.time.temporal.TemporalUnit); |
| 11309 | method public static java.util.Comparator<java.time.chrono.ChronoLocalDateTime<?>> timeLineOrder(); |
| 11310 | method public default long toEpochSecond(java.time.ZoneOffset); |
| 11311 | method public default java.time.Instant toInstant(java.time.ZoneOffset); |
| 11312 | method public D toLocalDate(); |
| 11313 | method public java.time.LocalTime toLocalTime(); |
| 11314 | method public String toString(); |
| 11315 | method public default java.time.chrono.ChronoLocalDateTime<D> with(java.time.temporal.TemporalAdjuster); |
| 11316 | method public java.time.chrono.ChronoLocalDateTime<D> with(java.time.temporal.TemporalField, long); |
| 11317 | } |
| 11318 | |
| 11319 | public interface ChronoPeriod extends java.time.temporal.TemporalAmount { |
| 11320 | method public static java.time.chrono.ChronoPeriod between(java.time.chrono.ChronoLocalDate, java.time.chrono.ChronoLocalDate); |
| 11321 | method public boolean equals(Object); |
| 11322 | method public java.time.chrono.Chronology getChronology(); |
| 11323 | method public int hashCode(); |
| 11324 | method public default boolean isNegative(); |
| 11325 | method public default boolean isZero(); |
| 11326 | method public java.time.chrono.ChronoPeriod minus(java.time.temporal.TemporalAmount); |
| 11327 | method public java.time.chrono.ChronoPeriod multipliedBy(int); |
| 11328 | method public default java.time.chrono.ChronoPeriod negated(); |
| 11329 | method public java.time.chrono.ChronoPeriod normalized(); |
| 11330 | method public java.time.chrono.ChronoPeriod plus(java.time.temporal.TemporalAmount); |
| 11331 | method public String toString(); |
| 11332 | } |
| 11333 | |
| 11334 | public interface ChronoZonedDateTime<D extends java.time.chrono.ChronoLocalDate> extends java.time.temporal.Temporal java.lang.Comparable<java.time.chrono.ChronoZonedDateTime<?>> { |
| 11335 | method public default int compareTo(java.time.chrono.ChronoZonedDateTime<?>); |
| 11336 | method public boolean equals(Object); |
| 11337 | method public default String format(java.time.format.DateTimeFormatter); |
| 11338 | method public static java.time.chrono.ChronoZonedDateTime<?> from(java.time.temporal.TemporalAccessor); |
| 11339 | method public default java.time.chrono.Chronology getChronology(); |
| 11340 | method public default long getLong(java.time.temporal.TemporalField); |
| 11341 | method public java.time.ZoneOffset getOffset(); |
| 11342 | method public java.time.ZoneId getZone(); |
| 11343 | method public int hashCode(); |
| 11344 | method public default boolean isAfter(java.time.chrono.ChronoZonedDateTime<?>); |
| 11345 | method public default boolean isBefore(java.time.chrono.ChronoZonedDateTime<?>); |
| 11346 | method public default boolean isEqual(java.time.chrono.ChronoZonedDateTime<?>); |
| 11347 | method public default boolean isSupported(java.time.temporal.TemporalUnit); |
| 11348 | method public default java.time.chrono.ChronoZonedDateTime<D> minus(java.time.temporal.TemporalAmount); |
| 11349 | method public default java.time.chrono.ChronoZonedDateTime<D> minus(long, java.time.temporal.TemporalUnit); |
| 11350 | method public default java.time.chrono.ChronoZonedDateTime<D> plus(java.time.temporal.TemporalAmount); |
| 11351 | method public java.time.chrono.ChronoZonedDateTime<D> plus(long, java.time.temporal.TemporalUnit); |
| 11352 | method public static java.util.Comparator<java.time.chrono.ChronoZonedDateTime<?>> timeLineOrder(); |
| 11353 | method public default long toEpochSecond(); |
| 11354 | method public default java.time.Instant toInstant(); |
| 11355 | method public default D toLocalDate(); |
| 11356 | method public java.time.chrono.ChronoLocalDateTime<D> toLocalDateTime(); |
| 11357 | method public default java.time.LocalTime toLocalTime(); |
| 11358 | method public String toString(); |
| 11359 | method public default java.time.chrono.ChronoZonedDateTime<D> with(java.time.temporal.TemporalAdjuster); |
| 11360 | method public java.time.chrono.ChronoZonedDateTime<D> with(java.time.temporal.TemporalField, long); |
| 11361 | method public java.time.chrono.ChronoZonedDateTime<D> withEarlierOffsetAtOverlap(); |
| 11362 | method public java.time.chrono.ChronoZonedDateTime<D> withLaterOffsetAtOverlap(); |
| 11363 | method public java.time.chrono.ChronoZonedDateTime<D> withZoneSameInstant(java.time.ZoneId); |
| 11364 | method public java.time.chrono.ChronoZonedDateTime<D> withZoneSameLocal(java.time.ZoneId); |
| 11365 | } |
| 11366 | |
| 11367 | public interface Chronology extends java.lang.Comparable<java.time.chrono.Chronology> { |
| 11368 | method public int compareTo(java.time.chrono.Chronology); |
| 11369 | method public default java.time.chrono.ChronoLocalDate date(java.time.chrono.Era, int, int, int); |
| 11370 | method public java.time.chrono.ChronoLocalDate date(int, int, int); |
| 11371 | method public java.time.chrono.ChronoLocalDate date(java.time.temporal.TemporalAccessor); |
| 11372 | method public java.time.chrono.ChronoLocalDate dateEpochDay(long); |
| 11373 | method public default java.time.chrono.ChronoLocalDate dateNow(); |
| 11374 | method public default java.time.chrono.ChronoLocalDate dateNow(java.time.ZoneId); |
| 11375 | method public default java.time.chrono.ChronoLocalDate dateNow(java.time.Clock); |
| 11376 | method public default java.time.chrono.ChronoLocalDate dateYearDay(java.time.chrono.Era, int, int); |
| 11377 | method public java.time.chrono.ChronoLocalDate dateYearDay(int, int); |
| 11378 | method public boolean equals(Object); |
| 11379 | method public java.time.chrono.Era eraOf(int); |
| 11380 | method public java.util.List<java.time.chrono.Era> eras(); |
| 11381 | method public static java.time.chrono.Chronology from(java.time.temporal.TemporalAccessor); |
| 11382 | method public static java.util.Set<java.time.chrono.Chronology> getAvailableChronologies(); |
| 11383 | method public String getCalendarType(); |
| 11384 | method public default String getDisplayName(java.time.format.TextStyle, java.util.Locale); |
| 11385 | method public String getId(); |
| 11386 | method public int hashCode(); |
| 11387 | method public boolean isLeapYear(long); |
| 11388 | method public default java.time.chrono.ChronoLocalDateTime<? extends java.time.chrono.ChronoLocalDate> localDateTime(java.time.temporal.TemporalAccessor); |
| 11389 | method public static java.time.chrono.Chronology of(String); |
| 11390 | method public static java.time.chrono.Chronology ofLocale(java.util.Locale); |
| 11391 | method public default java.time.chrono.ChronoPeriod period(int, int, int); |
| 11392 | method public int prolepticYear(java.time.chrono.Era, int); |
| 11393 | method public java.time.temporal.ValueRange range(java.time.temporal.ChronoField); |
| 11394 | method public java.time.chrono.ChronoLocalDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.format.ResolverStyle); |
| 11395 | method public String toString(); |
| 11396 | method public default java.time.chrono.ChronoZonedDateTime<? extends java.time.chrono.ChronoLocalDate> zonedDateTime(java.time.temporal.TemporalAccessor); |
| 11397 | method public default java.time.chrono.ChronoZonedDateTime<? extends java.time.chrono.ChronoLocalDate> zonedDateTime(java.time.Instant, java.time.ZoneId); |
| 11398 | } |
| 11399 | |
| 11400 | public interface Era extends java.time.temporal.TemporalAccessor java.time.temporal.TemporalAdjuster { |
| 11401 | method public default java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 11402 | method public default String getDisplayName(java.time.format.TextStyle, java.util.Locale); |
| 11403 | method public default long getLong(java.time.temporal.TemporalField); |
| 11404 | method public int getValue(); |
| 11405 | method public default boolean isSupported(java.time.temporal.TemporalField); |
| 11406 | } |
| 11407 | |
| 11408 | public final class HijrahChronology extends java.time.chrono.AbstractChronology implements java.io.Serializable { |
| 11409 | method public java.time.chrono.HijrahDate date(java.time.chrono.Era, int, int, int); |
| 11410 | method public java.time.chrono.HijrahDate date(int, int, int); |
| 11411 | method public java.time.chrono.HijrahDate date(java.time.temporal.TemporalAccessor); |
| 11412 | method public java.time.chrono.HijrahDate dateEpochDay(long); |
| 11413 | method public java.time.chrono.HijrahDate dateNow(); |
| 11414 | method public java.time.chrono.HijrahDate dateNow(java.time.ZoneId); |
| 11415 | method public java.time.chrono.HijrahDate dateNow(java.time.Clock); |
| 11416 | method public java.time.chrono.HijrahDate dateYearDay(java.time.chrono.Era, int, int); |
| 11417 | method public java.time.chrono.HijrahDate dateYearDay(int, int); |
| 11418 | method public java.time.chrono.HijrahEra eraOf(int); |
| 11419 | method public java.util.List<java.time.chrono.Era> eras(); |
| 11420 | method public String getCalendarType(); |
| 11421 | method public String getId(); |
| 11422 | method public boolean isLeapYear(long); |
| 11423 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.HijrahDate> localDateTime(java.time.temporal.TemporalAccessor); |
| 11424 | method public int prolepticYear(java.time.chrono.Era, int); |
| 11425 | method public java.time.temporal.ValueRange range(java.time.temporal.ChronoField); |
| 11426 | method public java.time.chrono.HijrahDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.format.ResolverStyle); |
| 11427 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.HijrahDate> zonedDateTime(java.time.temporal.TemporalAccessor); |
| 11428 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.HijrahDate> zonedDateTime(java.time.Instant, java.time.ZoneId); |
| 11429 | field public static final java.time.chrono.HijrahChronology INSTANCE; |
| 11430 | } |
| 11431 | |
| 11432 | public final class HijrahDate implements java.time.chrono.ChronoLocalDate java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 11433 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.HijrahDate> atTime(java.time.LocalTime); |
| 11434 | method public static java.time.chrono.HijrahDate from(java.time.temporal.TemporalAccessor); |
| 11435 | method public java.time.chrono.HijrahChronology getChronology(); |
| 11436 | method public java.time.chrono.HijrahEra getEra(); |
| 11437 | method public long getLong(java.time.temporal.TemporalField); |
| 11438 | method public int lengthOfMonth(); |
| 11439 | method public java.time.chrono.HijrahDate minus(java.time.temporal.TemporalAmount); |
| 11440 | method public java.time.chrono.HijrahDate minus(long, java.time.temporal.TemporalUnit); |
| 11441 | method public static java.time.chrono.HijrahDate now(); |
| 11442 | method public static java.time.chrono.HijrahDate now(java.time.ZoneId); |
| 11443 | method public static java.time.chrono.HijrahDate now(java.time.Clock); |
| 11444 | method public static java.time.chrono.HijrahDate of(int, int, int); |
| 11445 | method public java.time.chrono.HijrahDate plus(java.time.temporal.TemporalAmount); |
| 11446 | method public java.time.chrono.HijrahDate plus(long, java.time.temporal.TemporalUnit); |
| 11447 | method public java.time.chrono.ChronoPeriod until(java.time.chrono.ChronoLocalDate); |
| 11448 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11449 | method public java.time.chrono.HijrahDate with(java.time.temporal.TemporalField, long); |
| 11450 | method public java.time.chrono.HijrahDate with(java.time.temporal.TemporalAdjuster); |
| 11451 | method public java.time.chrono.HijrahDate withVariant(java.time.chrono.HijrahChronology); |
| 11452 | } |
| 11453 | |
| 11454 | public enum HijrahEra implements java.time.chrono.Era { |
| 11455 | method public int getValue(); |
| 11456 | method public static java.time.chrono.HijrahEra of(int); |
| 11457 | enum_constant public static final java.time.chrono.HijrahEra AH; |
| 11458 | } |
| 11459 | |
| 11460 | public final class IsoChronology extends java.time.chrono.AbstractChronology implements java.io.Serializable { |
| 11461 | method public java.time.LocalDate date(java.time.chrono.Era, int, int, int); |
| 11462 | method public java.time.LocalDate date(int, int, int); |
| 11463 | method public java.time.LocalDate date(java.time.temporal.TemporalAccessor); |
| 11464 | method public java.time.LocalDate dateEpochDay(long); |
| 11465 | method public java.time.LocalDate dateNow(); |
| 11466 | method public java.time.LocalDate dateNow(java.time.ZoneId); |
| 11467 | method public java.time.LocalDate dateNow(java.time.Clock); |
| 11468 | method public java.time.LocalDate dateYearDay(java.time.chrono.Era, int, int); |
| 11469 | method public java.time.LocalDate dateYearDay(int, int); |
| 11470 | method public java.time.chrono.IsoEra eraOf(int); |
| 11471 | method public java.util.List<java.time.chrono.Era> eras(); |
| 11472 | method public String getCalendarType(); |
| 11473 | method public String getId(); |
| 11474 | method public boolean isLeapYear(long); |
| 11475 | method public java.time.LocalDateTime localDateTime(java.time.temporal.TemporalAccessor); |
| 11476 | method public java.time.Period period(int, int, int); |
| 11477 | method public int prolepticYear(java.time.chrono.Era, int); |
| 11478 | method public java.time.temporal.ValueRange range(java.time.temporal.ChronoField); |
| 11479 | method public java.time.LocalDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.format.ResolverStyle); |
| 11480 | method public java.time.ZonedDateTime zonedDateTime(java.time.temporal.TemporalAccessor); |
| 11481 | method public java.time.ZonedDateTime zonedDateTime(java.time.Instant, java.time.ZoneId); |
| 11482 | field public static final java.time.chrono.IsoChronology INSTANCE; |
| 11483 | } |
| 11484 | |
| 11485 | public enum IsoEra implements java.time.chrono.Era { |
| 11486 | method public int getValue(); |
| 11487 | method public static java.time.chrono.IsoEra of(int); |
| 11488 | enum_constant public static final java.time.chrono.IsoEra BCE; |
| 11489 | enum_constant public static final java.time.chrono.IsoEra CE; |
| 11490 | } |
| 11491 | |
| 11492 | public final class JapaneseChronology extends java.time.chrono.AbstractChronology implements java.io.Serializable { |
| 11493 | method public java.time.chrono.JapaneseDate date(java.time.chrono.Era, int, int, int); |
| 11494 | method public java.time.chrono.JapaneseDate date(int, int, int); |
| 11495 | method public java.time.chrono.JapaneseDate date(java.time.temporal.TemporalAccessor); |
| 11496 | method public java.time.chrono.JapaneseDate dateEpochDay(long); |
| 11497 | method public java.time.chrono.JapaneseDate dateNow(); |
| 11498 | method public java.time.chrono.JapaneseDate dateNow(java.time.ZoneId); |
| 11499 | method public java.time.chrono.JapaneseDate dateNow(java.time.Clock); |
| 11500 | method public java.time.chrono.JapaneseDate dateYearDay(java.time.chrono.Era, int, int); |
| 11501 | method public java.time.chrono.JapaneseDate dateYearDay(int, int); |
| 11502 | method public java.time.chrono.JapaneseEra eraOf(int); |
| 11503 | method public java.util.List<java.time.chrono.Era> eras(); |
| 11504 | method public String getCalendarType(); |
| 11505 | method public String getId(); |
| 11506 | method public boolean isLeapYear(long); |
| 11507 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.JapaneseDate> localDateTime(java.time.temporal.TemporalAccessor); |
| 11508 | method public int prolepticYear(java.time.chrono.Era, int); |
| 11509 | method public java.time.temporal.ValueRange range(java.time.temporal.ChronoField); |
| 11510 | method public java.time.chrono.JapaneseDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.format.ResolverStyle); |
| 11511 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.JapaneseDate> zonedDateTime(java.time.temporal.TemporalAccessor); |
| 11512 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.JapaneseDate> zonedDateTime(java.time.Instant, java.time.ZoneId); |
| 11513 | field public static final java.time.chrono.JapaneseChronology INSTANCE; |
| 11514 | } |
| 11515 | |
| 11516 | public final class JapaneseDate implements java.time.chrono.ChronoLocalDate java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 11517 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.JapaneseDate> atTime(java.time.LocalTime); |
| 11518 | method public static java.time.chrono.JapaneseDate from(java.time.temporal.TemporalAccessor); |
| 11519 | method public java.time.chrono.JapaneseChronology getChronology(); |
| 11520 | method public java.time.chrono.JapaneseEra getEra(); |
| 11521 | method public long getLong(java.time.temporal.TemporalField); |
| 11522 | method public int lengthOfMonth(); |
| 11523 | method public java.time.chrono.JapaneseDate minus(java.time.temporal.TemporalAmount); |
| 11524 | method public java.time.chrono.JapaneseDate minus(long, java.time.temporal.TemporalUnit); |
| 11525 | method public static java.time.chrono.JapaneseDate now(); |
| 11526 | method public static java.time.chrono.JapaneseDate now(java.time.ZoneId); |
| 11527 | method public static java.time.chrono.JapaneseDate now(java.time.Clock); |
| 11528 | method public static java.time.chrono.JapaneseDate of(java.time.chrono.JapaneseEra, int, int, int); |
| 11529 | method public static java.time.chrono.JapaneseDate of(int, int, int); |
| 11530 | method public java.time.chrono.JapaneseDate plus(java.time.temporal.TemporalAmount); |
| 11531 | method public java.time.chrono.JapaneseDate plus(long, java.time.temporal.TemporalUnit); |
| 11532 | method public java.time.chrono.ChronoPeriod until(java.time.chrono.ChronoLocalDate); |
| 11533 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11534 | method public java.time.chrono.JapaneseDate with(java.time.temporal.TemporalField, long); |
| 11535 | method public java.time.chrono.JapaneseDate with(java.time.temporal.TemporalAdjuster); |
| 11536 | } |
| 11537 | |
| 11538 | public final class JapaneseEra implements java.time.chrono.Era java.io.Serializable { |
| 11539 | method public int getValue(); |
| 11540 | method public static java.time.chrono.JapaneseEra of(int); |
| 11541 | method public static java.time.chrono.JapaneseEra valueOf(String); |
| 11542 | method public static java.time.chrono.JapaneseEra[] values(); |
| 11543 | field public static final java.time.chrono.JapaneseEra HEISEI; |
| 11544 | field public static final java.time.chrono.JapaneseEra MEIJI; |
| 11545 | field public static final java.time.chrono.JapaneseEra REIWA; |
| 11546 | field public static final java.time.chrono.JapaneseEra SHOWA; |
| 11547 | field public static final java.time.chrono.JapaneseEra TAISHO; |
| 11548 | } |
| 11549 | |
| 11550 | public final class MinguoChronology extends java.time.chrono.AbstractChronology implements java.io.Serializable { |
| 11551 | method public java.time.chrono.MinguoDate date(java.time.chrono.Era, int, int, int); |
| 11552 | method public java.time.chrono.MinguoDate date(int, int, int); |
| 11553 | method public java.time.chrono.MinguoDate date(java.time.temporal.TemporalAccessor); |
| 11554 | method public java.time.chrono.MinguoDate dateEpochDay(long); |
| 11555 | method public java.time.chrono.MinguoDate dateNow(); |
| 11556 | method public java.time.chrono.MinguoDate dateNow(java.time.ZoneId); |
| 11557 | method public java.time.chrono.MinguoDate dateNow(java.time.Clock); |
| 11558 | method public java.time.chrono.MinguoDate dateYearDay(java.time.chrono.Era, int, int); |
| 11559 | method public java.time.chrono.MinguoDate dateYearDay(int, int); |
| 11560 | method public java.time.chrono.MinguoEra eraOf(int); |
| 11561 | method public java.util.List<java.time.chrono.Era> eras(); |
| 11562 | method public String getCalendarType(); |
| 11563 | method public String getId(); |
| 11564 | method public boolean isLeapYear(long); |
| 11565 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.MinguoDate> localDateTime(java.time.temporal.TemporalAccessor); |
| 11566 | method public int prolepticYear(java.time.chrono.Era, int); |
| 11567 | method public java.time.temporal.ValueRange range(java.time.temporal.ChronoField); |
| 11568 | method public java.time.chrono.MinguoDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.format.ResolverStyle); |
| 11569 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.MinguoDate> zonedDateTime(java.time.temporal.TemporalAccessor); |
| 11570 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.MinguoDate> zonedDateTime(java.time.Instant, java.time.ZoneId); |
| 11571 | field public static final java.time.chrono.MinguoChronology INSTANCE; |
| 11572 | } |
| 11573 | |
| 11574 | public final class MinguoDate implements java.time.chrono.ChronoLocalDate java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 11575 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.MinguoDate> atTime(java.time.LocalTime); |
| 11576 | method public static java.time.chrono.MinguoDate from(java.time.temporal.TemporalAccessor); |
| 11577 | method public java.time.chrono.MinguoChronology getChronology(); |
| 11578 | method public java.time.chrono.MinguoEra getEra(); |
| 11579 | method public long getLong(java.time.temporal.TemporalField); |
| 11580 | method public int lengthOfMonth(); |
| 11581 | method public java.time.chrono.MinguoDate minus(java.time.temporal.TemporalAmount); |
| 11582 | method public java.time.chrono.MinguoDate minus(long, java.time.temporal.TemporalUnit); |
| 11583 | method public static java.time.chrono.MinguoDate now(); |
| 11584 | method public static java.time.chrono.MinguoDate now(java.time.ZoneId); |
| 11585 | method public static java.time.chrono.MinguoDate now(java.time.Clock); |
| 11586 | method public static java.time.chrono.MinguoDate of(int, int, int); |
| 11587 | method public java.time.chrono.MinguoDate plus(java.time.temporal.TemporalAmount); |
| 11588 | method public java.time.chrono.MinguoDate plus(long, java.time.temporal.TemporalUnit); |
| 11589 | method public java.time.chrono.ChronoPeriod until(java.time.chrono.ChronoLocalDate); |
| 11590 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11591 | method public java.time.chrono.MinguoDate with(java.time.temporal.TemporalField, long); |
| 11592 | method public java.time.chrono.MinguoDate with(java.time.temporal.TemporalAdjuster); |
| 11593 | } |
| 11594 | |
| 11595 | public enum MinguoEra implements java.time.chrono.Era { |
| 11596 | method public int getValue(); |
| 11597 | method public static java.time.chrono.MinguoEra of(int); |
| 11598 | enum_constant public static final java.time.chrono.MinguoEra BEFORE_ROC; |
| 11599 | enum_constant public static final java.time.chrono.MinguoEra ROC; |
| 11600 | } |
| 11601 | |
| 11602 | public final class ThaiBuddhistChronology extends java.time.chrono.AbstractChronology implements java.io.Serializable { |
| 11603 | method public java.time.chrono.ThaiBuddhistDate date(java.time.chrono.Era, int, int, int); |
| 11604 | method public java.time.chrono.ThaiBuddhistDate date(int, int, int); |
| 11605 | method public java.time.chrono.ThaiBuddhistDate date(java.time.temporal.TemporalAccessor); |
| 11606 | method public java.time.chrono.ThaiBuddhistDate dateEpochDay(long); |
| 11607 | method public java.time.chrono.ThaiBuddhistDate dateNow(); |
| 11608 | method public java.time.chrono.ThaiBuddhistDate dateNow(java.time.ZoneId); |
| 11609 | method public java.time.chrono.ThaiBuddhistDate dateNow(java.time.Clock); |
| 11610 | method public java.time.chrono.ThaiBuddhistDate dateYearDay(java.time.chrono.Era, int, int); |
| 11611 | method public java.time.chrono.ThaiBuddhistDate dateYearDay(int, int); |
| 11612 | method public java.time.chrono.ThaiBuddhistEra eraOf(int); |
| 11613 | method public java.util.List<java.time.chrono.Era> eras(); |
| 11614 | method public String getCalendarType(); |
| 11615 | method public String getId(); |
| 11616 | method public boolean isLeapYear(long); |
| 11617 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.ThaiBuddhistDate> localDateTime(java.time.temporal.TemporalAccessor); |
| 11618 | method public int prolepticYear(java.time.chrono.Era, int); |
| 11619 | method public java.time.temporal.ValueRange range(java.time.temporal.ChronoField); |
| 11620 | method public java.time.chrono.ThaiBuddhistDate resolveDate(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.format.ResolverStyle); |
| 11621 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.ThaiBuddhistDate> zonedDateTime(java.time.temporal.TemporalAccessor); |
| 11622 | method public java.time.chrono.ChronoZonedDateTime<java.time.chrono.ThaiBuddhistDate> zonedDateTime(java.time.Instant, java.time.ZoneId); |
| 11623 | field public static final java.time.chrono.ThaiBuddhistChronology INSTANCE; |
| 11624 | } |
| 11625 | |
| 11626 | public final class ThaiBuddhistDate implements java.time.chrono.ChronoLocalDate java.io.Serializable java.time.temporal.Temporal java.time.temporal.TemporalAdjuster { |
| 11627 | method public java.time.chrono.ChronoLocalDateTime<java.time.chrono.ThaiBuddhistDate> atTime(java.time.LocalTime); |
| 11628 | method public static java.time.chrono.ThaiBuddhistDate from(java.time.temporal.TemporalAccessor); |
| 11629 | method public java.time.chrono.ThaiBuddhistChronology getChronology(); |
| 11630 | method public java.time.chrono.ThaiBuddhistEra getEra(); |
| 11631 | method public long getLong(java.time.temporal.TemporalField); |
| 11632 | method public int lengthOfMonth(); |
| 11633 | method public java.time.chrono.ThaiBuddhistDate minus(java.time.temporal.TemporalAmount); |
| 11634 | method public java.time.chrono.ThaiBuddhistDate minus(long, java.time.temporal.TemporalUnit); |
| 11635 | method public static java.time.chrono.ThaiBuddhistDate now(); |
| 11636 | method public static java.time.chrono.ThaiBuddhistDate now(java.time.ZoneId); |
| 11637 | method public static java.time.chrono.ThaiBuddhistDate now(java.time.Clock); |
| 11638 | method public static java.time.chrono.ThaiBuddhistDate of(int, int, int); |
| 11639 | method public java.time.chrono.ThaiBuddhistDate plus(java.time.temporal.TemporalAmount); |
| 11640 | method public java.time.chrono.ThaiBuddhistDate plus(long, java.time.temporal.TemporalUnit); |
| 11641 | method public java.time.chrono.ChronoPeriod until(java.time.chrono.ChronoLocalDate); |
| 11642 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11643 | method public java.time.chrono.ThaiBuddhistDate with(java.time.temporal.TemporalField, long); |
| 11644 | method public java.time.chrono.ThaiBuddhistDate with(java.time.temporal.TemporalAdjuster); |
| 11645 | } |
| 11646 | |
| 11647 | public enum ThaiBuddhistEra implements java.time.chrono.Era { |
| 11648 | method public int getValue(); |
| 11649 | method public static java.time.chrono.ThaiBuddhistEra of(int); |
| 11650 | enum_constant public static final java.time.chrono.ThaiBuddhistEra BE; |
| 11651 | enum_constant public static final java.time.chrono.ThaiBuddhistEra BEFORE_BE; |
| 11652 | } |
| 11653 | |
| 11654 | } |
| 11655 | |
| 11656 | package java.time.format { |
| 11657 | |
| 11658 | public final class DateTimeFormatter { |
| 11659 | method public String format(java.time.temporal.TemporalAccessor); |
| 11660 | method public void formatTo(java.time.temporal.TemporalAccessor, Appendable); |
| 11661 | method public java.time.chrono.Chronology getChronology(); |
| 11662 | method public java.time.format.DecimalStyle getDecimalStyle(); |
| 11663 | method public java.util.Locale getLocale(); |
| 11664 | method public java.util.Set<java.time.temporal.TemporalField> getResolverFields(); |
| 11665 | method public java.time.format.ResolverStyle getResolverStyle(); |
| 11666 | method public java.time.ZoneId getZone(); |
| 11667 | method public static java.time.format.DateTimeFormatter ofLocalizedDate(java.time.format.FormatStyle); |
| 11668 | method public static java.time.format.DateTimeFormatter ofLocalizedDateTime(java.time.format.FormatStyle); |
| 11669 | method public static java.time.format.DateTimeFormatter ofLocalizedDateTime(java.time.format.FormatStyle, java.time.format.FormatStyle); |
| 11670 | method public static java.time.format.DateTimeFormatter ofLocalizedTime(java.time.format.FormatStyle); |
| 11671 | method public static java.time.format.DateTimeFormatter ofPattern(String); |
| 11672 | method public static java.time.format.DateTimeFormatter ofPattern(String, java.util.Locale); |
| 11673 | method public java.time.temporal.TemporalAccessor parse(CharSequence); |
| 11674 | method public java.time.temporal.TemporalAccessor parse(CharSequence, java.text.ParsePosition); |
| 11675 | method public <T> T parse(CharSequence, java.time.temporal.TemporalQuery<T>); |
| 11676 | method public java.time.temporal.TemporalAccessor parseBest(CharSequence, java.time.temporal.TemporalQuery<?>...); |
| 11677 | method public java.time.temporal.TemporalAccessor parseUnresolved(CharSequence, java.text.ParsePosition); |
| 11678 | method public static java.time.temporal.TemporalQuery<java.time.Period> parsedExcessDays(); |
| 11679 | method public static java.time.temporal.TemporalQuery<java.lang.Boolean> parsedLeapSecond(); |
| 11680 | method public java.text.Format toFormat(); |
| 11681 | method public java.text.Format toFormat(java.time.temporal.TemporalQuery<?>); |
| 11682 | method public java.time.format.DateTimeFormatter withChronology(java.time.chrono.Chronology); |
| 11683 | method public java.time.format.DateTimeFormatter withDecimalStyle(java.time.format.DecimalStyle); |
| 11684 | method public java.time.format.DateTimeFormatter withLocale(java.util.Locale); |
| 11685 | method public java.time.format.DateTimeFormatter withResolverFields(java.time.temporal.TemporalField...); |
| 11686 | method public java.time.format.DateTimeFormatter withResolverFields(java.util.Set<java.time.temporal.TemporalField>); |
| 11687 | method public java.time.format.DateTimeFormatter withResolverStyle(java.time.format.ResolverStyle); |
| 11688 | method public java.time.format.DateTimeFormatter withZone(java.time.ZoneId); |
| 11689 | field public static final java.time.format.DateTimeFormatter BASIC_ISO_DATE; |
| 11690 | field public static final java.time.format.DateTimeFormatter ISO_DATE; |
| 11691 | field public static final java.time.format.DateTimeFormatter ISO_DATE_TIME; |
| 11692 | field public static final java.time.format.DateTimeFormatter ISO_INSTANT; |
| 11693 | field public static final java.time.format.DateTimeFormatter ISO_LOCAL_DATE; |
| 11694 | field public static final java.time.format.DateTimeFormatter ISO_LOCAL_DATE_TIME; |
| 11695 | field public static final java.time.format.DateTimeFormatter ISO_LOCAL_TIME; |
| 11696 | field public static final java.time.format.DateTimeFormatter ISO_OFFSET_DATE; |
| 11697 | field public static final java.time.format.DateTimeFormatter ISO_OFFSET_DATE_TIME; |
| 11698 | field public static final java.time.format.DateTimeFormatter ISO_OFFSET_TIME; |
| 11699 | field public static final java.time.format.DateTimeFormatter ISO_ORDINAL_DATE; |
| 11700 | field public static final java.time.format.DateTimeFormatter ISO_TIME; |
| 11701 | field public static final java.time.format.DateTimeFormatter ISO_WEEK_DATE; |
| 11702 | field public static final java.time.format.DateTimeFormatter ISO_ZONED_DATE_TIME; |
| 11703 | field public static final java.time.format.DateTimeFormatter RFC_1123_DATE_TIME; |
| 11704 | } |
| 11705 | |
| 11706 | public final class DateTimeFormatterBuilder { |
| 11707 | ctor public DateTimeFormatterBuilder(); |
| 11708 | method public java.time.format.DateTimeFormatterBuilder append(java.time.format.DateTimeFormatter); |
| 11709 | method public java.time.format.DateTimeFormatterBuilder appendChronologyId(); |
| 11710 | method public java.time.format.DateTimeFormatterBuilder appendChronologyText(java.time.format.TextStyle); |
| 11711 | method public java.time.format.DateTimeFormatterBuilder appendFraction(java.time.temporal.TemporalField, int, int, boolean); |
| 11712 | method public java.time.format.DateTimeFormatterBuilder appendInstant(); |
| 11713 | method public java.time.format.DateTimeFormatterBuilder appendInstant(int); |
| 11714 | method public java.time.format.DateTimeFormatterBuilder appendLiteral(char); |
| 11715 | method public java.time.format.DateTimeFormatterBuilder appendLiteral(String); |
| 11716 | method public java.time.format.DateTimeFormatterBuilder appendLocalized(java.time.format.FormatStyle, java.time.format.FormatStyle); |
| 11717 | method public java.time.format.DateTimeFormatterBuilder appendLocalizedOffset(java.time.format.TextStyle); |
| 11718 | method public java.time.format.DateTimeFormatterBuilder appendOffset(String, String); |
| 11719 | method public java.time.format.DateTimeFormatterBuilder appendOffsetId(); |
| 11720 | method public java.time.format.DateTimeFormatterBuilder appendOptional(java.time.format.DateTimeFormatter); |
| 11721 | method public java.time.format.DateTimeFormatterBuilder appendPattern(String); |
| 11722 | method public java.time.format.DateTimeFormatterBuilder appendText(java.time.temporal.TemporalField); |
| 11723 | method public java.time.format.DateTimeFormatterBuilder appendText(java.time.temporal.TemporalField, java.time.format.TextStyle); |
| 11724 | method public java.time.format.DateTimeFormatterBuilder appendText(java.time.temporal.TemporalField, java.util.Map<java.lang.Long,java.lang.String>); |
| 11725 | method public java.time.format.DateTimeFormatterBuilder appendValue(java.time.temporal.TemporalField); |
| 11726 | method public java.time.format.DateTimeFormatterBuilder appendValue(java.time.temporal.TemporalField, int); |
| 11727 | method public java.time.format.DateTimeFormatterBuilder appendValue(java.time.temporal.TemporalField, int, int, java.time.format.SignStyle); |
| 11728 | method public java.time.format.DateTimeFormatterBuilder appendValueReduced(java.time.temporal.TemporalField, int, int, int); |
| 11729 | method public java.time.format.DateTimeFormatterBuilder appendValueReduced(java.time.temporal.TemporalField, int, int, java.time.chrono.ChronoLocalDate); |
| 11730 | method public java.time.format.DateTimeFormatterBuilder appendZoneId(); |
| 11731 | method public java.time.format.DateTimeFormatterBuilder appendZoneOrOffsetId(); |
| 11732 | method public java.time.format.DateTimeFormatterBuilder appendZoneRegionId(); |
| 11733 | method public java.time.format.DateTimeFormatterBuilder appendZoneText(java.time.format.TextStyle); |
| 11734 | method public java.time.format.DateTimeFormatterBuilder appendZoneText(java.time.format.TextStyle, java.util.Set<java.time.ZoneId>); |
| 11735 | method public static String getLocalizedDateTimePattern(java.time.format.FormatStyle, java.time.format.FormatStyle, java.time.chrono.Chronology, java.util.Locale); |
| 11736 | method public java.time.format.DateTimeFormatterBuilder optionalEnd(); |
| 11737 | method public java.time.format.DateTimeFormatterBuilder optionalStart(); |
| 11738 | method public java.time.format.DateTimeFormatterBuilder padNext(int); |
| 11739 | method public java.time.format.DateTimeFormatterBuilder padNext(int, char); |
| 11740 | method public java.time.format.DateTimeFormatterBuilder parseCaseInsensitive(); |
| 11741 | method public java.time.format.DateTimeFormatterBuilder parseCaseSensitive(); |
| 11742 | method public java.time.format.DateTimeFormatterBuilder parseDefaulting(java.time.temporal.TemporalField, long); |
| 11743 | method public java.time.format.DateTimeFormatterBuilder parseLenient(); |
| 11744 | method public java.time.format.DateTimeFormatterBuilder parseStrict(); |
| 11745 | method public java.time.format.DateTimeFormatter toFormatter(); |
| 11746 | method public java.time.format.DateTimeFormatter toFormatter(java.util.Locale); |
| 11747 | } |
| 11748 | |
| 11749 | public class DateTimeParseException extends java.time.DateTimeException { |
| 11750 | ctor public DateTimeParseException(String, CharSequence, int); |
| 11751 | ctor public DateTimeParseException(String, CharSequence, int, Throwable); |
| 11752 | method public int getErrorIndex(); |
| 11753 | method public String getParsedString(); |
| 11754 | } |
| 11755 | |
| 11756 | public final class DecimalStyle { |
| 11757 | method public static java.util.Set<java.util.Locale> getAvailableLocales(); |
| 11758 | method public char getDecimalSeparator(); |
| 11759 | method public char getNegativeSign(); |
| 11760 | method public char getPositiveSign(); |
| 11761 | method public char getZeroDigit(); |
| 11762 | method public static java.time.format.DecimalStyle of(java.util.Locale); |
| 11763 | method public static java.time.format.DecimalStyle ofDefaultLocale(); |
| 11764 | method public java.time.format.DecimalStyle withDecimalSeparator(char); |
| 11765 | method public java.time.format.DecimalStyle withNegativeSign(char); |
| 11766 | method public java.time.format.DecimalStyle withPositiveSign(char); |
| 11767 | method public java.time.format.DecimalStyle withZeroDigit(char); |
| 11768 | field public static final java.time.format.DecimalStyle STANDARD; |
| 11769 | } |
| 11770 | |
| 11771 | public enum FormatStyle { |
| 11772 | enum_constant public static final java.time.format.FormatStyle FULL; |
| 11773 | enum_constant public static final java.time.format.FormatStyle LONG; |
| 11774 | enum_constant public static final java.time.format.FormatStyle MEDIUM; |
| 11775 | enum_constant public static final java.time.format.FormatStyle SHORT; |
| 11776 | } |
| 11777 | |
| 11778 | public enum ResolverStyle { |
| 11779 | enum_constant public static final java.time.format.ResolverStyle LENIENT; |
| 11780 | enum_constant public static final java.time.format.ResolverStyle SMART; |
| 11781 | enum_constant public static final java.time.format.ResolverStyle STRICT; |
| 11782 | } |
| 11783 | |
| 11784 | public enum SignStyle { |
| 11785 | enum_constant public static final java.time.format.SignStyle ALWAYS; |
| 11786 | enum_constant public static final java.time.format.SignStyle EXCEEDS_PAD; |
| 11787 | enum_constant public static final java.time.format.SignStyle NEVER; |
| 11788 | enum_constant public static final java.time.format.SignStyle NORMAL; |
| 11789 | enum_constant public static final java.time.format.SignStyle NOT_NEGATIVE; |
| 11790 | } |
| 11791 | |
| 11792 | public enum TextStyle { |
| 11793 | method public java.time.format.TextStyle asNormal(); |
| 11794 | method public java.time.format.TextStyle asStandalone(); |
| 11795 | method public boolean isStandalone(); |
| 11796 | enum_constant public static final java.time.format.TextStyle FULL; |
| 11797 | enum_constant public static final java.time.format.TextStyle FULL_STANDALONE; |
| 11798 | enum_constant public static final java.time.format.TextStyle NARROW; |
| 11799 | enum_constant public static final java.time.format.TextStyle NARROW_STANDALONE; |
| 11800 | enum_constant public static final java.time.format.TextStyle SHORT; |
| 11801 | enum_constant public static final java.time.format.TextStyle SHORT_STANDALONE; |
| 11802 | } |
| 11803 | |
| 11804 | } |
| 11805 | |
| 11806 | package java.time.temporal { |
| 11807 | |
| 11808 | public enum ChronoField implements java.time.temporal.TemporalField { |
| 11809 | method public <R extends java.time.temporal.Temporal> R adjustInto(R, long); |
| 11810 | method public int checkValidIntValue(long); |
| 11811 | method public long checkValidValue(long); |
| 11812 | method public java.time.temporal.TemporalUnit getBaseUnit(); |
| 11813 | method public long getFrom(java.time.temporal.TemporalAccessor); |
| 11814 | method public java.time.temporal.TemporalUnit getRangeUnit(); |
| 11815 | method public boolean isDateBased(); |
| 11816 | method public boolean isSupportedBy(java.time.temporal.TemporalAccessor); |
| 11817 | method public boolean isTimeBased(); |
| 11818 | method public java.time.temporal.ValueRange range(); |
| 11819 | method public java.time.temporal.ValueRange rangeRefinedBy(java.time.temporal.TemporalAccessor); |
| 11820 | enum_constant public static final java.time.temporal.ChronoField ALIGNED_DAY_OF_WEEK_IN_MONTH; |
| 11821 | enum_constant public static final java.time.temporal.ChronoField ALIGNED_DAY_OF_WEEK_IN_YEAR; |
| 11822 | enum_constant public static final java.time.temporal.ChronoField ALIGNED_WEEK_OF_MONTH; |
| 11823 | enum_constant public static final java.time.temporal.ChronoField ALIGNED_WEEK_OF_YEAR; |
| 11824 | enum_constant public static final java.time.temporal.ChronoField AMPM_OF_DAY; |
| 11825 | enum_constant public static final java.time.temporal.ChronoField CLOCK_HOUR_OF_AMPM; |
| 11826 | enum_constant public static final java.time.temporal.ChronoField CLOCK_HOUR_OF_DAY; |
| 11827 | enum_constant public static final java.time.temporal.ChronoField DAY_OF_MONTH; |
| 11828 | enum_constant public static final java.time.temporal.ChronoField DAY_OF_WEEK; |
| 11829 | enum_constant public static final java.time.temporal.ChronoField DAY_OF_YEAR; |
| 11830 | enum_constant public static final java.time.temporal.ChronoField EPOCH_DAY; |
| 11831 | enum_constant public static final java.time.temporal.ChronoField ERA; |
| 11832 | enum_constant public static final java.time.temporal.ChronoField HOUR_OF_AMPM; |
| 11833 | enum_constant public static final java.time.temporal.ChronoField HOUR_OF_DAY; |
| 11834 | enum_constant public static final java.time.temporal.ChronoField INSTANT_SECONDS; |
| 11835 | enum_constant public static final java.time.temporal.ChronoField MICRO_OF_DAY; |
| 11836 | enum_constant public static final java.time.temporal.ChronoField MICRO_OF_SECOND; |
| 11837 | enum_constant public static final java.time.temporal.ChronoField MILLI_OF_DAY; |
| 11838 | enum_constant public static final java.time.temporal.ChronoField MILLI_OF_SECOND; |
| 11839 | enum_constant public static final java.time.temporal.ChronoField MINUTE_OF_DAY; |
| 11840 | enum_constant public static final java.time.temporal.ChronoField MINUTE_OF_HOUR; |
| 11841 | enum_constant public static final java.time.temporal.ChronoField MONTH_OF_YEAR; |
| 11842 | enum_constant public static final java.time.temporal.ChronoField NANO_OF_DAY; |
| 11843 | enum_constant public static final java.time.temporal.ChronoField NANO_OF_SECOND; |
| 11844 | enum_constant public static final java.time.temporal.ChronoField OFFSET_SECONDS; |
| 11845 | enum_constant public static final java.time.temporal.ChronoField PROLEPTIC_MONTH; |
| 11846 | enum_constant public static final java.time.temporal.ChronoField SECOND_OF_DAY; |
| 11847 | enum_constant public static final java.time.temporal.ChronoField SECOND_OF_MINUTE; |
| 11848 | enum_constant public static final java.time.temporal.ChronoField YEAR; |
| 11849 | enum_constant public static final java.time.temporal.ChronoField YEAR_OF_ERA; |
| 11850 | } |
| 11851 | |
| 11852 | public enum ChronoUnit implements java.time.temporal.TemporalUnit { |
| 11853 | method public <R extends java.time.temporal.Temporal> R addTo(R, long); |
| 11854 | method public long between(java.time.temporal.Temporal, java.time.temporal.Temporal); |
| 11855 | method public java.time.Duration getDuration(); |
| 11856 | method public boolean isDateBased(); |
| 11857 | method public boolean isDurationEstimated(); |
| 11858 | method public boolean isTimeBased(); |
| 11859 | enum_constant public static final java.time.temporal.ChronoUnit CENTURIES; |
| 11860 | enum_constant public static final java.time.temporal.ChronoUnit DAYS; |
| 11861 | enum_constant public static final java.time.temporal.ChronoUnit DECADES; |
| 11862 | enum_constant public static final java.time.temporal.ChronoUnit ERAS; |
| 11863 | enum_constant public static final java.time.temporal.ChronoUnit FOREVER; |
| 11864 | enum_constant public static final java.time.temporal.ChronoUnit HALF_DAYS; |
| 11865 | enum_constant public static final java.time.temporal.ChronoUnit HOURS; |
| 11866 | enum_constant public static final java.time.temporal.ChronoUnit MICROS; |
| 11867 | enum_constant public static final java.time.temporal.ChronoUnit MILLENNIA; |
| 11868 | enum_constant public static final java.time.temporal.ChronoUnit MILLIS; |
| 11869 | enum_constant public static final java.time.temporal.ChronoUnit MINUTES; |
| 11870 | enum_constant public static final java.time.temporal.ChronoUnit MONTHS; |
| 11871 | enum_constant public static final java.time.temporal.ChronoUnit NANOS; |
| 11872 | enum_constant public static final java.time.temporal.ChronoUnit SECONDS; |
| 11873 | enum_constant public static final java.time.temporal.ChronoUnit WEEKS; |
| 11874 | enum_constant public static final java.time.temporal.ChronoUnit YEARS; |
| 11875 | } |
| 11876 | |
| 11877 | public final class IsoFields { |
| 11878 | field public static final java.time.temporal.TemporalField DAY_OF_QUARTER; |
| 11879 | field public static final java.time.temporal.TemporalField QUARTER_OF_YEAR; |
| 11880 | field public static final java.time.temporal.TemporalUnit QUARTER_YEARS; |
| 11881 | field public static final java.time.temporal.TemporalField WEEK_BASED_YEAR; |
| 11882 | field public static final java.time.temporal.TemporalUnit WEEK_BASED_YEARS; |
| 11883 | field public static final java.time.temporal.TemporalField WEEK_OF_WEEK_BASED_YEAR; |
| 11884 | } |
| 11885 | |
| 11886 | public final class JulianFields { |
| 11887 | field public static final java.time.temporal.TemporalField JULIAN_DAY; |
| 11888 | field public static final java.time.temporal.TemporalField MODIFIED_JULIAN_DAY; |
| 11889 | field public static final java.time.temporal.TemporalField RATA_DIE; |
| 11890 | } |
| 11891 | |
| 11892 | public interface Temporal extends java.time.temporal.TemporalAccessor { |
| 11893 | method public boolean isSupported(java.time.temporal.TemporalUnit); |
| 11894 | method public default java.time.temporal.Temporal minus(java.time.temporal.TemporalAmount); |
| 11895 | method public default java.time.temporal.Temporal minus(long, java.time.temporal.TemporalUnit); |
| 11896 | method public default java.time.temporal.Temporal plus(java.time.temporal.TemporalAmount); |
| 11897 | method public java.time.temporal.Temporal plus(long, java.time.temporal.TemporalUnit); |
| 11898 | method public long until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit); |
| 11899 | method public default java.time.temporal.Temporal with(java.time.temporal.TemporalAdjuster); |
| 11900 | method public java.time.temporal.Temporal with(java.time.temporal.TemporalField, long); |
| 11901 | } |
| 11902 | |
| 11903 | public interface TemporalAccessor { |
| 11904 | method public default int get(java.time.temporal.TemporalField); |
| 11905 | method public long getLong(java.time.temporal.TemporalField); |
| 11906 | method public boolean isSupported(java.time.temporal.TemporalField); |
| 11907 | method public default <R> R query(java.time.temporal.TemporalQuery<R>); |
| 11908 | method public default java.time.temporal.ValueRange range(java.time.temporal.TemporalField); |
| 11909 | } |
| 11910 | |
| 11911 | @java.lang.FunctionalInterface public interface TemporalAdjuster { |
| 11912 | method public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal); |
| 11913 | } |
| 11914 | |
| 11915 | public final class TemporalAdjusters { |
| 11916 | method public static java.time.temporal.TemporalAdjuster dayOfWeekInMonth(int, java.time.DayOfWeek); |
| 11917 | method public static java.time.temporal.TemporalAdjuster firstDayOfMonth(); |
| 11918 | method public static java.time.temporal.TemporalAdjuster firstDayOfNextMonth(); |
| 11919 | method public static java.time.temporal.TemporalAdjuster firstDayOfNextYear(); |
| 11920 | method public static java.time.temporal.TemporalAdjuster firstDayOfYear(); |
| 11921 | method public static java.time.temporal.TemporalAdjuster firstInMonth(java.time.DayOfWeek); |
| 11922 | method public static java.time.temporal.TemporalAdjuster lastDayOfMonth(); |
| 11923 | method public static java.time.temporal.TemporalAdjuster lastDayOfYear(); |
| 11924 | method public static java.time.temporal.TemporalAdjuster lastInMonth(java.time.DayOfWeek); |
| 11925 | method public static java.time.temporal.TemporalAdjuster next(java.time.DayOfWeek); |
| 11926 | method public static java.time.temporal.TemporalAdjuster nextOrSame(java.time.DayOfWeek); |
| 11927 | method public static java.time.temporal.TemporalAdjuster ofDateAdjuster(java.util.function.UnaryOperator<java.time.LocalDate>); |
| 11928 | method public static java.time.temporal.TemporalAdjuster previous(java.time.DayOfWeek); |
| 11929 | method public static java.time.temporal.TemporalAdjuster previousOrSame(java.time.DayOfWeek); |
| 11930 | } |
| 11931 | |
| 11932 | public interface TemporalAmount { |
| 11933 | method public java.time.temporal.Temporal addTo(java.time.temporal.Temporal); |
| 11934 | method public long get(java.time.temporal.TemporalUnit); |
| 11935 | method public java.util.List<java.time.temporal.TemporalUnit> getUnits(); |
| 11936 | method public java.time.temporal.Temporal subtractFrom(java.time.temporal.Temporal); |
| 11937 | } |
| 11938 | |
| 11939 | public interface TemporalField { |
| 11940 | method public <R extends java.time.temporal.Temporal> R adjustInto(R, long); |
| 11941 | method public java.time.temporal.TemporalUnit getBaseUnit(); |
| 11942 | method public default String getDisplayName(java.util.Locale); |
| 11943 | method public long getFrom(java.time.temporal.TemporalAccessor); |
| 11944 | method public java.time.temporal.TemporalUnit getRangeUnit(); |
| 11945 | method public boolean isDateBased(); |
| 11946 | method public boolean isSupportedBy(java.time.temporal.TemporalAccessor); |
| 11947 | method public boolean isTimeBased(); |
| 11948 | method public java.time.temporal.ValueRange range(); |
| 11949 | method public java.time.temporal.ValueRange rangeRefinedBy(java.time.temporal.TemporalAccessor); |
| 11950 | method public default java.time.temporal.TemporalAccessor resolve(java.util.Map<java.time.temporal.TemporalField,java.lang.Long>, java.time.temporal.TemporalAccessor, java.time.format.ResolverStyle); |
| 11951 | method public String toString(); |
| 11952 | } |
| 11953 | |
| 11954 | public final class TemporalQueries { |
| 11955 | method public static java.time.temporal.TemporalQuery<java.time.chrono.Chronology> chronology(); |
| 11956 | method public static java.time.temporal.TemporalQuery<java.time.LocalDate> localDate(); |
| 11957 | method public static java.time.temporal.TemporalQuery<java.time.LocalTime> localTime(); |
| 11958 | method public static java.time.temporal.TemporalQuery<java.time.ZoneOffset> offset(); |
| 11959 | method public static java.time.temporal.TemporalQuery<java.time.temporal.TemporalUnit> precision(); |
| 11960 | method public static java.time.temporal.TemporalQuery<java.time.ZoneId> zone(); |
| 11961 | method public static java.time.temporal.TemporalQuery<java.time.ZoneId> zoneId(); |
| 11962 | } |
| 11963 | |
| 11964 | @java.lang.FunctionalInterface public interface TemporalQuery<R> { |
| 11965 | method public R queryFrom(java.time.temporal.TemporalAccessor); |
| 11966 | } |
| 11967 | |
| 11968 | public interface TemporalUnit { |
| 11969 | method public <R extends java.time.temporal.Temporal> R addTo(R, long); |
| 11970 | method public long between(java.time.temporal.Temporal, java.time.temporal.Temporal); |
| 11971 | method public java.time.Duration getDuration(); |
| 11972 | method public boolean isDateBased(); |
| 11973 | method public boolean isDurationEstimated(); |
| 11974 | method public default boolean isSupportedBy(java.time.temporal.Temporal); |
| 11975 | method public boolean isTimeBased(); |
| 11976 | method public String toString(); |
| 11977 | } |
| 11978 | |
| 11979 | public class UnsupportedTemporalTypeException extends java.time.DateTimeException { |
| 11980 | ctor public UnsupportedTemporalTypeException(String); |
| 11981 | ctor public UnsupportedTemporalTypeException(String, Throwable); |
| 11982 | } |
| 11983 | |
| 11984 | public final class ValueRange implements java.io.Serializable { |
| 11985 | method public int checkValidIntValue(long, java.time.temporal.TemporalField); |
| 11986 | method public long checkValidValue(long, java.time.temporal.TemporalField); |
| 11987 | method public long getLargestMinimum(); |
| 11988 | method public long getMaximum(); |
| 11989 | method public long getMinimum(); |
| 11990 | method public long getSmallestMaximum(); |
| 11991 | method public boolean isFixed(); |
| 11992 | method public boolean isIntValue(); |
| 11993 | method public boolean isValidIntValue(long); |
| 11994 | method public boolean isValidValue(long); |
| 11995 | method public static java.time.temporal.ValueRange of(long, long); |
| 11996 | method public static java.time.temporal.ValueRange of(long, long, long); |
| 11997 | method public static java.time.temporal.ValueRange of(long, long, long, long); |
| 11998 | } |
| 11999 | |
| 12000 | public final class WeekFields implements java.io.Serializable { |
| 12001 | method public java.time.temporal.TemporalField dayOfWeek(); |
| 12002 | method public java.time.DayOfWeek getFirstDayOfWeek(); |
| 12003 | method public int getMinimalDaysInFirstWeek(); |
| 12004 | method public static java.time.temporal.WeekFields of(java.util.Locale); |
| 12005 | method public static java.time.temporal.WeekFields of(java.time.DayOfWeek, int); |
| 12006 | method public java.time.temporal.TemporalField weekBasedYear(); |
| 12007 | method public java.time.temporal.TemporalField weekOfMonth(); |
| 12008 | method public java.time.temporal.TemporalField weekOfWeekBasedYear(); |
| 12009 | method public java.time.temporal.TemporalField weekOfYear(); |
| 12010 | field public static final java.time.temporal.WeekFields ISO; |
| 12011 | field public static final java.time.temporal.WeekFields SUNDAY_START; |
| 12012 | field public static final java.time.temporal.TemporalUnit WEEK_BASED_YEARS; |
| 12013 | } |
| 12014 | |
| 12015 | } |
| 12016 | |
| 12017 | package java.time.zone { |
| 12018 | |
| 12019 | public final class ZoneOffsetTransition implements java.lang.Comparable<java.time.zone.ZoneOffsetTransition> java.io.Serializable { |
| 12020 | method public int compareTo(java.time.zone.ZoneOffsetTransition); |
| 12021 | method public java.time.LocalDateTime getDateTimeAfter(); |
| 12022 | method public java.time.LocalDateTime getDateTimeBefore(); |
| 12023 | method public java.time.Duration getDuration(); |
| 12024 | method public java.time.Instant getInstant(); |
| 12025 | method public java.time.ZoneOffset getOffsetAfter(); |
| 12026 | method public java.time.ZoneOffset getOffsetBefore(); |
| 12027 | method public boolean isGap(); |
| 12028 | method public boolean isOverlap(); |
| 12029 | method public boolean isValidOffset(java.time.ZoneOffset); |
| 12030 | method public static java.time.zone.ZoneOffsetTransition of(java.time.LocalDateTime, java.time.ZoneOffset, java.time.ZoneOffset); |
| 12031 | method public long toEpochSecond(); |
| 12032 | } |
| 12033 | |
| 12034 | public final class ZoneOffsetTransitionRule implements java.io.Serializable { |
| 12035 | method public java.time.zone.ZoneOffsetTransition createTransition(int); |
| 12036 | method public int getDayOfMonthIndicator(); |
| 12037 | method public java.time.DayOfWeek getDayOfWeek(); |
| 12038 | method public java.time.LocalTime getLocalTime(); |
| 12039 | method public java.time.Month getMonth(); |
| 12040 | method public java.time.ZoneOffset getOffsetAfter(); |
| 12041 | method public java.time.ZoneOffset getOffsetBefore(); |
| 12042 | method public java.time.ZoneOffset getStandardOffset(); |
| 12043 | method public java.time.zone.ZoneOffsetTransitionRule.TimeDefinition getTimeDefinition(); |
| 12044 | method public boolean isMidnightEndOfDay(); |
| 12045 | method public static java.time.zone.ZoneOffsetTransitionRule of(java.time.Month, int, java.time.DayOfWeek, java.time.LocalTime, boolean, java.time.zone.ZoneOffsetTransitionRule.TimeDefinition, java.time.ZoneOffset, java.time.ZoneOffset, java.time.ZoneOffset); |
| 12046 | } |
| 12047 | |
| 12048 | public enum ZoneOffsetTransitionRule.TimeDefinition { |
| 12049 | method public java.time.LocalDateTime createDateTime(java.time.LocalDateTime, java.time.ZoneOffset, java.time.ZoneOffset); |
| 12050 | enum_constant public static final java.time.zone.ZoneOffsetTransitionRule.TimeDefinition STANDARD; |
| 12051 | enum_constant public static final java.time.zone.ZoneOffsetTransitionRule.TimeDefinition UTC; |
| 12052 | enum_constant public static final java.time.zone.ZoneOffsetTransitionRule.TimeDefinition WALL; |
| 12053 | } |
| 12054 | |
| 12055 | public final class ZoneRules implements java.io.Serializable { |
| 12056 | method public java.time.Duration getDaylightSavings(java.time.Instant); |
| 12057 | method public java.time.ZoneOffset getOffset(java.time.Instant); |
| 12058 | method public java.time.ZoneOffset getOffset(java.time.LocalDateTime); |
| 12059 | method public java.time.ZoneOffset getStandardOffset(java.time.Instant); |
| 12060 | method public java.time.zone.ZoneOffsetTransition getTransition(java.time.LocalDateTime); |
| 12061 | method public java.util.List<java.time.zone.ZoneOffsetTransitionRule> getTransitionRules(); |
| 12062 | method public java.util.List<java.time.zone.ZoneOffsetTransition> getTransitions(); |
| 12063 | method public java.util.List<java.time.ZoneOffset> getValidOffsets(java.time.LocalDateTime); |
| 12064 | method public boolean isDaylightSavings(java.time.Instant); |
| 12065 | method public boolean isFixedOffset(); |
| 12066 | method public boolean isValidOffset(java.time.LocalDateTime, java.time.ZoneOffset); |
| 12067 | method public java.time.zone.ZoneOffsetTransition nextTransition(java.time.Instant); |
| 12068 | method public static java.time.zone.ZoneRules of(java.time.ZoneOffset, java.time.ZoneOffset, java.util.List<java.time.zone.ZoneOffsetTransition>, java.util.List<java.time.zone.ZoneOffsetTransition>, java.util.List<java.time.zone.ZoneOffsetTransitionRule>); |
| 12069 | method public static java.time.zone.ZoneRules of(java.time.ZoneOffset); |
| 12070 | method public java.time.zone.ZoneOffsetTransition previousTransition(java.time.Instant); |
| 12071 | } |
| 12072 | |
| 12073 | public class ZoneRulesException extends java.time.DateTimeException { |
| 12074 | ctor public ZoneRulesException(String); |
| 12075 | ctor public ZoneRulesException(String, Throwable); |
| 12076 | } |
| 12077 | |
| 12078 | } |
| 12079 | |
| 12080 | package java.util { |
| 12081 | |
| 12082 | public abstract class AbstractCollection<E> implements java.util.Collection<E> { |
| 12083 | ctor protected AbstractCollection(); |
| 12084 | method public boolean add(E); |
| 12085 | method public boolean addAll(@NonNull java.util.Collection<? extends E>); |
| 12086 | method public void clear(); |
| 12087 | method public boolean contains(@Nullable Object); |
| 12088 | method public boolean containsAll(@NonNull java.util.Collection<?>); |
| 12089 | method public boolean isEmpty(); |
| 12090 | method public boolean remove(@Nullable Object); |
| 12091 | method public boolean removeAll(@NonNull java.util.Collection<?>); |
| 12092 | method public boolean retainAll(@NonNull java.util.Collection<?>); |
| 12093 | method @NonNull public Object[] toArray(); |
| 12094 | method @NonNull public <T> T[] toArray(@NonNull T[]); |
| 12095 | } |
| 12096 | |
| 12097 | public abstract class AbstractList<E> extends java.util.AbstractCollection<E> implements java.util.List<E> { |
| 12098 | ctor protected AbstractList(); |
| 12099 | method public void add(int, E); |
| 12100 | method public boolean addAll(int, @NonNull java.util.Collection<? extends E>); |
| 12101 | method public int indexOf(@Nullable Object); |
| 12102 | method @NonNull public java.util.Iterator<E> iterator(); |
| 12103 | method public int lastIndexOf(@Nullable Object); |
| 12104 | method @NonNull public java.util.ListIterator<E> listIterator(); |
| 12105 | method @NonNull public java.util.ListIterator<E> listIterator(int); |
| 12106 | method public E remove(int); |
| 12107 | method protected void removeRange(int, int); |
| 12108 | method public E set(int, E); |
| 12109 | method @NonNull public java.util.List<E> subList(int, int); |
| 12110 | field protected transient int modCount; |
| 12111 | } |
| 12112 | |
| 12113 | public abstract class AbstractMap<K, V> implements java.util.Map<K,V> { |
| 12114 | ctor protected AbstractMap(); |
| 12115 | method public void clear(); |
| 12116 | method public boolean containsKey(@Nullable Object); |
| 12117 | method public boolean containsValue(@Nullable Object); |
| 12118 | method @Nullable public V get(@Nullable Object); |
| 12119 | method public boolean isEmpty(); |
| 12120 | method @NonNull public java.util.Set<K> keySet(); |
| 12121 | method @Nullable public V put(K, V); |
| 12122 | method public void putAll(@NonNull java.util.Map<? extends K,? extends V>); |
| 12123 | method @Nullable public V remove(@Nullable Object); |
| 12124 | method public int size(); |
| 12125 | method @NonNull public java.util.Collection<V> values(); |
| 12126 | } |
| 12127 | |
| 12128 | public static class AbstractMap.SimpleEntry<K, V> implements java.util.Map.Entry<K,V> java.io.Serializable { |
| 12129 | ctor public AbstractMap.SimpleEntry(K, V); |
| 12130 | ctor public AbstractMap.SimpleEntry(@NonNull java.util.Map.Entry<? extends K,? extends V>); |
| 12131 | method public K getKey(); |
| 12132 | method public V getValue(); |
| 12133 | method public V setValue(V); |
| 12134 | } |
| 12135 | |
| 12136 | public static class AbstractMap.SimpleImmutableEntry<K, V> implements java.util.Map.Entry<K,V> java.io.Serializable { |
| 12137 | ctor public AbstractMap.SimpleImmutableEntry(K, V); |
| 12138 | ctor public AbstractMap.SimpleImmutableEntry(@NonNull java.util.Map.Entry<? extends K,? extends V>); |
| 12139 | method public K getKey(); |
| 12140 | method public V getValue(); |
| 12141 | method public V setValue(V); |
| 12142 | } |
| 12143 | |
| 12144 | public abstract class AbstractQueue<E> extends java.util.AbstractCollection<E> implements java.util.Queue<E> { |
| 12145 | ctor protected AbstractQueue(); |
| 12146 | method public E element(); |
| 12147 | method public E remove(); |
| 12148 | } |
| 12149 | |
| 12150 | public abstract class AbstractSequentialList<E> extends java.util.AbstractList<E> { |
| 12151 | ctor protected AbstractSequentialList(); |
| 12152 | method public E get(int); |
| 12153 | } |
| 12154 | |
| 12155 | public abstract class AbstractSet<E> extends java.util.AbstractCollection<E> implements java.util.Set<E> { |
| 12156 | ctor protected AbstractSet(); |
| 12157 | } |
| 12158 | |
| 12159 | public class ArrayDeque<E> extends java.util.AbstractCollection<E> implements java.lang.Cloneable java.util.Deque<E> java.io.Serializable { |
| 12160 | ctor public ArrayDeque(); |
| 12161 | ctor public ArrayDeque(int); |
| 12162 | ctor public ArrayDeque(@NonNull java.util.Collection<? extends E>); |
| 12163 | method public void addFirst(E); |
| 12164 | method public void addLast(E); |
| 12165 | method @NonNull public java.util.ArrayDeque<E> clone(); |
| 12166 | method @NonNull public java.util.Iterator<E> descendingIterator(); |
| 12167 | method public E element(); |
| 12168 | method public E getFirst(); |
| 12169 | method public E getLast(); |
| 12170 | method @NonNull public java.util.Iterator<E> iterator(); |
| 12171 | method public boolean offer(E); |
| 12172 | method public boolean offerFirst(E); |
| 12173 | method public boolean offerLast(E); |
| 12174 | method @Nullable public E peek(); |
| 12175 | method @Nullable public E peekFirst(); |
| 12176 | method @Nullable public E peekLast(); |
| 12177 | method @Nullable public E poll(); |
| 12178 | method @Nullable public E pollFirst(); |
| 12179 | method @Nullable public E pollLast(); |
| 12180 | method public E pop(); |
| 12181 | method public void push(E); |
| 12182 | method public E remove(); |
| 12183 | method public E removeFirst(); |
| 12184 | method public boolean removeFirstOccurrence(@Nullable Object); |
| 12185 | method public E removeLast(); |
| 12186 | method public boolean removeLastOccurrence(@Nullable Object); |
| 12187 | method public int size(); |
| 12188 | } |
| 12189 | |
| 12190 | public class ArrayList<E> extends java.util.AbstractList<E> implements java.lang.Cloneable java.util.List<E> java.util.RandomAccess java.io.Serializable { |
| 12191 | ctor public ArrayList(int); |
| 12192 | ctor public ArrayList(); |
| 12193 | ctor public ArrayList(@NonNull java.util.Collection<? extends E>); |
| 12194 | method @NonNull public Object clone(); |
| 12195 | method public void ensureCapacity(int); |
| 12196 | method public void forEach(@NonNull java.util.function.Consumer<? super E>); |
| 12197 | method public E get(int); |
| 12198 | method public int size(); |
| 12199 | method public void trimToSize(); |
| 12200 | } |
| 12201 | |
| 12202 | public class Arrays { |
| 12203 | method @NonNull @java.lang.SafeVarargs public static <T> java.util.List<T> asList(@NonNull T...); |
| 12204 | method public static int binarySearch(@NonNull long[], long); |
| 12205 | method public static int binarySearch(@NonNull long[], int, int, long); |
| 12206 | method public static int binarySearch(@NonNull int[], int); |
| 12207 | method public static int binarySearch(@NonNull int[], int, int, int); |
| 12208 | method public static int binarySearch(@NonNull short[], short); |
| 12209 | method public static int binarySearch(@NonNull short[], int, int, short); |
| 12210 | method public static int binarySearch(@NonNull char[], char); |
| 12211 | method public static int binarySearch(@NonNull char[], int, int, char); |
| 12212 | method public static int binarySearch(@NonNull byte[], byte); |
| 12213 | method public static int binarySearch(@NonNull byte[], int, int, byte); |
| 12214 | method public static int binarySearch(@NonNull double[], double); |
| 12215 | method public static int binarySearch(@NonNull double[], int, int, double); |
| 12216 | method public static int binarySearch(@NonNull float[], float); |
| 12217 | method public static int binarySearch(@NonNull float[], int, int, float); |
| 12218 | method public static int binarySearch(@NonNull Object[], @NonNull Object); |
| 12219 | method public static int binarySearch(@NonNull Object[], int, int, @NonNull Object); |
| 12220 | method public static <T> int binarySearch(@NonNull T[], T, @Nullable java.util.Comparator<? super T>); |
| 12221 | method public static <T> int binarySearch(@NonNull T[], int, int, T, @Nullable java.util.Comparator<? super T>); |
| 12222 | method @NonNull public static <T> T[] copyOf(@NonNull T[], int); |
| 12223 | method @NonNull public static <T, U> T[] copyOf(@NonNull U[], int, @NonNull Class<? extends T[]>); |
| 12224 | method @NonNull public static byte[] copyOf(@NonNull byte[], int); |
| 12225 | method @NonNull public static short[] copyOf(@NonNull short[], int); |
| 12226 | method @NonNull public static int[] copyOf(@NonNull int[], int); |
| 12227 | method @NonNull public static long[] copyOf(@NonNull long[], int); |
| 12228 | method @NonNull public static char[] copyOf(@NonNull char[], int); |
| 12229 | method @NonNull public static float[] copyOf(@NonNull float[], int); |
| 12230 | method @NonNull public static double[] copyOf(@NonNull double[], int); |
| 12231 | method @NonNull public static boolean[] copyOf(@NonNull boolean[], int); |
| 12232 | method @NonNull public static <T> T[] copyOfRange(@NonNull T[], int, int); |
| 12233 | method @NonNull public static <T, U> T[] copyOfRange(@NonNull U[], int, int, @NonNull Class<? extends T[]>); |
| 12234 | method @NonNull public static byte[] copyOfRange(@NonNull byte[], int, int); |
| 12235 | method @NonNull public static short[] copyOfRange(@NonNull short[], int, int); |
| 12236 | method @NonNull public static int[] copyOfRange(@NonNull int[], int, int); |
| 12237 | method @NonNull public static long[] copyOfRange(@NonNull long[], int, int); |
| 12238 | method @NonNull public static char[] copyOfRange(@NonNull char[], int, int); |
| 12239 | method @NonNull public static float[] copyOfRange(@NonNull float[], int, int); |
| 12240 | method @NonNull public static double[] copyOfRange(@NonNull double[], int, int); |
| 12241 | method @NonNull public static boolean[] copyOfRange(@NonNull boolean[], int, int); |
| 12242 | method public static boolean deepEquals(@Nullable Object[], @Nullable Object[]); |
| 12243 | method public static int deepHashCode(@Nullable Object[]); |
| 12244 | method @NonNull public static String deepToString(@Nullable Object[]); |
| 12245 | method public static boolean equals(@Nullable long[], @Nullable long[]); |
| 12246 | method public static boolean equals(@Nullable int[], @Nullable int[]); |
| 12247 | method public static boolean equals(@Nullable short[], @Nullable short[]); |
| 12248 | method public static boolean equals(@Nullable char[], @Nullable char[]); |
| 12249 | method public static boolean equals(@Nullable byte[], @Nullable byte[]); |
| 12250 | method public static boolean equals(@Nullable boolean[], @Nullable boolean[]); |
| 12251 | method public static boolean equals(@Nullable double[], @Nullable double[]); |
| 12252 | method public static boolean equals(@Nullable float[], @Nullable float[]); |
| 12253 | method public static boolean equals(@Nullable Object[], @Nullable Object[]); |
| 12254 | method public static void fill(@NonNull long[], long); |
| 12255 | method public static void fill(@NonNull long[], int, int, long); |
| 12256 | method public static void fill(@NonNull int[], int); |
| 12257 | method public static void fill(@NonNull int[], int, int, int); |
| 12258 | method public static void fill(@NonNull short[], short); |
| 12259 | method public static void fill(@NonNull short[], int, int, short); |
| 12260 | method public static void fill(@NonNull char[], char); |
| 12261 | method public static void fill(@NonNull char[], int, int, char); |
| 12262 | method public static void fill(@NonNull byte[], byte); |
| 12263 | method public static void fill(@NonNull byte[], int, int, byte); |
| 12264 | method public static void fill(@NonNull boolean[], boolean); |
| 12265 | method public static void fill(@NonNull boolean[], int, int, boolean); |
| 12266 | method public static void fill(@NonNull double[], double); |
| 12267 | method public static void fill(@NonNull double[], int, int, double); |
| 12268 | method public static void fill(@NonNull float[], float); |
| 12269 | method public static void fill(@NonNull float[], int, int, float); |
| 12270 | method public static void fill(@NonNull Object[], @Nullable Object); |
| 12271 | method public static void fill(@NonNull Object[], int, int, @Nullable Object); |
| 12272 | method public static int hashCode(@Nullable long[]); |
| 12273 | method public static int hashCode(@Nullable int[]); |
| 12274 | method public static int hashCode(@Nullable short[]); |
| 12275 | method public static int hashCode(@Nullable char[]); |
| 12276 | method public static int hashCode(@Nullable byte[]); |
| 12277 | method public static int hashCode(@Nullable boolean[]); |
| 12278 | method public static int hashCode(@Nullable float[]); |
| 12279 | method public static int hashCode(@Nullable double[]); |
| 12280 | method public static int hashCode(@Nullable Object[]); |
| 12281 | method public static <T> void parallelPrefix(@NonNull T[], @NonNull java.util.function.BinaryOperator<T>); |
| 12282 | method public static <T> void parallelPrefix(@NonNull T[], int, int, @NonNull java.util.function.BinaryOperator<T>); |
| 12283 | method public static void parallelPrefix(@NonNull long[], @NonNull java.util.function.LongBinaryOperator); |
| 12284 | method public static void parallelPrefix(@NonNull long[], int, int, @NonNull java.util.function.LongBinaryOperator); |
| 12285 | method public static void parallelPrefix(@NonNull double[], @NonNull java.util.function.DoubleBinaryOperator); |
| 12286 | method public static void parallelPrefix(@NonNull double[], int, int, @NonNull java.util.function.DoubleBinaryOperator); |
| 12287 | method public static void parallelPrefix(@NonNull int[], @NonNull java.util.function.IntBinaryOperator); |
| 12288 | method public static void parallelPrefix(@NonNull int[], int, int, @NonNull java.util.function.IntBinaryOperator); |
| 12289 | method public static <T> void parallelSetAll(@NonNull T[], @NonNull java.util.function.IntFunction<? extends T>); |
| 12290 | method public static void parallelSetAll(@NonNull int[], @NonNull java.util.function.IntUnaryOperator); |
| 12291 | method public static void parallelSetAll(@NonNull long[], @NonNull java.util.function.IntToLongFunction); |
| 12292 | method public static void parallelSetAll(@NonNull double[], @NonNull java.util.function.IntToDoubleFunction); |
| 12293 | method public static void parallelSort(@NonNull byte[]); |
| 12294 | method public static void parallelSort(@NonNull byte[], int, int); |
| 12295 | method public static void parallelSort(@NonNull char[]); |
| 12296 | method public static void parallelSort(@NonNull char[], int, int); |
| 12297 | method public static void parallelSort(@NonNull short[]); |
| 12298 | method public static void parallelSort(@NonNull short[], int, int); |
| 12299 | method public static void parallelSort(@NonNull int[]); |
| 12300 | method public static void parallelSort(@NonNull int[], int, int); |
| 12301 | method public static void parallelSort(@NonNull long[]); |
| 12302 | method public static void parallelSort(@NonNull long[], int, int); |
| 12303 | method public static void parallelSort(@NonNull float[]); |
| 12304 | method public static void parallelSort(@NonNull float[], int, int); |
| 12305 | method public static void parallelSort(@NonNull double[]); |
| 12306 | method public static void parallelSort(@NonNull double[], int, int); |
| 12307 | method public static <T extends java.lang.Comparable<? super T>> void parallelSort(@NonNull T[]); |
| 12308 | method public static <T extends java.lang.Comparable<? super T>> void parallelSort(@NonNull T[], int, int); |
| 12309 | method public static <T> void parallelSort(@NonNull T[], @Nullable java.util.Comparator<? super T>); |
| 12310 | method public static <T> void parallelSort(@NonNull T[], int, int, @Nullable java.util.Comparator<? super T>); |
| 12311 | method public static <T> void setAll(@NonNull T[], @NonNull java.util.function.IntFunction<? extends T>); |
| 12312 | method public static void setAll(@NonNull int[], @NonNull java.util.function.IntUnaryOperator); |
| 12313 | method public static void setAll(@NonNull long[], @NonNull java.util.function.IntToLongFunction); |
| 12314 | method public static void setAll(@NonNull double[], @NonNull java.util.function.IntToDoubleFunction); |
| 12315 | method public static void sort(@NonNull int[]); |
| 12316 | method public static void sort(@NonNull int[], int, int); |
| 12317 | method public static void sort(@NonNull long[]); |
| 12318 | method public static void sort(@NonNull long[], int, int); |
| 12319 | method public static void sort(@NonNull short[]); |
| 12320 | method public static void sort(@NonNull short[], int, int); |
| 12321 | method public static void sort(@NonNull char[]); |
| 12322 | method public static void sort(@NonNull char[], int, int); |
| 12323 | method public static void sort(@NonNull byte[]); |
| 12324 | method public static void sort(@NonNull byte[], int, int); |
| 12325 | method public static void sort(@NonNull float[]); |
| 12326 | method public static void sort(@NonNull float[], int, int); |
| 12327 | method public static void sort(@NonNull double[]); |
| 12328 | method public static void sort(@NonNull double[], int, int); |
| 12329 | method public static void sort(@NonNull Object[]); |
| 12330 | method public static void sort(@NonNull Object[], int, int); |
| 12331 | method public static <T> void sort(@NonNull T[], @Nullable java.util.Comparator<? super T>); |
| 12332 | method public static <T> void sort(@NonNull T[], int, int, @Nullable java.util.Comparator<? super T>); |
| 12333 | method @NonNull public static <T> java.util.Spliterator<T> spliterator(@NonNull T[]); |
| 12334 | method @NonNull public static <T> java.util.Spliterator<T> spliterator(@NonNull T[], int, int); |
| 12335 | method @NonNull public static java.util.Spliterator.OfInt spliterator(@NonNull int[]); |
| 12336 | method @NonNull public static java.util.Spliterator.OfInt spliterator(@NonNull int[], int, int); |
| 12337 | method @NonNull public static java.util.Spliterator.OfLong spliterator(@NonNull long[]); |
| 12338 | method @NonNull public static java.util.Spliterator.OfLong spliterator(@NonNull long[], int, int); |
| 12339 | method @NonNull public static java.util.Spliterator.OfDouble spliterator(@NonNull double[]); |
| 12340 | method @NonNull public static java.util.Spliterator.OfDouble spliterator(@NonNull double[], int, int); |
| 12341 | method @NonNull public static <T> java.util.stream.Stream<T> stream(@NonNull T[]); |
| 12342 | method @NonNull public static <T> java.util.stream.Stream<T> stream(@NonNull T[], int, int); |
| 12343 | method @NonNull public static java.util.stream.IntStream stream(@NonNull int[]); |
| 12344 | method @NonNull public static java.util.stream.IntStream stream(@NonNull int[], int, int); |
| 12345 | method @NonNull public static java.util.stream.LongStream stream(@NonNull long[]); |
| 12346 | method @NonNull public static java.util.stream.LongStream stream(@NonNull long[], int, int); |
| 12347 | method @NonNull public static java.util.stream.DoubleStream stream(@NonNull double[]); |
| 12348 | method @NonNull public static java.util.stream.DoubleStream stream(@NonNull double[], int, int); |
| 12349 | method @NonNull public static String toString(@Nullable long[]); |
| 12350 | method @NonNull public static String toString(@Nullable int[]); |
| 12351 | method @NonNull public static String toString(@Nullable short[]); |
| 12352 | method @NonNull public static String toString(@Nullable char[]); |
| 12353 | method @NonNull public static String toString(@Nullable byte[]); |
| 12354 | method @NonNull public static String toString(@Nullable boolean[]); |
| 12355 | method @NonNull public static String toString(@Nullable float[]); |
| 12356 | method @NonNull public static String toString(@Nullable double[]); |
| 12357 | method @NonNull public static String toString(@Nullable Object[]); |
| 12358 | } |
| 12359 | |
| 12360 | public class Base64 { |
| 12361 | method public static java.util.Base64.Decoder getDecoder(); |
| 12362 | method public static java.util.Base64.Encoder getEncoder(); |
| 12363 | method public static java.util.Base64.Decoder getMimeDecoder(); |
| 12364 | method public static java.util.Base64.Encoder getMimeEncoder(); |
| 12365 | method public static java.util.Base64.Encoder getMimeEncoder(int, byte[]); |
| 12366 | method public static java.util.Base64.Decoder getUrlDecoder(); |
| 12367 | method public static java.util.Base64.Encoder getUrlEncoder(); |
| 12368 | } |
| 12369 | |
| 12370 | public static class Base64.Decoder { |
| 12371 | method public byte[] decode(byte[]); |
| 12372 | method public byte[] decode(String); |
| 12373 | method public int decode(byte[], byte[]); |
| 12374 | method public java.nio.ByteBuffer decode(java.nio.ByteBuffer); |
| 12375 | method public java.io.InputStream wrap(java.io.InputStream); |
| 12376 | } |
| 12377 | |
| 12378 | public static class Base64.Encoder { |
| 12379 | method public byte[] encode(byte[]); |
| 12380 | method public int encode(byte[], byte[]); |
| 12381 | method public java.nio.ByteBuffer encode(java.nio.ByteBuffer); |
| 12382 | method public String encodeToString(byte[]); |
| 12383 | method public java.util.Base64.Encoder withoutPadding(); |
| 12384 | method public java.io.OutputStream wrap(java.io.OutputStream); |
| 12385 | } |
| 12386 | |
| 12387 | public class BitSet implements java.lang.Cloneable java.io.Serializable { |
| 12388 | ctor public BitSet(); |
| 12389 | ctor public BitSet(int); |
| 12390 | method public void and(java.util.BitSet); |
| 12391 | method public void andNot(java.util.BitSet); |
| 12392 | method public int cardinality(); |
| 12393 | method public void clear(int); |
| 12394 | method public void clear(int, int); |
| 12395 | method public void clear(); |
| 12396 | method public Object clone(); |
| 12397 | method public void flip(int); |
| 12398 | method public void flip(int, int); |
| 12399 | method public boolean get(int); |
| 12400 | method public java.util.BitSet get(int, int); |
| 12401 | method public boolean intersects(java.util.BitSet); |
| 12402 | method public boolean isEmpty(); |
| 12403 | method public int length(); |
| 12404 | method public int nextClearBit(int); |
| 12405 | method public int nextSetBit(int); |
| 12406 | method public void or(java.util.BitSet); |
| 12407 | method public int previousClearBit(int); |
| 12408 | method public int previousSetBit(int); |
| 12409 | method public void set(int); |
| 12410 | method public void set(int, boolean); |
| 12411 | method public void set(int, int); |
| 12412 | method public void set(int, int, boolean); |
| 12413 | method public int size(); |
| 12414 | method public java.util.stream.IntStream stream(); |
| 12415 | method public byte[] toByteArray(); |
| 12416 | method public long[] toLongArray(); |
| 12417 | method public static java.util.BitSet valueOf(long[]); |
| 12418 | method public static java.util.BitSet valueOf(java.nio.LongBuffer); |
| 12419 | method public static java.util.BitSet valueOf(byte[]); |
| 12420 | method public static java.util.BitSet valueOf(java.nio.ByteBuffer); |
| 12421 | method public void xor(java.util.BitSet); |
| 12422 | } |
| 12423 | |
| 12424 | public abstract class Calendar implements java.lang.Cloneable java.lang.Comparable<java.util.Calendar> java.io.Serializable { |
| 12425 | ctor protected Calendar(); |
| 12426 | ctor protected Calendar(@NonNull java.util.TimeZone, @NonNull java.util.Locale); |
| 12427 | method public abstract void add(int, int); |
| 12428 | method public boolean after(@Nullable Object); |
| 12429 | method public boolean before(@Nullable Object); |
| 12430 | method public final void clear(); |
| 12431 | method public final void clear(int); |
| 12432 | method @NonNull public Object clone(); |
| 12433 | method public int compareTo(@NonNull java.util.Calendar); |
| 12434 | method protected void complete(); |
| 12435 | method protected abstract void computeFields(); |
| 12436 | method protected abstract void computeTime(); |
| 12437 | method public int get(int); |
| 12438 | method public int getActualMaximum(int); |
| 12439 | method public int getActualMinimum(int); |
| 12440 | method @NonNull public static java.util.Set<java.lang.String> getAvailableCalendarTypes(); |
| 12441 | method @NonNull public static java.util.Locale[] getAvailableLocales(); |
| 12442 | method @NonNull public String getCalendarType(); |
| 12443 | method @Nullable public String getDisplayName(int, int, @NonNull java.util.Locale); |
| 12444 | method @Nullable public java.util.Map<java.lang.String,java.lang.Integer> getDisplayNames(int, int, @NonNull java.util.Locale); |
| 12445 | method public int getFirstDayOfWeek(); |
| 12446 | method public abstract int getGreatestMinimum(int); |
| 12447 | method @NonNull public static java.util.Calendar getInstance(); |
| 12448 | method @NonNull public static java.util.Calendar getInstance(@NonNull java.util.TimeZone); |
| 12449 | method @NonNull public static java.util.Calendar getInstance(@NonNull java.util.Locale); |
| 12450 | method @NonNull public static java.util.Calendar getInstance(@NonNull java.util.TimeZone, @NonNull java.util.Locale); |
| 12451 | method public abstract int getLeastMaximum(int); |
| 12452 | method public abstract int getMaximum(int); |
| 12453 | method public int getMinimalDaysInFirstWeek(); |
| 12454 | method public abstract int getMinimum(int); |
| 12455 | method @NonNull public final java.util.Date getTime(); |
| 12456 | method public long getTimeInMillis(); |
| 12457 | method @NonNull public java.util.TimeZone getTimeZone(); |
| 12458 | method public int getWeekYear(); |
| 12459 | method public int getWeeksInWeekYear(); |
| 12460 | method protected final int internalGet(int); |
| 12461 | method public boolean isLenient(); |
| 12462 | method public final boolean isSet(int); |
| 12463 | method public boolean isWeekDateSupported(); |
| 12464 | method public abstract void roll(int, boolean); |
| 12465 | method public void roll(int, int); |
| 12466 | method public void set(int, int); |
| 12467 | method public final void set(int, int, int); |
| 12468 | method public final void set(int, int, int, int, int); |
| 12469 | method public final void set(int, int, int, int, int, int); |
| 12470 | method public void setFirstDayOfWeek(int); |
| 12471 | method public void setLenient(boolean); |
| 12472 | method public void setMinimalDaysInFirstWeek(int); |
| 12473 | method public final void setTime(@NonNull java.util.Date); |
| 12474 | method public void setTimeInMillis(long); |
| 12475 | method public void setTimeZone(@NonNull java.util.TimeZone); |
| 12476 | method public void setWeekDate(int, int, int); |
| 12477 | method @NonNull public final java.time.Instant toInstant(); |
| 12478 | field public static final int ALL_STYLES = 0; // 0x0 |
| 12479 | field public static final int AM = 0; // 0x0 |
| 12480 | field public static final int AM_PM = 9; // 0x9 |
| 12481 | field public static final int APRIL = 3; // 0x3 |
| 12482 | field public static final int AUGUST = 7; // 0x7 |
| 12483 | field public static final int DATE = 5; // 0x5 |
| 12484 | field public static final int DAY_OF_MONTH = 5; // 0x5 |
| 12485 | field public static final int DAY_OF_WEEK = 7; // 0x7 |
| 12486 | field public static final int DAY_OF_WEEK_IN_MONTH = 8; // 0x8 |
| 12487 | field public static final int DAY_OF_YEAR = 6; // 0x6 |
| 12488 | field public static final int DECEMBER = 11; // 0xb |
| 12489 | field public static final int DST_OFFSET = 16; // 0x10 |
| 12490 | field public static final int ERA = 0; // 0x0 |
| 12491 | field public static final int FEBRUARY = 1; // 0x1 |
| 12492 | field public static final int FIELD_COUNT = 17; // 0x11 |
| 12493 | field public static final int FRIDAY = 6; // 0x6 |
| 12494 | field public static final int HOUR = 10; // 0xa |
| 12495 | field public static final int HOUR_OF_DAY = 11; // 0xb |
| 12496 | field public static final int JANUARY = 0; // 0x0 |
| 12497 | field public static final int JULY = 6; // 0x6 |
| 12498 | field public static final int JUNE = 5; // 0x5 |
| 12499 | field public static final int LONG = 2; // 0x2 |
| 12500 | field public static final int LONG_FORMAT = 2; // 0x2 |
| 12501 | field public static final int LONG_STANDALONE = 32770; // 0x8002 |
| 12502 | field public static final int MARCH = 2; // 0x2 |
| 12503 | field public static final int MAY = 4; // 0x4 |
| 12504 | field public static final int MILLISECOND = 14; // 0xe |
| 12505 | field public static final int MINUTE = 12; // 0xc |
| 12506 | field public static final int MONDAY = 2; // 0x2 |
| 12507 | field public static final int MONTH = 2; // 0x2 |
| 12508 | field public static final int NARROW_FORMAT = 4; // 0x4 |
| 12509 | field public static final int NARROW_STANDALONE = 32772; // 0x8004 |
| 12510 | field public static final int NOVEMBER = 10; // 0xa |
| 12511 | field public static final int OCTOBER = 9; // 0x9 |
| 12512 | field public static final int PM = 1; // 0x1 |
| 12513 | field public static final int SATURDAY = 7; // 0x7 |
| 12514 | field public static final int SECOND = 13; // 0xd |
| 12515 | field public static final int SEPTEMBER = 8; // 0x8 |
| 12516 | field public static final int SHORT = 1; // 0x1 |
| 12517 | field public static final int SHORT_FORMAT = 1; // 0x1 |
| 12518 | field public static final int SHORT_STANDALONE = 32769; // 0x8001 |
| 12519 | field public static final int SUNDAY = 1; // 0x1 |
| 12520 | field public static final int THURSDAY = 5; // 0x5 |
| 12521 | field public static final int TUESDAY = 3; // 0x3 |
| 12522 | field public static final int UNDECIMBER = 12; // 0xc |
| 12523 | field public static final int WEDNESDAY = 4; // 0x4 |
| 12524 | field public static final int WEEK_OF_MONTH = 4; // 0x4 |
| 12525 | field public static final int WEEK_OF_YEAR = 3; // 0x3 |
| 12526 | field public static final int YEAR = 1; // 0x1 |
| 12527 | field public static final int ZONE_OFFSET = 15; // 0xf |
| 12528 | field protected boolean areFieldsSet; |
| 12529 | field @NonNull protected int[] fields; |
| 12530 | field @NonNull protected boolean[] isSet; |
| 12531 | field protected boolean isTimeSet; |
| 12532 | field protected long time; |
| 12533 | } |
| 12534 | |
| 12535 | public static class Calendar.Builder { |
| 12536 | ctor public Calendar.Builder(); |
| 12537 | method @NonNull public java.util.Calendar build(); |
| 12538 | method @NonNull public java.util.Calendar.Builder set(int, int); |
| 12539 | method @NonNull public java.util.Calendar.Builder setCalendarType(@NonNull String); |
| 12540 | method @NonNull public java.util.Calendar.Builder setDate(int, int, int); |
| 12541 | method @NonNull public java.util.Calendar.Builder setFields(@NonNull int...); |
| 12542 | method @NonNull public java.util.Calendar.Builder setInstant(long); |
| 12543 | method @NonNull public java.util.Calendar.Builder setInstant(@NonNull java.util.Date); |
| 12544 | method @NonNull public java.util.Calendar.Builder setLenient(boolean); |
| 12545 | method @NonNull public java.util.Calendar.Builder setLocale(@NonNull java.util.Locale); |
| 12546 | method @NonNull public java.util.Calendar.Builder setTimeOfDay(int, int, int); |
| 12547 | method @NonNull public java.util.Calendar.Builder setTimeOfDay(int, int, int, int); |
| 12548 | method @NonNull public java.util.Calendar.Builder setTimeZone(@NonNull java.util.TimeZone); |
| 12549 | method @NonNull public java.util.Calendar.Builder setWeekDate(int, int, int); |
| 12550 | method @NonNull public java.util.Calendar.Builder setWeekDefinition(int, int); |
| 12551 | } |
| 12552 | |
| 12553 | public interface Collection<E> extends java.lang.Iterable<E> { |
| 12554 | method public boolean add(E); |
| 12555 | method public boolean addAll(@NonNull java.util.Collection<? extends E>); |
| 12556 | method public void clear(); |
| 12557 | method public boolean contains(@Nullable Object); |
| 12558 | method public boolean containsAll(@NonNull java.util.Collection<?>); |
| 12559 | method public boolean equals(@Nullable Object); |
| 12560 | method public int hashCode(); |
| 12561 | method public boolean isEmpty(); |
| 12562 | method @NonNull public java.util.Iterator<E> iterator(); |
| 12563 | method @NonNull public default java.util.stream.Stream<E> parallelStream(); |
| 12564 | method public boolean remove(@Nullable Object); |
| 12565 | method public boolean removeAll(@NonNull java.util.Collection<?>); |
| 12566 | method public default boolean removeIf(@NonNull java.util.function.Predicate<? super E>); |
| 12567 | method public boolean retainAll(@NonNull java.util.Collection<?>); |
| 12568 | method public int size(); |
| 12569 | method @NonNull public default java.util.Spliterator<E> spliterator(); |
| 12570 | method @NonNull public default java.util.stream.Stream<E> stream(); |
| 12571 | method @NonNull public Object[] toArray(); |
| 12572 | method @NonNull public <T> T[] toArray(@NonNull T[]); |
| 12573 | } |
| 12574 | |
| 12575 | public class Collections { |
| 12576 | method @java.lang.SafeVarargs public static <T> boolean addAll(@NonNull java.util.Collection<? super T>, @NonNull T...); |
| 12577 | method @NonNull public static <T> java.util.Queue<T> asLifoQueue(@NonNull java.util.Deque<T>); |
| 12578 | method public static <T> int binarySearch(@NonNull java.util.List<? extends java.lang.Comparable<? super T>>, @NonNull T); |
| 12579 | method public static <T> int binarySearch(@NonNull java.util.List<? extends T>, T, @Nullable java.util.Comparator<? super T>); |
| 12580 | method @NonNull public static <E> java.util.Collection<E> checkedCollection(@NonNull java.util.Collection<E>, @NonNull Class<E>); |
| 12581 | method @NonNull public static <E> java.util.List<E> checkedList(@NonNull java.util.List<E>, @NonNull Class<E>); |
| 12582 | method @NonNull public static <K, V> java.util.Map<K,V> checkedMap(@NonNull java.util.Map<K,V>, @NonNull Class<K>, @NonNull Class<V>); |
| 12583 | method @NonNull public static <K, V> java.util.NavigableMap<K,V> checkedNavigableMap(@NonNull java.util.NavigableMap<K,V>, @NonNull Class<K>, @NonNull Class<V>); |
| 12584 | method @NonNull public static <E> java.util.NavigableSet<E> checkedNavigableSet(@NonNull java.util.NavigableSet<E>, @NonNull Class<E>); |
| 12585 | method @NonNull public static <E> java.util.Queue<E> checkedQueue(@NonNull java.util.Queue<E>, @NonNull Class<E>); |
| 12586 | method @NonNull public static <E> java.util.Set<E> checkedSet(@NonNull java.util.Set<E>, @NonNull Class<E>); |
| 12587 | method @NonNull public static <K, V> java.util.SortedMap<K,V> checkedSortedMap(@NonNull java.util.SortedMap<K,V>, @NonNull Class<K>, @NonNull Class<V>); |
| 12588 | method @NonNull public static <E> java.util.SortedSet<E> checkedSortedSet(@NonNull java.util.SortedSet<E>, @NonNull Class<E>); |
| 12589 | method public static <T> void copy(@NonNull java.util.List<? super T>, @NonNull java.util.List<? extends T>); |
| 12590 | method public static boolean disjoint(@NonNull java.util.Collection<?>, @NonNull java.util.Collection<?>); |
| 12591 | method @NonNull public static <T> java.util.Enumeration<T> emptyEnumeration(); |
| 12592 | method @NonNull public static <T> java.util.Iterator<T> emptyIterator(); |
| 12593 | method @NonNull public static final <T> java.util.List<T> emptyList(); |
| 12594 | method @NonNull public static <T> java.util.ListIterator<T> emptyListIterator(); |
| 12595 | method @NonNull public static final <K, V> java.util.Map<K,V> emptyMap(); |
| 12596 | method @NonNull public static final <K, V> java.util.NavigableMap<K,V> emptyNavigableMap(); |
| 12597 | method @NonNull public static <E> java.util.NavigableSet<E> emptyNavigableSet(); |
| 12598 | method @NonNull public static final <T> java.util.Set<T> emptySet(); |
| 12599 | method @NonNull public static final <K, V> java.util.SortedMap<K,V> emptySortedMap(); |
| 12600 | method @NonNull public static <E> java.util.SortedSet<E> emptySortedSet(); |
| 12601 | method @NonNull public static <T> java.util.Enumeration<T> enumeration(@NonNull java.util.Collection<T>); |
| 12602 | method public static <T> void fill(@NonNull java.util.List<? super T>, T); |
| 12603 | method public static int frequency(@NonNull java.util.Collection<?>, @Nullable Object); |
| 12604 | method public static int indexOfSubList(@NonNull java.util.List<?>, @NonNull java.util.List<?>); |
| 12605 | method public static int lastIndexOfSubList(@NonNull java.util.List<?>, @NonNull java.util.List<?>); |
| 12606 | method @NonNull public static <T> java.util.ArrayList<T> list(@NonNull java.util.Enumeration<T>); |
| 12607 | method @NonNull public static <T extends java.lang.Object & java.lang.Comparable<? super T>> T max(@NonNull java.util.Collection<? extends T>); |
| 12608 | method public static <T> T max(@NonNull java.util.Collection<? extends T>, @Nullable java.util.Comparator<? super T>); |
| 12609 | method @NonNull public static <T extends java.lang.Object & java.lang.Comparable<? super T>> T min(@NonNull java.util.Collection<? extends T>); |
| 12610 | method public static <T> T min(@NonNull java.util.Collection<? extends T>, @Nullable java.util.Comparator<? super T>); |
| 12611 | method @NonNull public static <T> java.util.List<T> nCopies(int, T); |
| 12612 | method @NonNull public static <E> java.util.Set<E> newSetFromMap(@NonNull java.util.Map<E,java.lang.Boolean>); |
| 12613 | method public static <T> boolean replaceAll(@NonNull java.util.List<T>, T, T); |
| 12614 | method public static void reverse(@NonNull java.util.List<?>); |
| 12615 | method @NonNull public static <T> java.util.Comparator<T> reverseOrder(); |
| 12616 | method @NonNull public static <T> java.util.Comparator<T> reverseOrder(@Nullable java.util.Comparator<T>); |
| 12617 | method public static void rotate(@NonNull java.util.List<?>, int); |
| 12618 | method public static void shuffle(@NonNull java.util.List<?>); |
| 12619 | method public static void shuffle(@NonNull java.util.List<?>, @NonNull java.util.Random); |
| 12620 | method @NonNull public static <T> java.util.Set<T> singleton(T); |
| 12621 | method @NonNull public static <T> java.util.List<T> singletonList(T); |
| 12622 | method @NonNull public static <K, V> java.util.Map<K,V> singletonMap(K, V); |
| 12623 | method public static <T extends java.lang.Comparable<? super T>> void sort(@NonNull java.util.List<T>); |
| 12624 | method public static <T> void sort(@NonNull java.util.List<T>, @Nullable java.util.Comparator<? super T>); |
| 12625 | method public static void swap(@NonNull java.util.List<?>, int, int); |
| 12626 | method @NonNull public static <T> java.util.Collection<T> synchronizedCollection(@NonNull java.util.Collection<T>); |
| 12627 | method @NonNull public static <T> java.util.List<T> synchronizedList(@NonNull java.util.List<T>); |
| 12628 | method @NonNull public static <K, V> java.util.Map<K,V> synchronizedMap(@NonNull java.util.Map<K,V>); |
| 12629 | method @NonNull public static <K, V> java.util.NavigableMap<K,V> synchronizedNavigableMap(@NonNull java.util.NavigableMap<K,V>); |
| 12630 | method @NonNull public static <T> java.util.NavigableSet<T> synchronizedNavigableSet(@NonNull java.util.NavigableSet<T>); |
| 12631 | method @NonNull public static <T> java.util.Set<T> synchronizedSet(@NonNull java.util.Set<T>); |
| 12632 | method @NonNull public static <K, V> java.util.SortedMap<K,V> synchronizedSortedMap(@NonNull java.util.SortedMap<K,V>); |
| 12633 | method @NonNull public static <T> java.util.SortedSet<T> synchronizedSortedSet(@NonNull java.util.SortedSet<T>); |
| 12634 | method @NonNull public static <T> java.util.Collection<T> unmodifiableCollection(@NonNull java.util.Collection<? extends T>); |
| 12635 | method @NonNull public static <T> java.util.List<T> unmodifiableList(@NonNull java.util.List<? extends T>); |
| 12636 | method @NonNull public static <K, V> java.util.Map<K,V> unmodifiableMap(@NonNull java.util.Map<? extends K,? extends V>); |
| 12637 | method @NonNull public static <K, V> java.util.NavigableMap<K,V> unmodifiableNavigableMap(@NonNull java.util.NavigableMap<K,? extends V>); |
| 12638 | method @NonNull public static <T> java.util.NavigableSet<T> unmodifiableNavigableSet(@NonNull java.util.NavigableSet<T>); |
| 12639 | method @NonNull public static <T> java.util.Set<T> unmodifiableSet(@NonNull java.util.Set<? extends T>); |
| 12640 | method @NonNull public static <K, V> java.util.SortedMap<K,V> unmodifiableSortedMap(@NonNull java.util.SortedMap<K,? extends V>); |
| 12641 | method @NonNull public static <T> java.util.SortedSet<T> unmodifiableSortedSet(@NonNull java.util.SortedSet<T>); |
| 12642 | field @NonNull public static final java.util.List EMPTY_LIST; |
| 12643 | field @NonNull public static final java.util.Map EMPTY_MAP; |
| 12644 | field @NonNull public static final java.util.Set EMPTY_SET; |
| 12645 | } |
| 12646 | |
| 12647 | @java.lang.FunctionalInterface public interface Comparator<T> { |
| 12648 | method public int compare(T, T); |
| 12649 | method public static <T, U> java.util.Comparator<T> comparing(java.util.function.Function<? super T,? extends U>, java.util.Comparator<? super U>); |
| 12650 | method public static <T, U extends java.lang.Comparable<? super U>> java.util.Comparator<T> comparing(java.util.function.Function<? super T,? extends U>); |
| 12651 | method public static <T> java.util.Comparator<T> comparingDouble(java.util.function.ToDoubleFunction<? super T>); |
| 12652 | method public static <T> java.util.Comparator<T> comparingInt(java.util.function.ToIntFunction<? super T>); |
| 12653 | method public static <T> java.util.Comparator<T> comparingLong(java.util.function.ToLongFunction<? super T>); |
| 12654 | method public boolean equals(Object); |
| 12655 | method public static <T extends java.lang.Comparable<? super T>> java.util.Comparator<T> naturalOrder(); |
| 12656 | method public static <T> java.util.Comparator<T> nullsFirst(java.util.Comparator<? super T>); |
| 12657 | method public static <T> java.util.Comparator<T> nullsLast(java.util.Comparator<? super T>); |
| 12658 | method public static <T extends java.lang.Comparable<? super T>> java.util.Comparator<T> reverseOrder(); |
| 12659 | method public default java.util.Comparator<T> reversed(); |
| 12660 | method public default java.util.Comparator<T> thenComparing(java.util.Comparator<? super T>); |
| 12661 | method public default <U> java.util.Comparator<T> thenComparing(java.util.function.Function<? super T,? extends U>, java.util.Comparator<? super U>); |
| 12662 | method public default <U extends java.lang.Comparable<? super U>> java.util.Comparator<T> thenComparing(java.util.function.Function<? super T,? extends U>); |
| 12663 | method public default java.util.Comparator<T> thenComparingDouble(java.util.function.ToDoubleFunction<? super T>); |
| 12664 | method public default java.util.Comparator<T> thenComparingInt(java.util.function.ToIntFunction<? super T>); |
| 12665 | method public default java.util.Comparator<T> thenComparingLong(java.util.function.ToLongFunction<? super T>); |
| 12666 | } |
| 12667 | |
| 12668 | public class ConcurrentModificationException extends java.lang.RuntimeException { |
| 12669 | ctor public ConcurrentModificationException(); |
| 12670 | ctor public ConcurrentModificationException(String); |
| 12671 | ctor public ConcurrentModificationException(Throwable); |
| 12672 | ctor public ConcurrentModificationException(String, Throwable); |
| 12673 | } |
| 12674 | |
| 12675 | public final class Currency implements java.io.Serializable { |
| 12676 | method public static java.util.Set<java.util.Currency> getAvailableCurrencies(); |
| 12677 | method public String getCurrencyCode(); |
| 12678 | method public int getDefaultFractionDigits(); |
| 12679 | method public String getDisplayName(); |
| 12680 | method public String getDisplayName(java.util.Locale); |
| 12681 | method public static java.util.Currency getInstance(String); |
| 12682 | method public static java.util.Currency getInstance(java.util.Locale); |
| 12683 | method public int getNumericCode(); |
| 12684 | method public String getSymbol(); |
| 12685 | method public String getSymbol(java.util.Locale); |
| 12686 | } |
| 12687 | |
| 12688 | public class Date implements java.lang.Cloneable java.lang.Comparable<java.util.Date> java.io.Serializable { |
| 12689 | ctor public Date(); |
| 12690 | ctor public Date(long); |
| 12691 | ctor @Deprecated public Date(int, int, int); |
| 12692 | ctor @Deprecated public Date(int, int, int, int, int); |
| 12693 | ctor @Deprecated public Date(int, int, int, int, int, int); |
| 12694 | ctor @Deprecated public Date(String); |
| 12695 | method @Deprecated public static long UTC(int, int, int, int, int, int); |
| 12696 | method public boolean after(java.util.Date); |
| 12697 | method public boolean before(java.util.Date); |
| 12698 | method public Object clone(); |
| 12699 | method public int compareTo(java.util.Date); |
| 12700 | method public static java.util.Date from(java.time.Instant); |
| 12701 | method @Deprecated public int getDate(); |
| 12702 | method @Deprecated public int getDay(); |
| 12703 | method @Deprecated public int getHours(); |
| 12704 | method @Deprecated public int getMinutes(); |
| 12705 | method @Deprecated public int getMonth(); |
| 12706 | method @Deprecated public int getSeconds(); |
| 12707 | method public long getTime(); |
| 12708 | method @Deprecated public int getTimezoneOffset(); |
| 12709 | method @Deprecated public int getYear(); |
| 12710 | method @Deprecated public static long parse(String); |
| 12711 | method @Deprecated public void setDate(int); |
| 12712 | method @Deprecated public void setHours(int); |
| 12713 | method @Deprecated public void setMinutes(int); |
| 12714 | method @Deprecated public void setMonth(int); |
| 12715 | method @Deprecated public void setSeconds(int); |
| 12716 | method public void setTime(long); |
| 12717 | method @Deprecated public void setYear(int); |
| 12718 | method @Deprecated public String toGMTString(); |
| 12719 | method public java.time.Instant toInstant(); |
| 12720 | method @Deprecated public String toLocaleString(); |
| 12721 | } |
| 12722 | |
| 12723 | public interface Deque<E> extends java.util.Queue<E> { |
| 12724 | method public void addFirst(E); |
| 12725 | method public void addLast(E); |
| 12726 | method @NonNull public java.util.Iterator<E> descendingIterator(); |
| 12727 | method public E getFirst(); |
| 12728 | method public E getLast(); |
| 12729 | method public boolean offerFirst(E); |
| 12730 | method public boolean offerLast(E); |
| 12731 | method @Nullable public E peekFirst(); |
| 12732 | method @Nullable public E peekLast(); |
| 12733 | method @Nullable public E pollFirst(); |
| 12734 | method @Nullable public E pollLast(); |
| 12735 | method public E pop(); |
| 12736 | method public void push(E); |
| 12737 | method public E removeFirst(); |
| 12738 | method public boolean removeFirstOccurrence(@Nullable Object); |
| 12739 | method public E removeLast(); |
| 12740 | method public boolean removeLastOccurrence(@Nullable Object); |
| 12741 | } |
| 12742 | |
| 12743 | public abstract class Dictionary<K, V> { |
| 12744 | ctor public Dictionary(); |
| 12745 | method public abstract java.util.Enumeration<V> elements(); |
| 12746 | method public abstract V get(Object); |
| 12747 | method public abstract boolean isEmpty(); |
| 12748 | method public abstract java.util.Enumeration<K> keys(); |
| 12749 | method public abstract V put(K, V); |
| 12750 | method public abstract V remove(Object); |
| 12751 | method public abstract int size(); |
| 12752 | } |
| 12753 | |
| 12754 | public class DoubleSummaryStatistics implements java.util.function.DoubleConsumer { |
| 12755 | ctor public DoubleSummaryStatistics(); |
| 12756 | method public void accept(double); |
| 12757 | method public void combine(java.util.DoubleSummaryStatistics); |
| 12758 | method public final double getAverage(); |
| 12759 | method public final long getCount(); |
| 12760 | method public final double getMax(); |
| 12761 | method public final double getMin(); |
| 12762 | method public final double getSum(); |
| 12763 | } |
| 12764 | |
| 12765 | public class DuplicateFormatFlagsException extends java.util.IllegalFormatException { |
| 12766 | ctor public DuplicateFormatFlagsException(String); |
| 12767 | method public String getFlags(); |
| 12768 | } |
| 12769 | |
| 12770 | public class EmptyStackException extends java.lang.RuntimeException { |
| 12771 | ctor public EmptyStackException(); |
| 12772 | } |
| 12773 | |
| 12774 | public class EnumMap<K extends java.lang.Enum<K>, V> extends java.util.AbstractMap<K,V> implements java.lang.Cloneable java.io.Serializable { |
| 12775 | ctor public EnumMap(Class<K>); |
| 12776 | ctor public EnumMap(java.util.EnumMap<K,? extends V>); |
| 12777 | ctor public EnumMap(java.util.Map<K,? extends V>); |
| 12778 | method public java.util.EnumMap<K,V> clone(); |
| 12779 | method public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 12780 | } |
| 12781 | |
| 12782 | public abstract class EnumSet<E extends java.lang.Enum<E>> extends java.util.AbstractSet<E> implements java.lang.Cloneable java.io.Serializable { |
| 12783 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> allOf(Class<E>); |
| 12784 | method public java.util.EnumSet<E> clone(); |
| 12785 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> complementOf(java.util.EnumSet<E>); |
| 12786 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> copyOf(java.util.EnumSet<E>); |
| 12787 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> copyOf(java.util.Collection<E>); |
| 12788 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> noneOf(Class<E>); |
| 12789 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> of(E); |
| 12790 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> of(E, E); |
| 12791 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> of(E, E, E); |
| 12792 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> of(E, E, E, E); |
| 12793 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> of(E, E, E, E, E); |
| 12794 | method @java.lang.SafeVarargs public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> of(E, E...); |
| 12795 | method public static <E extends java.lang.Enum<E>> java.util.EnumSet<E> range(E, E); |
| 12796 | } |
| 12797 | |
| 12798 | public interface Enumeration<E> { |
| 12799 | method public boolean hasMoreElements(); |
| 12800 | method public E nextElement(); |
| 12801 | } |
| 12802 | |
| 12803 | public interface EventListener { |
| 12804 | } |
| 12805 | |
| 12806 | public abstract class EventListenerProxy<T extends java.util.EventListener> implements java.util.EventListener { |
| 12807 | ctor public EventListenerProxy(T); |
| 12808 | method public T getListener(); |
| 12809 | } |
| 12810 | |
| 12811 | public class EventObject implements java.io.Serializable { |
| 12812 | ctor public EventObject(Object); |
| 12813 | method public Object getSource(); |
| 12814 | field protected transient Object source; |
| 12815 | } |
| 12816 | |
| 12817 | public class FormatFlagsConversionMismatchException extends java.util.IllegalFormatException { |
| 12818 | ctor public FormatFlagsConversionMismatchException(String, char); |
| 12819 | method public char getConversion(); |
| 12820 | method public String getFlags(); |
| 12821 | } |
| 12822 | |
| 12823 | public interface Formattable { |
| 12824 | method public void formatTo(java.util.Formatter, int, int, int); |
| 12825 | } |
| 12826 | |
| 12827 | public class FormattableFlags { |
| 12828 | field public static final int ALTERNATE = 4; // 0x4 |
| 12829 | field public static final int LEFT_JUSTIFY = 1; // 0x1 |
| 12830 | field public static final int UPPERCASE = 2; // 0x2 |
| 12831 | } |
| 12832 | |
| 12833 | public final class Formatter implements java.io.Closeable java.io.Flushable { |
| 12834 | ctor public Formatter(); |
| 12835 | ctor public Formatter(Appendable); |
| 12836 | ctor public Formatter(java.util.Locale); |
| 12837 | ctor public Formatter(Appendable, java.util.Locale); |
| 12838 | ctor public Formatter(String) throws java.io.FileNotFoundException; |
| 12839 | ctor public Formatter(String, String) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 12840 | ctor public Formatter(String, String, java.util.Locale) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 12841 | ctor public Formatter(java.io.File) throws java.io.FileNotFoundException; |
| 12842 | ctor public Formatter(java.io.File, String) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 12843 | ctor public Formatter(java.io.File, String, java.util.Locale) throws java.io.FileNotFoundException, java.io.UnsupportedEncodingException; |
| 12844 | ctor public Formatter(java.io.PrintStream); |
| 12845 | ctor public Formatter(java.io.OutputStream); |
| 12846 | ctor public Formatter(java.io.OutputStream, String) throws java.io.UnsupportedEncodingException; |
| 12847 | ctor public Formatter(java.io.OutputStream, String, java.util.Locale) throws java.io.UnsupportedEncodingException; |
| 12848 | method public void close(); |
| 12849 | method public void flush(); |
| 12850 | method public java.util.Formatter format(String, java.lang.Object...); |
| 12851 | method public java.util.Formatter format(java.util.Locale, String, java.lang.Object...); |
| 12852 | method public java.io.IOException ioException(); |
| 12853 | method public java.util.Locale locale(); |
| 12854 | method public Appendable out(); |
| 12855 | } |
| 12856 | |
| 12857 | public enum Formatter.BigDecimalLayoutForm { |
| 12858 | enum_constant public static final java.util.Formatter.BigDecimalLayoutForm DECIMAL_FLOAT; |
| 12859 | enum_constant public static final java.util.Formatter.BigDecimalLayoutForm SCIENTIFIC; |
| 12860 | } |
| 12861 | |
| 12862 | public class FormatterClosedException extends java.lang.IllegalStateException { |
| 12863 | ctor public FormatterClosedException(); |
| 12864 | } |
| 12865 | |
| 12866 | public class GregorianCalendar extends java.util.Calendar { |
| 12867 | ctor public GregorianCalendar(); |
| 12868 | ctor public GregorianCalendar(java.util.TimeZone); |
| 12869 | ctor public GregorianCalendar(java.util.Locale); |
| 12870 | ctor public GregorianCalendar(java.util.TimeZone, java.util.Locale); |
| 12871 | ctor public GregorianCalendar(int, int, int); |
| 12872 | ctor public GregorianCalendar(int, int, int, int, int); |
| 12873 | ctor public GregorianCalendar(int, int, int, int, int, int); |
| 12874 | method public void add(int, int); |
| 12875 | method protected void computeFields(); |
| 12876 | method protected void computeTime(); |
| 12877 | method public static java.util.GregorianCalendar from(java.time.ZonedDateTime); |
| 12878 | method public int getGreatestMinimum(int); |
| 12879 | method public final java.util.Date getGregorianChange(); |
| 12880 | method public int getLeastMaximum(int); |
| 12881 | method public int getMaximum(int); |
| 12882 | method public int getMinimum(int); |
| 12883 | method public boolean isLeapYear(int); |
| 12884 | method public final boolean isWeekDateSupported(); |
| 12885 | method public void roll(int, boolean); |
| 12886 | method public void setGregorianChange(java.util.Date); |
| 12887 | method public java.time.ZonedDateTime toZonedDateTime(); |
| 12888 | field public static final int AD = 1; // 0x1 |
| 12889 | field public static final int BC = 0; // 0x0 |
| 12890 | } |
| 12891 | |
| 12892 | public class HashMap<K, V> extends java.util.AbstractMap<K,V> implements java.lang.Cloneable java.util.Map<K,V> java.io.Serializable { |
| 12893 | ctor public HashMap(int, float); |
| 12894 | ctor public HashMap(int); |
| 12895 | ctor public HashMap(); |
| 12896 | ctor public HashMap(@NonNull java.util.Map<? extends K,? extends V>); |
| 12897 | method @NonNull public Object clone(); |
| 12898 | method @NonNull public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 12899 | } |
| 12900 | |
| 12901 | public class HashSet<E> extends java.util.AbstractSet<E> implements java.lang.Cloneable java.io.Serializable java.util.Set<E> { |
| 12902 | ctor public HashSet(); |
| 12903 | ctor public HashSet(@NonNull java.util.Collection<? extends E>); |
| 12904 | ctor public HashSet(int, float); |
| 12905 | ctor public HashSet(int); |
| 12906 | method @NonNull public Object clone(); |
| 12907 | method @NonNull public java.util.Iterator<E> iterator(); |
| 12908 | method public int size(); |
| 12909 | } |
| 12910 | |
| 12911 | public class Hashtable<K, V> extends java.util.Dictionary<K,V> implements java.lang.Cloneable java.util.Map<K,V> java.io.Serializable { |
| 12912 | ctor public Hashtable(int, float); |
| 12913 | ctor public Hashtable(int); |
| 12914 | ctor public Hashtable(); |
| 12915 | ctor public Hashtable(java.util.Map<? extends K,? extends V>); |
| 12916 | method public void clear(); |
| 12917 | method public Object clone(); |
| 12918 | method public boolean contains(Object); |
| 12919 | method public boolean containsKey(Object); |
| 12920 | method public boolean containsValue(Object); |
| 12921 | method public java.util.Enumeration<V> elements(); |
| 12922 | method public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 12923 | method public V get(Object); |
| 12924 | method public boolean isEmpty(); |
| 12925 | method public java.util.Set<K> keySet(); |
| 12926 | method public java.util.Enumeration<K> keys(); |
| 12927 | method public V put(K, V); |
| 12928 | method public void putAll(java.util.Map<? extends K,? extends V>); |
| 12929 | method protected void rehash(); |
| 12930 | method public V remove(Object); |
| 12931 | method public int size(); |
| 12932 | method public java.util.Collection<V> values(); |
| 12933 | } |
| 12934 | |
| 12935 | public class IdentityHashMap<K, V> extends java.util.AbstractMap<K,V> implements java.lang.Cloneable java.util.Map<K,V> java.io.Serializable { |
| 12936 | ctor public IdentityHashMap(); |
| 12937 | ctor public IdentityHashMap(int); |
| 12938 | ctor public IdentityHashMap(java.util.Map<? extends K,? extends V>); |
| 12939 | method public Object clone(); |
| 12940 | method public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 12941 | } |
| 12942 | |
| 12943 | public class IllegalFormatCodePointException extends java.util.IllegalFormatException { |
| 12944 | ctor public IllegalFormatCodePointException(int); |
| 12945 | method public int getCodePoint(); |
| 12946 | } |
| 12947 | |
| 12948 | public class IllegalFormatConversionException extends java.util.IllegalFormatException { |
| 12949 | ctor public IllegalFormatConversionException(char, Class<?>); |
| 12950 | method public Class<?> getArgumentClass(); |
| 12951 | method public char getConversion(); |
| 12952 | } |
| 12953 | |
| 12954 | public class IllegalFormatException extends java.lang.IllegalArgumentException { |
| 12955 | } |
| 12956 | |
| 12957 | public class IllegalFormatFlagsException extends java.util.IllegalFormatException { |
| 12958 | ctor public IllegalFormatFlagsException(String); |
| 12959 | method public String getFlags(); |
| 12960 | } |
| 12961 | |
| 12962 | public class IllegalFormatPrecisionException extends java.util.IllegalFormatException { |
| 12963 | ctor public IllegalFormatPrecisionException(int); |
| 12964 | method public int getPrecision(); |
| 12965 | } |
| 12966 | |
| 12967 | public class IllegalFormatWidthException extends java.util.IllegalFormatException { |
| 12968 | ctor public IllegalFormatWidthException(int); |
| 12969 | method public int getWidth(); |
| 12970 | } |
| 12971 | |
| 12972 | public class IllformedLocaleException extends java.lang.RuntimeException { |
| 12973 | ctor public IllformedLocaleException(); |
| 12974 | ctor public IllformedLocaleException(String); |
| 12975 | ctor public IllformedLocaleException(String, int); |
| 12976 | method public int getErrorIndex(); |
| 12977 | } |
| 12978 | |
| 12979 | public class InputMismatchException extends java.util.NoSuchElementException { |
| 12980 | ctor public InputMismatchException(); |
| 12981 | ctor public InputMismatchException(String); |
| 12982 | } |
| 12983 | |
| 12984 | public class IntSummaryStatistics implements java.util.function.IntConsumer { |
| 12985 | ctor public IntSummaryStatistics(); |
| 12986 | method public void accept(int); |
| 12987 | method public void combine(java.util.IntSummaryStatistics); |
| 12988 | method public final double getAverage(); |
| 12989 | method public final long getCount(); |
| 12990 | method public final int getMax(); |
| 12991 | method public final int getMin(); |
| 12992 | method public final long getSum(); |
| 12993 | } |
| 12994 | |
| 12995 | public class InvalidPropertiesFormatException extends java.io.IOException { |
| 12996 | ctor public InvalidPropertiesFormatException(Throwable); |
| 12997 | ctor public InvalidPropertiesFormatException(String); |
| 12998 | } |
| 12999 | |
| 13000 | public interface Iterator<E> { |
| 13001 | method public default void forEachRemaining(@NonNull java.util.function.Consumer<? super E>); |
| 13002 | method public boolean hasNext(); |
| 13003 | method public E next(); |
| 13004 | method public default void remove(); |
| 13005 | } |
| 13006 | |
| 13007 | public class LinkedHashMap<K, V> extends java.util.HashMap<K,V> implements java.util.Map<K,V> { |
| 13008 | ctor public LinkedHashMap(int, float); |
| 13009 | ctor public LinkedHashMap(int); |
| 13010 | ctor public LinkedHashMap(); |
| 13011 | ctor public LinkedHashMap(java.util.Map<? extends K,? extends V>); |
| 13012 | ctor public LinkedHashMap(int, float, boolean); |
| 13013 | method protected boolean removeEldestEntry(java.util.Map.Entry<K,V>); |
| 13014 | } |
| 13015 | |
| 13016 | public class LinkedHashSet<E> extends java.util.HashSet<E> implements java.lang.Cloneable java.io.Serializable java.util.Set<E> { |
| 13017 | ctor public LinkedHashSet(int, float); |
| 13018 | ctor public LinkedHashSet(int); |
| 13019 | ctor public LinkedHashSet(); |
| 13020 | ctor public LinkedHashSet(java.util.Collection<? extends E>); |
| 13021 | } |
| 13022 | |
| 13023 | public class LinkedList<E> extends java.util.AbstractSequentialList<E> implements java.lang.Cloneable java.util.Deque<E> java.util.List<E> java.io.Serializable { |
| 13024 | ctor public LinkedList(); |
| 13025 | ctor public LinkedList(@NonNull java.util.Collection<? extends E>); |
| 13026 | method public void addFirst(E); |
| 13027 | method public void addLast(E); |
| 13028 | method @NonNull public Object clone(); |
| 13029 | method @NonNull public java.util.Iterator<E> descendingIterator(); |
| 13030 | method public E element(); |
| 13031 | method public E getFirst(); |
| 13032 | method public E getLast(); |
| 13033 | method public boolean offer(E); |
| 13034 | method public boolean offerFirst(E); |
| 13035 | method public boolean offerLast(E); |
| 13036 | method @Nullable public E peek(); |
| 13037 | method @Nullable public E peekFirst(); |
| 13038 | method @Nullable public E peekLast(); |
| 13039 | method @Nullable public E poll(); |
| 13040 | method @Nullable public E pollFirst(); |
| 13041 | method @Nullable public E pollLast(); |
| 13042 | method public E pop(); |
| 13043 | method public void push(E); |
| 13044 | method public E remove(); |
| 13045 | method public E removeFirst(); |
| 13046 | method public boolean removeFirstOccurrence(@Nullable Object); |
| 13047 | method public E removeLast(); |
| 13048 | method public boolean removeLastOccurrence(@Nullable Object); |
| 13049 | method public int size(); |
| 13050 | } |
| 13051 | |
| 13052 | public interface List<E> extends java.util.Collection<E> { |
| 13053 | method public void add(int, E); |
| 13054 | method public boolean addAll(int, @NonNull java.util.Collection<? extends E>); |
| 13055 | method public E get(int); |
| 13056 | method public int indexOf(@Nullable Object); |
| 13057 | method public int lastIndexOf(@Nullable Object); |
| 13058 | method @NonNull public java.util.ListIterator<E> listIterator(); |
| 13059 | method @NonNull public java.util.ListIterator<E> listIterator(int); |
| 13060 | method @NonNull public static <E> java.util.List<E> of(); |
| 13061 | method @NonNull public static <E> java.util.List<E> of(@NonNull E); |
| 13062 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E); |
| 13063 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E); |
| 13064 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13065 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13066 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13067 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13068 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13069 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13070 | method @NonNull public static <E> java.util.List<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13071 | method @NonNull @java.lang.SafeVarargs public static <E> java.util.List<E> of(@NonNull E...); |
| 13072 | method public E remove(int); |
| 13073 | method public default void replaceAll(@NonNull java.util.function.UnaryOperator<E>); |
| 13074 | method public E set(int, E); |
| 13075 | method public default void sort(@Nullable java.util.Comparator<? super E>); |
| 13076 | method @NonNull public java.util.List<E> subList(int, int); |
| 13077 | } |
| 13078 | |
| 13079 | public interface ListIterator<E> extends java.util.Iterator<E> { |
| 13080 | method public void add(E); |
| 13081 | method public boolean hasPrevious(); |
| 13082 | method public int nextIndex(); |
| 13083 | method public E previous(); |
| 13084 | method public int previousIndex(); |
| 13085 | method public void remove(); |
| 13086 | method public void set(E); |
| 13087 | } |
| 13088 | |
| 13089 | public abstract class ListResourceBundle extends java.util.ResourceBundle { |
| 13090 | ctor public ListResourceBundle(); |
| 13091 | method protected abstract Object[][] getContents(); |
| 13092 | method public java.util.Enumeration<java.lang.String> getKeys(); |
| 13093 | method public final Object handleGetObject(String); |
| 13094 | } |
| 13095 | |
| 13096 | public final class Locale implements java.lang.Cloneable java.io.Serializable { |
| 13097 | ctor public Locale(@NonNull String, @NonNull String, @NonNull String); |
| 13098 | ctor public Locale(@NonNull String, @NonNull String); |
| 13099 | ctor public Locale(@NonNull String); |
| 13100 | method @NonNull public Object clone(); |
| 13101 | method @NonNull public static java.util.List<java.util.Locale> filter(@NonNull java.util.List<java.util.Locale.LanguageRange>, @NonNull java.util.Collection<java.util.Locale>, @NonNull java.util.Locale.FilteringMode); |
| 13102 | method @NonNull public static java.util.List<java.util.Locale> filter(@NonNull java.util.List<java.util.Locale.LanguageRange>, @NonNull java.util.Collection<java.util.Locale>); |
| 13103 | method @NonNull public static java.util.List<java.lang.String> filterTags(@NonNull java.util.List<java.util.Locale.LanguageRange>, @NonNull java.util.Collection<java.lang.String>, @NonNull java.util.Locale.FilteringMode); |
| 13104 | method @NonNull public static java.util.List<java.lang.String> filterTags(@NonNull java.util.List<java.util.Locale.LanguageRange>, @NonNull java.util.Collection<java.lang.String>); |
| 13105 | method @NonNull public static java.util.Locale forLanguageTag(@NonNull String); |
| 13106 | method @NonNull public static java.util.Locale[] getAvailableLocales(); |
| 13107 | method @NonNull public String getCountry(); |
| 13108 | method @NonNull public static java.util.Locale getDefault(); |
| 13109 | method @NonNull public static java.util.Locale getDefault(@NonNull java.util.Locale.Category); |
| 13110 | method @NonNull public String getDisplayCountry(); |
| 13111 | method @NonNull public String getDisplayCountry(@NonNull java.util.Locale); |
| 13112 | method @NonNull public String getDisplayLanguage(); |
| 13113 | method @NonNull public String getDisplayLanguage(@NonNull java.util.Locale); |
| 13114 | method @NonNull public String getDisplayName(); |
| 13115 | method @NonNull public String getDisplayName(@NonNull java.util.Locale); |
| 13116 | method @NonNull public String getDisplayScript(); |
| 13117 | method @NonNull public String getDisplayScript(@NonNull java.util.Locale); |
| 13118 | method @NonNull public String getDisplayVariant(); |
| 13119 | method @NonNull public String getDisplayVariant(@NonNull java.util.Locale); |
| 13120 | method @Nullable public String getExtension(char); |
| 13121 | method @NonNull public java.util.Set<java.lang.Character> getExtensionKeys(); |
| 13122 | method @NonNull public String getISO3Country() throws java.util.MissingResourceException; |
| 13123 | method @NonNull public String getISO3Language() throws java.util.MissingResourceException; |
| 13124 | method @NonNull public static String[] getISOCountries(); |
| 13125 | method @NonNull public static String[] getISOLanguages(); |
| 13126 | method @NonNull public String getLanguage(); |
| 13127 | method @NonNull public String getScript(); |
| 13128 | method @NonNull public java.util.Set<java.lang.String> getUnicodeLocaleAttributes(); |
| 13129 | method @NonNull public java.util.Set<java.lang.String> getUnicodeLocaleKeys(); |
| 13130 | method @Nullable public String getUnicodeLocaleType(@NonNull String); |
| 13131 | method @NonNull public String getVariant(); |
| 13132 | method public boolean hasExtensions(); |
| 13133 | method @Nullable public static java.util.Locale lookup(@NonNull java.util.List<java.util.Locale.LanguageRange>, @NonNull java.util.Collection<java.util.Locale>); |
| 13134 | method @Nullable public static String lookupTag(@NonNull java.util.List<java.util.Locale.LanguageRange>, @NonNull java.util.Collection<java.lang.String>); |
| 13135 | method public static void setDefault(@NonNull java.util.Locale); |
| 13136 | method public static void setDefault(@NonNull java.util.Locale.Category, @NonNull java.util.Locale); |
| 13137 | method @NonNull public java.util.Locale stripExtensions(); |
| 13138 | method @NonNull public String toLanguageTag(); |
| 13139 | field @NonNull public static final java.util.Locale CANADA; |
| 13140 | field @NonNull public static final java.util.Locale CANADA_FRENCH; |
| 13141 | field @NonNull public static final java.util.Locale CHINA; |
| 13142 | field @NonNull public static final java.util.Locale CHINESE; |
| 13143 | field @NonNull public static final java.util.Locale ENGLISH; |
| 13144 | field @NonNull public static final java.util.Locale FRANCE; |
| 13145 | field @NonNull public static final java.util.Locale FRENCH; |
| 13146 | field @NonNull public static final java.util.Locale GERMAN; |
| 13147 | field @NonNull public static final java.util.Locale GERMANY; |
| 13148 | field @NonNull public static final java.util.Locale ITALIAN; |
| 13149 | field @NonNull public static final java.util.Locale ITALY; |
| 13150 | field @NonNull public static final java.util.Locale JAPAN; |
| 13151 | field @NonNull public static final java.util.Locale JAPANESE; |
| 13152 | field @NonNull public static final java.util.Locale KOREA; |
| 13153 | field @NonNull public static final java.util.Locale KOREAN; |
| 13154 | field @NonNull public static final java.util.Locale PRC; |
| 13155 | field public static final char PRIVATE_USE_EXTENSION = 120; // 0x0078 'x' |
| 13156 | field @NonNull public static final java.util.Locale ROOT; |
| 13157 | field @NonNull public static final java.util.Locale SIMPLIFIED_CHINESE; |
| 13158 | field @NonNull public static final java.util.Locale TAIWAN; |
| 13159 | field @NonNull public static final java.util.Locale TRADITIONAL_CHINESE; |
| 13160 | field @NonNull public static final java.util.Locale UK; |
| 13161 | field public static final char UNICODE_LOCALE_EXTENSION = 117; // 0x0075 'u' |
| 13162 | field @NonNull public static final java.util.Locale US; |
| 13163 | } |
| 13164 | |
| 13165 | public static final class Locale.Builder { |
| 13166 | ctor public Locale.Builder(); |
| 13167 | method @NonNull public java.util.Locale.Builder addUnicodeLocaleAttribute(@NonNull String); |
| 13168 | method @NonNull public java.util.Locale build(); |
| 13169 | method @NonNull public java.util.Locale.Builder clear(); |
| 13170 | method @NonNull public java.util.Locale.Builder clearExtensions(); |
| 13171 | method @NonNull public java.util.Locale.Builder removeUnicodeLocaleAttribute(@NonNull String); |
| 13172 | method @NonNull public java.util.Locale.Builder setExtension(char, @Nullable String); |
| 13173 | method @NonNull public java.util.Locale.Builder setLanguage(@Nullable String); |
| 13174 | method @NonNull public java.util.Locale.Builder setLanguageTag(@NonNull String); |
| 13175 | method @NonNull public java.util.Locale.Builder setLocale(@NonNull java.util.Locale); |
| 13176 | method @NonNull public java.util.Locale.Builder setRegion(@Nullable String); |
| 13177 | method @NonNull public java.util.Locale.Builder setScript(@Nullable String); |
| 13178 | method @NonNull public java.util.Locale.Builder setUnicodeLocaleKeyword(@NonNull String, @Nullable String); |
| 13179 | method @NonNull public java.util.Locale.Builder setVariant(@Nullable String); |
| 13180 | } |
| 13181 | |
| 13182 | public enum Locale.Category { |
| 13183 | enum_constant public static final java.util.Locale.Category DISPLAY; |
| 13184 | enum_constant public static final java.util.Locale.Category FORMAT; |
| 13185 | } |
| 13186 | |
| 13187 | public enum Locale.FilteringMode { |
| 13188 | enum_constant public static final java.util.Locale.FilteringMode AUTOSELECT_FILTERING; |
| 13189 | enum_constant public static final java.util.Locale.FilteringMode EXTENDED_FILTERING; |
| 13190 | enum_constant public static final java.util.Locale.FilteringMode IGNORE_EXTENDED_RANGES; |
| 13191 | enum_constant public static final java.util.Locale.FilteringMode MAP_EXTENDED_RANGES; |
| 13192 | enum_constant public static final java.util.Locale.FilteringMode REJECT_EXTENDED_RANGES; |
| 13193 | } |
| 13194 | |
| 13195 | public static final class Locale.LanguageRange { |
| 13196 | ctor public Locale.LanguageRange(@NonNull String); |
| 13197 | ctor public Locale.LanguageRange(@NonNull String, double); |
| 13198 | method @NonNull public String getRange(); |
| 13199 | method public double getWeight(); |
| 13200 | method @NonNull public static java.util.List<java.util.Locale.LanguageRange> mapEquivalents(@NonNull java.util.List<java.util.Locale.LanguageRange>, @NonNull java.util.Map<java.lang.String,java.util.List<java.lang.String>>); |
| 13201 | method @NonNull public static java.util.List<java.util.Locale.LanguageRange> parse(@NonNull String); |
| 13202 | method @NonNull public static java.util.List<java.util.Locale.LanguageRange> parse(@NonNull String, @NonNull java.util.Map<java.lang.String,java.util.List<java.lang.String>>); |
| 13203 | field public static final double MAX_WEIGHT = 1.0; |
| 13204 | field public static final double MIN_WEIGHT = 0.0; |
| 13205 | } |
| 13206 | |
| 13207 | public class LongSummaryStatistics implements java.util.function.IntConsumer java.util.function.LongConsumer { |
| 13208 | ctor public LongSummaryStatistics(); |
| 13209 | method public void accept(int); |
| 13210 | method public void accept(long); |
| 13211 | method public void combine(java.util.LongSummaryStatistics); |
| 13212 | method public final double getAverage(); |
| 13213 | method public final long getCount(); |
| 13214 | method public final long getMax(); |
| 13215 | method public final long getMin(); |
| 13216 | method public final long getSum(); |
| 13217 | } |
| 13218 | |
| 13219 | public interface Map<K, V> { |
| 13220 | method public void clear(); |
| 13221 | method @Nullable public default V compute(K, @NonNull java.util.function.BiFunction<? super K,? super V,? extends V>); |
| 13222 | method @Nullable public default V computeIfAbsent(K, @NonNull java.util.function.Function<? super K,? extends V>); |
| 13223 | method @Nullable public default V computeIfPresent(K, @NonNull java.util.function.BiFunction<? super K,? super V,? extends V>); |
| 13224 | method public boolean containsKey(@Nullable Object); |
| 13225 | method public boolean containsValue(@Nullable Object); |
| 13226 | method @NonNull public static <K, V> java.util.Map.Entry<K,V> entry(@NonNull K, @NonNull V); |
| 13227 | method @NonNull public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 13228 | method public boolean equals(@Nullable Object); |
| 13229 | method public default void forEach(@NonNull java.util.function.BiConsumer<? super K,? super V>); |
| 13230 | method @Nullable public V get(@Nullable Object); |
| 13231 | method @Nullable public default V getOrDefault(@Nullable Object, @Nullable V); |
| 13232 | method public int hashCode(); |
| 13233 | method public boolean isEmpty(); |
| 13234 | method @NonNull public java.util.Set<K> keySet(); |
| 13235 | method @Nullable public default V merge(K, @NonNull V, @NonNull java.util.function.BiFunction<? super V,? super V,? extends V>); |
| 13236 | method @NonNull public static <K, V> java.util.Map<K,V> of(); |
| 13237 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V); |
| 13238 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13239 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13240 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13241 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13242 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13243 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13244 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13245 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13246 | method @NonNull public static <K, V> java.util.Map<K,V> of(@NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V, @NonNull K, @NonNull V); |
| 13247 | method @NonNull @java.lang.SafeVarargs public static <K, V> java.util.Map<K,V> ofEntries(@NonNull java.util.Map.Entry<? extends K,? extends V>...); |
| 13248 | method @Nullable public V put(K, V); |
| 13249 | method public void putAll(@NonNull java.util.Map<? extends K,? extends V>); |
| 13250 | method @Nullable public default V putIfAbsent(K, V); |
| 13251 | method @Nullable public V remove(@Nullable Object); |
| 13252 | method public default boolean remove(@Nullable Object, @Nullable Object); |
| 13253 | method public default boolean replace(K, @Nullable V, V); |
| 13254 | method @Nullable public default V replace(K, V); |
| 13255 | method public default void replaceAll(@NonNull java.util.function.BiFunction<? super K,? super V,? extends V>); |
| 13256 | method public int size(); |
| 13257 | method @NonNull public java.util.Collection<V> values(); |
| 13258 | } |
| 13259 | |
| 13260 | public static interface Map.Entry<K, V> { |
| 13261 | method @NonNull public static <K extends java.lang.Comparable<? super K>, V> java.util.Comparator<java.util.Map.Entry<K,V>> comparingByKey(); |
| 13262 | method @NonNull public static <K, V> java.util.Comparator<java.util.Map.Entry<K,V>> comparingByKey(@NonNull java.util.Comparator<? super K>); |
| 13263 | method @NonNull public static <K, V extends java.lang.Comparable<? super V>> java.util.Comparator<java.util.Map.Entry<K,V>> comparingByValue(); |
| 13264 | method @NonNull public static <K, V> java.util.Comparator<java.util.Map.Entry<K,V>> comparingByValue(@NonNull java.util.Comparator<? super V>); |
| 13265 | method public boolean equals(@Nullable Object); |
| 13266 | method public K getKey(); |
| 13267 | method public V getValue(); |
| 13268 | method public int hashCode(); |
| 13269 | method public V setValue(V); |
| 13270 | } |
| 13271 | |
| 13272 | public class MissingFormatArgumentException extends java.util.IllegalFormatException { |
| 13273 | ctor public MissingFormatArgumentException(String); |
| 13274 | method public String getFormatSpecifier(); |
| 13275 | } |
| 13276 | |
| 13277 | public class MissingFormatWidthException extends java.util.IllegalFormatException { |
| 13278 | ctor public MissingFormatWidthException(String); |
| 13279 | method public String getFormatSpecifier(); |
| 13280 | } |
| 13281 | |
| 13282 | public class MissingResourceException extends java.lang.RuntimeException { |
| 13283 | ctor public MissingResourceException(String, String, String); |
| 13284 | method public String getClassName(); |
| 13285 | method public String getKey(); |
| 13286 | } |
| 13287 | |
| 13288 | public interface NavigableMap<K, V> extends java.util.SortedMap<K,V> { |
| 13289 | method @Nullable public java.util.Map.Entry<K,V> ceilingEntry(K); |
| 13290 | method @Nullable public K ceilingKey(K); |
| 13291 | method @NonNull public java.util.NavigableSet<K> descendingKeySet(); |
| 13292 | method @NonNull public java.util.NavigableMap<K,V> descendingMap(); |
| 13293 | method @Nullable public java.util.Map.Entry<K,V> firstEntry(); |
| 13294 | method @Nullable public java.util.Map.Entry<K,V> floorEntry(K); |
| 13295 | method @Nullable public K floorKey(K); |
| 13296 | method @NonNull public java.util.NavigableMap<K,V> headMap(K, boolean); |
| 13297 | method @Nullable public java.util.Map.Entry<K,V> higherEntry(K); |
| 13298 | method @Nullable public K higherKey(K); |
| 13299 | method @Nullable public java.util.Map.Entry<K,V> lastEntry(); |
| 13300 | method @Nullable public java.util.Map.Entry<K,V> lowerEntry(K); |
| 13301 | method @Nullable public K lowerKey(K); |
| 13302 | method @NonNull public java.util.NavigableSet<K> navigableKeySet(); |
| 13303 | method @Nullable public java.util.Map.Entry<K,V> pollFirstEntry(); |
| 13304 | method @Nullable public java.util.Map.Entry<K,V> pollLastEntry(); |
| 13305 | method @NonNull public java.util.NavigableMap<K,V> subMap(K, boolean, K, boolean); |
| 13306 | method @NonNull public java.util.NavigableMap<K,V> tailMap(K, boolean); |
| 13307 | } |
| 13308 | |
| 13309 | public interface NavigableSet<E> extends java.util.SortedSet<E> { |
| 13310 | method public E ceiling(E); |
| 13311 | method public java.util.Iterator<E> descendingIterator(); |
| 13312 | method public java.util.NavigableSet<E> descendingSet(); |
| 13313 | method public E floor(E); |
| 13314 | method public java.util.NavigableSet<E> headSet(E, boolean); |
| 13315 | method public E higher(E); |
| 13316 | method public E lower(E); |
| 13317 | method public E pollFirst(); |
| 13318 | method public E pollLast(); |
| 13319 | method public java.util.NavigableSet<E> subSet(E, boolean, E, boolean); |
| 13320 | method public java.util.NavigableSet<E> tailSet(E, boolean); |
| 13321 | } |
| 13322 | |
| 13323 | public class NoSuchElementException extends java.lang.RuntimeException { |
| 13324 | ctor public NoSuchElementException(); |
| 13325 | ctor public NoSuchElementException(String); |
| 13326 | } |
| 13327 | |
| 13328 | public final class Objects { |
| 13329 | method public static int checkFromIndexSize(int, int, int); |
| 13330 | method public static int checkFromToIndex(int, int, int); |
| 13331 | method public static int checkIndex(int, int); |
| 13332 | method public static <T> int compare(T, T, @NonNull java.util.Comparator<? super T>); |
| 13333 | method public static boolean deepEquals(@Nullable Object, @Nullable Object); |
| 13334 | method public static boolean equals(@Nullable Object, @Nullable Object); |
| 13335 | method public static int hash(@Nullable java.lang.Object...); |
| 13336 | method public static int hashCode(@Nullable Object); |
| 13337 | method public static boolean isNull(@Nullable Object); |
| 13338 | method public static boolean nonNull(@Nullable Object); |
| 13339 | method @NonNull public static <T> T requireNonNull(@Nullable T); |
| 13340 | method @NonNull public static <T> T requireNonNull(@Nullable T, @NonNull String); |
| 13341 | method @NonNull public static <T> T requireNonNull(@Nullable T, @NonNull java.util.function.Supplier<java.lang.String>); |
| 13342 | method @NonNull public static <T> T requireNonNullElse(@Nullable T, @NonNull T); |
| 13343 | method @NonNull public static <T> T requireNonNullElseGet(@Nullable T, @NonNull java.util.function.Supplier<? extends T>); |
| 13344 | method @NonNull public static String toString(@Nullable Object); |
| 13345 | method @NonNull public static String toString(@Nullable Object, @NonNull String); |
| 13346 | } |
| 13347 | |
| 13348 | public class Observable { |
| 13349 | ctor public Observable(); |
| 13350 | method public void addObserver(java.util.Observer); |
| 13351 | method protected void clearChanged(); |
| 13352 | method public int countObservers(); |
| 13353 | method public void deleteObserver(java.util.Observer); |
| 13354 | method public void deleteObservers(); |
| 13355 | method public boolean hasChanged(); |
| 13356 | method public void notifyObservers(); |
| 13357 | method public void notifyObservers(Object); |
| 13358 | method protected void setChanged(); |
| 13359 | } |
| 13360 | |
| 13361 | public interface Observer { |
| 13362 | method public void update(java.util.Observable, Object); |
| 13363 | } |
| 13364 | |
| 13365 | public final class Optional<T> { |
| 13366 | method public static <T> java.util.Optional<T> empty(); |
| 13367 | method public java.util.Optional<T> filter(java.util.function.Predicate<? super T>); |
| 13368 | method public <U> java.util.Optional<U> flatMap(java.util.function.Function<? super T,java.util.Optional<U>>); |
| 13369 | method public T get(); |
| 13370 | method public void ifPresent(java.util.function.Consumer<? super T>); |
| 13371 | method public boolean isPresent(); |
| 13372 | method public <U> java.util.Optional<U> map(java.util.function.Function<? super T,? extends U>); |
| 13373 | method public static <T> java.util.Optional<T> of(T); |
| 13374 | method public static <T> java.util.Optional<T> ofNullable(T); |
| 13375 | method public T orElse(T); |
| 13376 | method public T orElseGet(java.util.function.Supplier<? extends T>); |
| 13377 | method public <X extends java.lang.Throwable> T orElseThrow(java.util.function.Supplier<? extends X>) throws X; |
| 13378 | } |
| 13379 | |
| 13380 | public final class OptionalDouble { |
| 13381 | method public static java.util.OptionalDouble empty(); |
| 13382 | method public double getAsDouble(); |
| 13383 | method public void ifPresent(java.util.function.DoubleConsumer); |
| 13384 | method public boolean isPresent(); |
| 13385 | method public static java.util.OptionalDouble of(double); |
| 13386 | method public double orElse(double); |
| 13387 | method public double orElseGet(java.util.function.DoubleSupplier); |
| 13388 | method public <X extends java.lang.Throwable> double orElseThrow(java.util.function.Supplier<X>) throws X; |
| 13389 | } |
| 13390 | |
| 13391 | public final class OptionalInt { |
| 13392 | method public static java.util.OptionalInt empty(); |
| 13393 | method public int getAsInt(); |
| 13394 | method public void ifPresent(java.util.function.IntConsumer); |
| 13395 | method public boolean isPresent(); |
| 13396 | method public static java.util.OptionalInt of(int); |
| 13397 | method public int orElse(int); |
| 13398 | method public int orElseGet(java.util.function.IntSupplier); |
| 13399 | method public <X extends java.lang.Throwable> int orElseThrow(java.util.function.Supplier<X>) throws X; |
| 13400 | } |
| 13401 | |
| 13402 | public final class OptionalLong { |
| 13403 | method public static java.util.OptionalLong empty(); |
| 13404 | method public long getAsLong(); |
| 13405 | method public void ifPresent(java.util.function.LongConsumer); |
| 13406 | method public boolean isPresent(); |
| 13407 | method public static java.util.OptionalLong of(long); |
| 13408 | method public long orElse(long); |
| 13409 | method public long orElseGet(java.util.function.LongSupplier); |
| 13410 | method public <X extends java.lang.Throwable> long orElseThrow(java.util.function.Supplier<X>) throws X; |
| 13411 | } |
| 13412 | |
| 13413 | public interface PrimitiveIterator<T, T_CONS> extends java.util.Iterator<T> { |
| 13414 | method public void forEachRemaining(T_CONS); |
| 13415 | } |
| 13416 | |
| 13417 | public static interface PrimitiveIterator.OfDouble extends java.util.PrimitiveIterator<java.lang.Double,java.util.function.DoubleConsumer> { |
| 13418 | method public default void forEachRemaining(java.util.function.DoubleConsumer); |
| 13419 | method public default void forEachRemaining(java.util.function.Consumer<? super java.lang.Double>); |
| 13420 | method public default Double next(); |
| 13421 | method public double nextDouble(); |
| 13422 | } |
| 13423 | |
| 13424 | public static interface PrimitiveIterator.OfInt extends java.util.PrimitiveIterator<java.lang.Integer,java.util.function.IntConsumer> { |
| 13425 | method public default void forEachRemaining(java.util.function.IntConsumer); |
| 13426 | method public default void forEachRemaining(java.util.function.Consumer<? super java.lang.Integer>); |
| 13427 | method public default Integer next(); |
| 13428 | method public int nextInt(); |
| 13429 | } |
| 13430 | |
| 13431 | public static interface PrimitiveIterator.OfLong extends java.util.PrimitiveIterator<java.lang.Long,java.util.function.LongConsumer> { |
| 13432 | method public default void forEachRemaining(java.util.function.LongConsumer); |
| 13433 | method public default void forEachRemaining(java.util.function.Consumer<? super java.lang.Long>); |
| 13434 | method public default Long next(); |
| 13435 | method public long nextLong(); |
| 13436 | } |
| 13437 | |
| 13438 | public class PriorityQueue<E> extends java.util.AbstractQueue<E> implements java.io.Serializable { |
| 13439 | ctor public PriorityQueue(); |
| 13440 | ctor public PriorityQueue(int); |
| 13441 | ctor public PriorityQueue(java.util.Comparator<? super E>); |
| 13442 | ctor public PriorityQueue(int, java.util.Comparator<? super E>); |
| 13443 | ctor public PriorityQueue(java.util.Collection<? extends E>); |
| 13444 | ctor public PriorityQueue(java.util.PriorityQueue<? extends E>); |
| 13445 | ctor public PriorityQueue(java.util.SortedSet<? extends E>); |
| 13446 | method public java.util.Comparator<? super E> comparator(); |
| 13447 | method public java.util.Iterator<E> iterator(); |
| 13448 | method public boolean offer(E); |
| 13449 | method public E peek(); |
| 13450 | method public E poll(); |
| 13451 | method public int size(); |
| 13452 | method public final java.util.Spliterator<E> spliterator(); |
| 13453 | } |
| 13454 | |
| 13455 | public class Properties extends java.util.Hashtable<java.lang.Object,java.lang.Object> { |
| 13456 | ctor public Properties(); |
| 13457 | ctor public Properties(java.util.Properties); |
| 13458 | method public String getProperty(String); |
| 13459 | method public String getProperty(String, String); |
| 13460 | method public void list(java.io.PrintStream); |
| 13461 | method public void list(java.io.PrintWriter); |
| 13462 | method public void load(java.io.Reader) throws java.io.IOException; |
| 13463 | method public void load(java.io.InputStream) throws java.io.IOException; |
| 13464 | method public void loadFromXML(java.io.InputStream) throws java.io.IOException, java.util.InvalidPropertiesFormatException; |
| 13465 | method public java.util.Enumeration<?> propertyNames(); |
| 13466 | method @Deprecated public void save(java.io.OutputStream, String); |
| 13467 | method public Object setProperty(String, String); |
| 13468 | method public void store(java.io.Writer, String) throws java.io.IOException; |
| 13469 | method public void store(java.io.OutputStream, String) throws java.io.IOException; |
| 13470 | method public void storeToXML(java.io.OutputStream, String) throws java.io.IOException; |
| 13471 | method public void storeToXML(java.io.OutputStream, String, String) throws java.io.IOException; |
| 13472 | method public java.util.Set<java.lang.String> stringPropertyNames(); |
| 13473 | field protected java.util.Properties defaults; |
| 13474 | } |
| 13475 | |
| 13476 | public final class PropertyPermission extends java.security.BasicPermission { |
| 13477 | ctor public PropertyPermission(String, String); |
| 13478 | } |
| 13479 | |
| 13480 | public class PropertyResourceBundle extends java.util.ResourceBundle { |
| 13481 | ctor public PropertyResourceBundle(java.io.InputStream) throws java.io.IOException; |
| 13482 | ctor public PropertyResourceBundle(java.io.Reader) throws java.io.IOException; |
| 13483 | method public java.util.Enumeration<java.lang.String> getKeys(); |
| 13484 | method public Object handleGetObject(String); |
| 13485 | } |
| 13486 | |
| 13487 | public interface Queue<E> extends java.util.Collection<E> { |
| 13488 | method public E element(); |
| 13489 | method public boolean offer(E); |
| 13490 | method @Nullable public E peek(); |
| 13491 | method @Nullable public E poll(); |
| 13492 | method public E remove(); |
| 13493 | } |
| 13494 | |
| 13495 | public class Random implements java.io.Serializable { |
| 13496 | ctor public Random(); |
| 13497 | ctor public Random(long); |
| 13498 | method public java.util.stream.DoubleStream doubles(long); |
| 13499 | method public java.util.stream.DoubleStream doubles(); |
| 13500 | method public java.util.stream.DoubleStream doubles(long, double, double); |
| 13501 | method public java.util.stream.DoubleStream doubles(double, double); |
| 13502 | method public java.util.stream.IntStream ints(long); |
| 13503 | method public java.util.stream.IntStream ints(); |
| 13504 | method public java.util.stream.IntStream ints(long, int, int); |
| 13505 | method public java.util.stream.IntStream ints(int, int); |
| 13506 | method public java.util.stream.LongStream longs(long); |
| 13507 | method public java.util.stream.LongStream longs(); |
| 13508 | method public java.util.stream.LongStream longs(long, long, long); |
| 13509 | method public java.util.stream.LongStream longs(long, long); |
| 13510 | method protected int next(int); |
| 13511 | method public boolean nextBoolean(); |
| 13512 | method public void nextBytes(byte[]); |
| 13513 | method public double nextDouble(); |
| 13514 | method public float nextFloat(); |
| 13515 | method public double nextGaussian(); |
| 13516 | method public int nextInt(); |
| 13517 | method public int nextInt(int); |
| 13518 | method public long nextLong(); |
| 13519 | method public void setSeed(long); |
| 13520 | } |
| 13521 | |
| 13522 | public interface RandomAccess { |
| 13523 | } |
| 13524 | |
| 13525 | public abstract class ResourceBundle { |
| 13526 | ctor public ResourceBundle(); |
| 13527 | method public static final void clearCache(); |
| 13528 | method public static final void clearCache(ClassLoader); |
| 13529 | method public boolean containsKey(String); |
| 13530 | method public String getBaseBundleName(); |
| 13531 | method public static final java.util.ResourceBundle getBundle(String); |
| 13532 | method public static final java.util.ResourceBundle getBundle(String, java.util.ResourceBundle.Control); |
| 13533 | method public static final java.util.ResourceBundle getBundle(String, java.util.Locale); |
| 13534 | method public static final java.util.ResourceBundle getBundle(String, java.util.Locale, java.util.ResourceBundle.Control); |
| 13535 | method public static java.util.ResourceBundle getBundle(String, java.util.Locale, ClassLoader); |
| 13536 | method public static java.util.ResourceBundle getBundle(String, java.util.Locale, ClassLoader, java.util.ResourceBundle.Control); |
| 13537 | method public abstract java.util.Enumeration<java.lang.String> getKeys(); |
| 13538 | method public java.util.Locale getLocale(); |
| 13539 | method public final Object getObject(String); |
| 13540 | method public final String getString(String); |
| 13541 | method public final String[] getStringArray(String); |
| 13542 | method protected abstract Object handleGetObject(String); |
| 13543 | method protected java.util.Set<java.lang.String> handleKeySet(); |
| 13544 | method public java.util.Set<java.lang.String> keySet(); |
| 13545 | method protected void setParent(java.util.ResourceBundle); |
| 13546 | field protected java.util.ResourceBundle parent; |
| 13547 | } |
| 13548 | |
| 13549 | public static class ResourceBundle.Control { |
| 13550 | ctor protected ResourceBundle.Control(); |
| 13551 | method public java.util.List<java.util.Locale> getCandidateLocales(String, java.util.Locale); |
| 13552 | method public static final java.util.ResourceBundle.Control getControl(java.util.List<java.lang.String>); |
| 13553 | method public java.util.Locale getFallbackLocale(String, java.util.Locale); |
| 13554 | method public java.util.List<java.lang.String> getFormats(String); |
| 13555 | method public static final java.util.ResourceBundle.Control getNoFallbackControl(java.util.List<java.lang.String>); |
| 13556 | method public long getTimeToLive(String, java.util.Locale); |
| 13557 | method public boolean needsReload(String, java.util.Locale, String, ClassLoader, java.util.ResourceBundle, long); |
| 13558 | method public java.util.ResourceBundle newBundle(String, java.util.Locale, String, ClassLoader, boolean) throws java.io.IOException, java.lang.IllegalAccessException, java.lang.InstantiationException; |
| 13559 | method public String toBundleName(String, java.util.Locale); |
| 13560 | method public final String toResourceName(String, String); |
| 13561 | field public static final java.util.List<java.lang.String> FORMAT_CLASS; |
| 13562 | field public static final java.util.List<java.lang.String> FORMAT_DEFAULT; |
| 13563 | field public static final java.util.List<java.lang.String> FORMAT_PROPERTIES; |
| 13564 | field public static final long TTL_DONT_CACHE = -1L; // 0xffffffffffffffffL |
| 13565 | field public static final long TTL_NO_EXPIRATION_CONTROL = -2L; // 0xfffffffffffffffeL |
| 13566 | } |
| 13567 | |
| 13568 | public final class Scanner implements java.io.Closeable java.util.Iterator<java.lang.String> { |
| 13569 | ctor public Scanner(Readable); |
| 13570 | ctor public Scanner(java.io.InputStream); |
| 13571 | ctor public Scanner(java.io.InputStream, String); |
| 13572 | ctor public Scanner(java.io.File) throws java.io.FileNotFoundException; |
| 13573 | ctor public Scanner(java.io.File, String) throws java.io.FileNotFoundException; |
| 13574 | ctor public Scanner(java.nio.file.Path) throws java.io.IOException; |
| 13575 | ctor public Scanner(java.nio.file.Path, String) throws java.io.IOException; |
| 13576 | ctor public Scanner(String); |
| 13577 | ctor public Scanner(java.nio.channels.ReadableByteChannel); |
| 13578 | ctor public Scanner(java.nio.channels.ReadableByteChannel, String); |
| 13579 | method public void close(); |
| 13580 | method public java.util.regex.Pattern delimiter(); |
| 13581 | method public String findInLine(String); |
| 13582 | method public String findInLine(java.util.regex.Pattern); |
| 13583 | method public String findWithinHorizon(String, int); |
| 13584 | method public String findWithinHorizon(java.util.regex.Pattern, int); |
| 13585 | method public boolean hasNext(); |
| 13586 | method public boolean hasNext(String); |
| 13587 | method public boolean hasNext(java.util.regex.Pattern); |
| 13588 | method public boolean hasNextBigDecimal(); |
| 13589 | method public boolean hasNextBigInteger(); |
| 13590 | method public boolean hasNextBigInteger(int); |
| 13591 | method public boolean hasNextBoolean(); |
| 13592 | method public boolean hasNextByte(); |
| 13593 | method public boolean hasNextByte(int); |
| 13594 | method public boolean hasNextDouble(); |
| 13595 | method public boolean hasNextFloat(); |
| 13596 | method public boolean hasNextInt(); |
| 13597 | method public boolean hasNextInt(int); |
| 13598 | method public boolean hasNextLine(); |
| 13599 | method public boolean hasNextLong(); |
| 13600 | method public boolean hasNextLong(int); |
| 13601 | method public boolean hasNextShort(); |
| 13602 | method public boolean hasNextShort(int); |
| 13603 | method public java.io.IOException ioException(); |
| 13604 | method public java.util.Locale locale(); |
| 13605 | method public java.util.regex.MatchResult match(); |
| 13606 | method public String next(); |
| 13607 | method public String next(String); |
| 13608 | method public String next(java.util.regex.Pattern); |
| 13609 | method public java.math.BigDecimal nextBigDecimal(); |
| 13610 | method public java.math.BigInteger nextBigInteger(); |
| 13611 | method public java.math.BigInteger nextBigInteger(int); |
| 13612 | method public boolean nextBoolean(); |
| 13613 | method public byte nextByte(); |
| 13614 | method public byte nextByte(int); |
| 13615 | method public double nextDouble(); |
| 13616 | method public float nextFloat(); |
| 13617 | method public int nextInt(); |
| 13618 | method public int nextInt(int); |
| 13619 | method public String nextLine(); |
| 13620 | method public long nextLong(); |
| 13621 | method public long nextLong(int); |
| 13622 | method public short nextShort(); |
| 13623 | method public short nextShort(int); |
| 13624 | method public int radix(); |
| 13625 | method public java.util.Scanner reset(); |
| 13626 | method public java.util.Scanner skip(java.util.regex.Pattern); |
| 13627 | method public java.util.Scanner skip(String); |
| 13628 | method public java.util.Scanner useDelimiter(java.util.regex.Pattern); |
| 13629 | method public java.util.Scanner useDelimiter(String); |
| 13630 | method public java.util.Scanner useLocale(java.util.Locale); |
| 13631 | method public java.util.Scanner useRadix(int); |
| 13632 | } |
| 13633 | |
| 13634 | public class ServiceConfigurationError extends java.lang.Error { |
| 13635 | ctor public ServiceConfigurationError(String); |
| 13636 | ctor public ServiceConfigurationError(String, Throwable); |
| 13637 | } |
| 13638 | |
| 13639 | public final class ServiceLoader<S> implements java.lang.Iterable<S> { |
| 13640 | method public java.util.Iterator<S> iterator(); |
| 13641 | method public static <S> java.util.ServiceLoader<S> load(Class<S>, ClassLoader); |
| 13642 | method public static <S> java.util.ServiceLoader<S> load(Class<S>); |
| 13643 | method public static <S> java.util.ServiceLoader<S> loadInstalled(Class<S>); |
| 13644 | method public void reload(); |
| 13645 | } |
| 13646 | |
| 13647 | public interface Set<E> extends java.util.Collection<E> { |
| 13648 | method @NonNull public static <E> java.util.Set<E> of(); |
| 13649 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E); |
| 13650 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E); |
| 13651 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E); |
| 13652 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13653 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13654 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13655 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13656 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13657 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13658 | method @NonNull public static <E> java.util.Set<E> of(@NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E, @NonNull E); |
| 13659 | method @NonNull @java.lang.SafeVarargs public static <E> java.util.Set<E> of(@NonNull E...); |
| 13660 | } |
| 13661 | |
| 13662 | public class SimpleTimeZone extends java.util.TimeZone { |
| 13663 | ctor public SimpleTimeZone(int, String); |
| 13664 | ctor public SimpleTimeZone(int, String, int, int, int, int, int, int, int, int); |
| 13665 | ctor public SimpleTimeZone(int, String, int, int, int, int, int, int, int, int, int); |
| 13666 | ctor public SimpleTimeZone(int, String, int, int, int, int, int, int, int, int, int, int, int); |
| 13667 | method public int getOffset(int, int, int, int, int, int); |
| 13668 | method public int getRawOffset(); |
| 13669 | method public boolean inDaylightTime(java.util.Date); |
| 13670 | method public void setDSTSavings(int); |
| 13671 | method public void setEndRule(int, int, int, int); |
| 13672 | method public void setEndRule(int, int, int); |
| 13673 | method public void setEndRule(int, int, int, int, boolean); |
| 13674 | method public void setRawOffset(int); |
| 13675 | method public void setStartRule(int, int, int, int); |
| 13676 | method public void setStartRule(int, int, int); |
| 13677 | method public void setStartRule(int, int, int, int, boolean); |
| 13678 | method public void setStartYear(int); |
| 13679 | method public boolean useDaylightTime(); |
| 13680 | field public static final int STANDARD_TIME = 1; // 0x1 |
| 13681 | field public static final int UTC_TIME = 2; // 0x2 |
| 13682 | field public static final int WALL_TIME = 0; // 0x0 |
| 13683 | } |
| 13684 | |
| 13685 | public interface SortedMap<K, V> extends java.util.Map<K,V> { |
| 13686 | method @Nullable public java.util.Comparator<? super K> comparator(); |
| 13687 | method public K firstKey(); |
| 13688 | method @NonNull public java.util.SortedMap<K,V> headMap(K); |
| 13689 | method public K lastKey(); |
| 13690 | method @NonNull public java.util.SortedMap<K,V> subMap(K, K); |
| 13691 | method @NonNull public java.util.SortedMap<K,V> tailMap(K); |
| 13692 | } |
| 13693 | |
| 13694 | public interface SortedSet<E> extends java.util.Set<E> { |
| 13695 | method public java.util.Comparator<? super E> comparator(); |
| 13696 | method public E first(); |
| 13697 | method public java.util.SortedSet<E> headSet(E); |
| 13698 | method public E last(); |
| 13699 | method public java.util.SortedSet<E> subSet(E, E); |
| 13700 | method public java.util.SortedSet<E> tailSet(E); |
| 13701 | } |
| 13702 | |
| 13703 | public interface Spliterator<T> { |
| 13704 | method public int characteristics(); |
| 13705 | method public long estimateSize(); |
| 13706 | method public default void forEachRemaining(java.util.function.Consumer<? super T>); |
| 13707 | method public default java.util.Comparator<? super T> getComparator(); |
| 13708 | method public default long getExactSizeIfKnown(); |
| 13709 | method public default boolean hasCharacteristics(int); |
| 13710 | method public boolean tryAdvance(java.util.function.Consumer<? super T>); |
| 13711 | method public java.util.Spliterator<T> trySplit(); |
| 13712 | field public static final int CONCURRENT = 4096; // 0x1000 |
| 13713 | field public static final int DISTINCT = 1; // 0x1 |
| 13714 | field public static final int IMMUTABLE = 1024; // 0x400 |
| 13715 | field public static final int NONNULL = 256; // 0x100 |
| 13716 | field public static final int ORDERED = 16; // 0x10 |
| 13717 | field public static final int SIZED = 64; // 0x40 |
| 13718 | field public static final int SORTED = 4; // 0x4 |
| 13719 | field public static final int SUBSIZED = 16384; // 0x4000 |
| 13720 | } |
| 13721 | |
| 13722 | public static interface Spliterator.OfDouble extends java.util.Spliterator.OfPrimitive<java.lang.Double,java.util.function.DoubleConsumer,java.util.Spliterator.OfDouble> { |
| 13723 | method public default void forEachRemaining(java.util.function.DoubleConsumer); |
| 13724 | method public default void forEachRemaining(java.util.function.Consumer<? super java.lang.Double>); |
| 13725 | method public boolean tryAdvance(java.util.function.DoubleConsumer); |
| 13726 | method public default boolean tryAdvance(java.util.function.Consumer<? super java.lang.Double>); |
| 13727 | method public java.util.Spliterator.OfDouble trySplit(); |
| 13728 | } |
| 13729 | |
| 13730 | public static interface Spliterator.OfInt extends java.util.Spliterator.OfPrimitive<java.lang.Integer,java.util.function.IntConsumer,java.util.Spliterator.OfInt> { |
| 13731 | method public default void forEachRemaining(java.util.function.IntConsumer); |
| 13732 | method public default void forEachRemaining(java.util.function.Consumer<? super java.lang.Integer>); |
| 13733 | method public boolean tryAdvance(java.util.function.IntConsumer); |
| 13734 | method public default boolean tryAdvance(java.util.function.Consumer<? super java.lang.Integer>); |
| 13735 | method public java.util.Spliterator.OfInt trySplit(); |
| 13736 | } |
| 13737 | |
| 13738 | public static interface Spliterator.OfLong extends java.util.Spliterator.OfPrimitive<java.lang.Long,java.util.function.LongConsumer,java.util.Spliterator.OfLong> { |
| 13739 | method public default void forEachRemaining(java.util.function.LongConsumer); |
| 13740 | method public default void forEachRemaining(java.util.function.Consumer<? super java.lang.Long>); |
| 13741 | method public boolean tryAdvance(java.util.function.LongConsumer); |
| 13742 | method public default boolean tryAdvance(java.util.function.Consumer<? super java.lang.Long>); |
| 13743 | method public java.util.Spliterator.OfLong trySplit(); |
| 13744 | } |
| 13745 | |
| 13746 | public static interface Spliterator.OfPrimitive<T, T_CONS, T_SPLITR extends java.util.Spliterator.OfPrimitive<T, T_CONS, T_SPLITR>> extends java.util.Spliterator<T> { |
| 13747 | method public default void forEachRemaining(T_CONS); |
| 13748 | method public boolean tryAdvance(T_CONS); |
| 13749 | method public T_SPLITR trySplit(); |
| 13750 | } |
| 13751 | |
| 13752 | public final class Spliterators { |
| 13753 | method public static java.util.Spliterator.OfDouble emptyDoubleSpliterator(); |
| 13754 | method public static java.util.Spliterator.OfInt emptyIntSpliterator(); |
| 13755 | method public static java.util.Spliterator.OfLong emptyLongSpliterator(); |
| 13756 | method public static <T> java.util.Spliterator<T> emptySpliterator(); |
| 13757 | method public static <T> java.util.Iterator<T> iterator(java.util.Spliterator<? extends T>); |
| 13758 | method public static java.util.PrimitiveIterator.OfInt iterator(java.util.Spliterator.OfInt); |
| 13759 | method public static java.util.PrimitiveIterator.OfLong iterator(java.util.Spliterator.OfLong); |
| 13760 | method public static java.util.PrimitiveIterator.OfDouble iterator(java.util.Spliterator.OfDouble); |
| 13761 | method public static <T> java.util.Spliterator<T> spliterator(Object[], int); |
| 13762 | method public static <T> java.util.Spliterator<T> spliterator(Object[], int, int, int); |
| 13763 | method public static java.util.Spliterator.OfInt spliterator(int[], int); |
| 13764 | method public static java.util.Spliterator.OfInt spliterator(int[], int, int, int); |
| 13765 | method public static java.util.Spliterator.OfLong spliterator(long[], int); |
| 13766 | method public static java.util.Spliterator.OfLong spliterator(long[], int, int, int); |
| 13767 | method public static java.util.Spliterator.OfDouble spliterator(double[], int); |
| 13768 | method public static java.util.Spliterator.OfDouble spliterator(double[], int, int, int); |
| 13769 | method public static <T> java.util.Spliterator<T> spliterator(java.util.Collection<? extends T>, int); |
| 13770 | method public static <T> java.util.Spliterator<T> spliterator(java.util.Iterator<? extends T>, long, int); |
| 13771 | method public static java.util.Spliterator.OfInt spliterator(java.util.PrimitiveIterator.OfInt, long, int); |
| 13772 | method public static java.util.Spliterator.OfLong spliterator(java.util.PrimitiveIterator.OfLong, long, int); |
| 13773 | method public static java.util.Spliterator.OfDouble spliterator(java.util.PrimitiveIterator.OfDouble, long, int); |
| 13774 | method public static <T> java.util.Spliterator<T> spliteratorUnknownSize(java.util.Iterator<? extends T>, int); |
| 13775 | method public static java.util.Spliterator.OfInt spliteratorUnknownSize(java.util.PrimitiveIterator.OfInt, int); |
| 13776 | method public static java.util.Spliterator.OfLong spliteratorUnknownSize(java.util.PrimitiveIterator.OfLong, int); |
| 13777 | method public static java.util.Spliterator.OfDouble spliteratorUnknownSize(java.util.PrimitiveIterator.OfDouble, int); |
| 13778 | } |
| 13779 | |
| 13780 | public abstract static class Spliterators.AbstractDoubleSpliterator implements java.util.Spliterator.OfDouble { |
| 13781 | ctor protected Spliterators.AbstractDoubleSpliterator(long, int); |
| 13782 | method public int characteristics(); |
| 13783 | method public long estimateSize(); |
| 13784 | method public java.util.Spliterator.OfDouble trySplit(); |
| 13785 | } |
| 13786 | |
| 13787 | public abstract static class Spliterators.AbstractIntSpliterator implements java.util.Spliterator.OfInt { |
| 13788 | ctor protected Spliterators.AbstractIntSpliterator(long, int); |
| 13789 | method public int characteristics(); |
| 13790 | method public long estimateSize(); |
| 13791 | method public java.util.Spliterator.OfInt trySplit(); |
| 13792 | } |
| 13793 | |
| 13794 | public abstract static class Spliterators.AbstractLongSpliterator implements java.util.Spliterator.OfLong { |
| 13795 | ctor protected Spliterators.AbstractLongSpliterator(long, int); |
| 13796 | method public int characteristics(); |
| 13797 | method public long estimateSize(); |
| 13798 | method public java.util.Spliterator.OfLong trySplit(); |
| 13799 | } |
| 13800 | |
| 13801 | public abstract static class Spliterators.AbstractSpliterator<T> implements java.util.Spliterator<T> { |
| 13802 | ctor protected Spliterators.AbstractSpliterator(long, int); |
| 13803 | method public int characteristics(); |
| 13804 | method public long estimateSize(); |
| 13805 | method public java.util.Spliterator<T> trySplit(); |
| 13806 | } |
| 13807 | |
| 13808 | public final class SplittableRandom { |
| 13809 | ctor public SplittableRandom(long); |
| 13810 | ctor public SplittableRandom(); |
| 13811 | method public java.util.stream.DoubleStream doubles(long); |
| 13812 | method public java.util.stream.DoubleStream doubles(); |
| 13813 | method public java.util.stream.DoubleStream doubles(long, double, double); |
| 13814 | method public java.util.stream.DoubleStream doubles(double, double); |
| 13815 | method public java.util.stream.IntStream ints(long); |
| 13816 | method public java.util.stream.IntStream ints(); |
| 13817 | method public java.util.stream.IntStream ints(long, int, int); |
| 13818 | method public java.util.stream.IntStream ints(int, int); |
| 13819 | method public java.util.stream.LongStream longs(long); |
| 13820 | method public java.util.stream.LongStream longs(); |
| 13821 | method public java.util.stream.LongStream longs(long, long, long); |
| 13822 | method public java.util.stream.LongStream longs(long, long); |
| 13823 | method public boolean nextBoolean(); |
| 13824 | method public double nextDouble(); |
| 13825 | method public double nextDouble(double); |
| 13826 | method public double nextDouble(double, double); |
| 13827 | method public int nextInt(); |
| 13828 | method public int nextInt(int); |
| 13829 | method public int nextInt(int, int); |
| 13830 | method public long nextLong(); |
| 13831 | method public long nextLong(long); |
| 13832 | method public long nextLong(long, long); |
| 13833 | method public java.util.SplittableRandom split(); |
| 13834 | } |
| 13835 | |
| 13836 | public class Stack<E> extends java.util.Vector<E> { |
| 13837 | ctor public Stack(); |
| 13838 | method public boolean empty(); |
| 13839 | method public E peek(); |
| 13840 | method public E pop(); |
| 13841 | method public E push(E); |
| 13842 | method public int search(Object); |
| 13843 | } |
| 13844 | |
| 13845 | public final class StringJoiner { |
| 13846 | ctor public StringJoiner(CharSequence); |
| 13847 | ctor public StringJoiner(CharSequence, CharSequence, CharSequence); |
| 13848 | method public java.util.StringJoiner add(CharSequence); |
| 13849 | method public int length(); |
| 13850 | method public java.util.StringJoiner merge(java.util.StringJoiner); |
| 13851 | method public java.util.StringJoiner setEmptyValue(CharSequence); |
| 13852 | } |
| 13853 | |
| 13854 | public class StringTokenizer implements java.util.Enumeration<java.lang.Object> { |
| 13855 | ctor public StringTokenizer(String, String, boolean); |
| 13856 | ctor public StringTokenizer(String, String); |
| 13857 | ctor public StringTokenizer(String); |
| 13858 | method public int countTokens(); |
| 13859 | method public boolean hasMoreElements(); |
| 13860 | method public boolean hasMoreTokens(); |
| 13861 | method public Object nextElement(); |
| 13862 | method public String nextToken(); |
| 13863 | method public String nextToken(String); |
| 13864 | } |
| 13865 | |
| 13866 | public abstract class TimeZone implements java.lang.Cloneable java.io.Serializable { |
| 13867 | ctor public TimeZone(); |
| 13868 | method public Object clone(); |
| 13869 | method public static String[] getAvailableIDs(int); |
| 13870 | method public static String[] getAvailableIDs(); |
| 13871 | method public int getDSTSavings(); |
| 13872 | method public static java.util.TimeZone getDefault(); |
| 13873 | method public final String getDisplayName(); |
| 13874 | method public final String getDisplayName(java.util.Locale); |
| 13875 | method public final String getDisplayName(boolean, int); |
| 13876 | method public String getDisplayName(boolean, int, java.util.Locale); |
| 13877 | method public String getID(); |
| 13878 | method public abstract int getOffset(int, int, int, int, int, int); |
| 13879 | method public int getOffset(long); |
| 13880 | method public abstract int getRawOffset(); |
| 13881 | method public static java.util.TimeZone getTimeZone(String); |
| 13882 | method public static java.util.TimeZone getTimeZone(java.time.ZoneId); |
| 13883 | method public boolean hasSameRules(java.util.TimeZone); |
| 13884 | method public abstract boolean inDaylightTime(java.util.Date); |
| 13885 | method public boolean observesDaylightTime(); |
| 13886 | method public static void setDefault(java.util.TimeZone); |
| 13887 | method public void setID(String); |
| 13888 | method public abstract void setRawOffset(int); |
| 13889 | method public java.time.ZoneId toZoneId(); |
| 13890 | method public abstract boolean useDaylightTime(); |
| 13891 | field public static final int LONG = 1; // 0x1 |
| 13892 | field public static final int SHORT = 0; // 0x0 |
| 13893 | } |
| 13894 | |
| 13895 | public class Timer { |
| 13896 | ctor public Timer(); |
| 13897 | ctor public Timer(boolean); |
| 13898 | ctor public Timer(String); |
| 13899 | ctor public Timer(String, boolean); |
| 13900 | method public void cancel(); |
| 13901 | method public int purge(); |
| 13902 | method public void schedule(java.util.TimerTask, long); |
| 13903 | method public void schedule(java.util.TimerTask, java.util.Date); |
| 13904 | method public void schedule(java.util.TimerTask, long, long); |
| 13905 | method public void schedule(java.util.TimerTask, java.util.Date, long); |
| 13906 | method public void scheduleAtFixedRate(java.util.TimerTask, long, long); |
| 13907 | method public void scheduleAtFixedRate(java.util.TimerTask, java.util.Date, long); |
| 13908 | } |
| 13909 | |
| 13910 | public abstract class TimerTask implements java.lang.Runnable { |
| 13911 | ctor protected TimerTask(); |
| 13912 | method public boolean cancel(); |
| 13913 | method public long scheduledExecutionTime(); |
| 13914 | } |
| 13915 | |
| 13916 | public class TooManyListenersException extends java.lang.Exception { |
| 13917 | ctor public TooManyListenersException(); |
| 13918 | ctor public TooManyListenersException(String); |
| 13919 | } |
| 13920 | |
| 13921 | public class TreeMap<K, V> extends java.util.AbstractMap<K,V> implements java.lang.Cloneable java.util.NavigableMap<K,V> java.io.Serializable { |
| 13922 | ctor public TreeMap(); |
| 13923 | ctor public TreeMap(@Nullable java.util.Comparator<? super K>); |
| 13924 | ctor public TreeMap(@NonNull java.util.Map<? extends K,? extends V>); |
| 13925 | ctor public TreeMap(@NonNull java.util.SortedMap<K,? extends V>); |
| 13926 | method @Nullable public java.util.Map.Entry<K,V> ceilingEntry(K); |
| 13927 | method @Nullable public K ceilingKey(K); |
| 13928 | method @NonNull public Object clone(); |
| 13929 | method @Nullable public java.util.Comparator<? super K> comparator(); |
| 13930 | method @NonNull public java.util.NavigableSet<K> descendingKeySet(); |
| 13931 | method @NonNull public java.util.NavigableMap<K,V> descendingMap(); |
| 13932 | method @NonNull public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 13933 | method @Nullable public java.util.Map.Entry<K,V> firstEntry(); |
| 13934 | method public K firstKey(); |
| 13935 | method @Nullable public java.util.Map.Entry<K,V> floorEntry(K); |
| 13936 | method @Nullable public K floorKey(K); |
| 13937 | method @NonNull public java.util.NavigableMap<K,V> headMap(K, boolean); |
| 13938 | method @NonNull public java.util.SortedMap<K,V> headMap(K); |
| 13939 | method @Nullable public java.util.Map.Entry<K,V> higherEntry(K); |
| 13940 | method @Nullable public K higherKey(K); |
| 13941 | method @Nullable public java.util.Map.Entry<K,V> lastEntry(); |
| 13942 | method public K lastKey(); |
| 13943 | method @Nullable public java.util.Map.Entry<K,V> lowerEntry(K); |
| 13944 | method @Nullable public K lowerKey(K); |
| 13945 | method @NonNull public java.util.NavigableSet<K> navigableKeySet(); |
| 13946 | method @Nullable public java.util.Map.Entry<K,V> pollFirstEntry(); |
| 13947 | method @Nullable public java.util.Map.Entry<K,V> pollLastEntry(); |
| 13948 | method @NonNull public java.util.NavigableMap<K,V> subMap(K, boolean, K, boolean); |
| 13949 | method @NonNull public java.util.SortedMap<K,V> subMap(K, K); |
| 13950 | method @NonNull public java.util.NavigableMap<K,V> tailMap(K, boolean); |
| 13951 | method @NonNull public java.util.SortedMap<K,V> tailMap(K); |
| 13952 | } |
| 13953 | |
| 13954 | public class TreeSet<E> extends java.util.AbstractSet<E> implements java.lang.Cloneable java.util.NavigableSet<E> java.io.Serializable { |
| 13955 | ctor public TreeSet(); |
| 13956 | ctor public TreeSet(java.util.Comparator<? super E>); |
| 13957 | ctor public TreeSet(java.util.Collection<? extends E>); |
| 13958 | ctor public TreeSet(java.util.SortedSet<E>); |
| 13959 | method public E ceiling(E); |
| 13960 | method public Object clone(); |
| 13961 | method public java.util.Comparator<? super E> comparator(); |
| 13962 | method public java.util.Iterator<E> descendingIterator(); |
| 13963 | method public java.util.NavigableSet<E> descendingSet(); |
| 13964 | method public E first(); |
| 13965 | method public E floor(E); |
| 13966 | method public java.util.NavigableSet<E> headSet(E, boolean); |
| 13967 | method public java.util.SortedSet<E> headSet(E); |
| 13968 | method public E higher(E); |
| 13969 | method public java.util.Iterator<E> iterator(); |
| 13970 | method public E last(); |
| 13971 | method public E lower(E); |
| 13972 | method public E pollFirst(); |
| 13973 | method public E pollLast(); |
| 13974 | method public int size(); |
| 13975 | method public java.util.NavigableSet<E> subSet(E, boolean, E, boolean); |
| 13976 | method public java.util.SortedSet<E> subSet(E, E); |
| 13977 | method public java.util.NavigableSet<E> tailSet(E, boolean); |
| 13978 | method public java.util.SortedSet<E> tailSet(E); |
| 13979 | } |
| 13980 | |
| 13981 | public final class UUID implements java.lang.Comparable<java.util.UUID> java.io.Serializable { |
| 13982 | ctor public UUID(long, long); |
| 13983 | method public int clockSequence(); |
| 13984 | method public int compareTo(java.util.UUID); |
| 13985 | method public static java.util.UUID fromString(String); |
| 13986 | method public long getLeastSignificantBits(); |
| 13987 | method public long getMostSignificantBits(); |
| 13988 | method public static java.util.UUID nameUUIDFromBytes(byte[]); |
| 13989 | method public long node(); |
| 13990 | method public static java.util.UUID randomUUID(); |
| 13991 | method public long timestamp(); |
| 13992 | method public int variant(); |
| 13993 | method public int version(); |
| 13994 | } |
| 13995 | |
| 13996 | public class UnknownFormatConversionException extends java.util.IllegalFormatException { |
| 13997 | ctor public UnknownFormatConversionException(String); |
| 13998 | method public String getConversion(); |
| 13999 | } |
| 14000 | |
| 14001 | public class UnknownFormatFlagsException extends java.util.IllegalFormatException { |
| 14002 | ctor public UnknownFormatFlagsException(String); |
| 14003 | method public String getFlags(); |
| 14004 | } |
| 14005 | |
| 14006 | public class Vector<E> extends java.util.AbstractList<E> implements java.lang.Cloneable java.util.List<E> java.util.RandomAccess java.io.Serializable { |
| 14007 | ctor public Vector(int, int); |
| 14008 | ctor public Vector(int); |
| 14009 | ctor public Vector(); |
| 14010 | ctor public Vector(@NonNull java.util.Collection<? extends E>); |
| 14011 | method public void addElement(E); |
| 14012 | method public int capacity(); |
| 14013 | method @NonNull public Object clone(); |
| 14014 | method public void copyInto(@NonNull Object[]); |
| 14015 | method public E elementAt(int); |
| 14016 | method @NonNull public java.util.Enumeration<E> elements(); |
| 14017 | method public void ensureCapacity(int); |
| 14018 | method public E firstElement(); |
| 14019 | method public void forEach(@NonNull java.util.function.Consumer<? super E>); |
| 14020 | method public E get(int); |
| 14021 | method public int indexOf(@Nullable Object, int); |
| 14022 | method public void insertElementAt(E, int); |
| 14023 | method public E lastElement(); |
| 14024 | method public int lastIndexOf(@Nullable Object, int); |
| 14025 | method public void removeAllElements(); |
| 14026 | method public boolean removeElement(@Nullable Object); |
| 14027 | method public void removeElementAt(int); |
| 14028 | method public void setElementAt(E, int); |
| 14029 | method public void setSize(int); |
| 14030 | method public int size(); |
| 14031 | method public void trimToSize(); |
| 14032 | field protected int capacityIncrement; |
| 14033 | field protected int elementCount; |
| 14034 | field @NonNull protected Object[] elementData; |
| 14035 | } |
| 14036 | |
| 14037 | public class WeakHashMap<K, V> extends java.util.AbstractMap<K,V> implements java.util.Map<K,V> { |
| 14038 | ctor public WeakHashMap(int, float); |
| 14039 | ctor public WeakHashMap(int); |
| 14040 | ctor public WeakHashMap(); |
| 14041 | ctor public WeakHashMap(@NonNull java.util.Map<? extends K,? extends V>); |
| 14042 | method @NonNull public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 14043 | } |
| 14044 | |
| 14045 | } |
| 14046 | |
| 14047 | package java.util.concurrent { |
| 14048 | |
| 14049 | public abstract class AbstractExecutorService implements java.util.concurrent.ExecutorService { |
| 14050 | ctor public AbstractExecutorService(); |
| 14051 | method public <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>) throws java.lang.InterruptedException; |
| 14052 | method public <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14053 | method public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>>) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException; |
| 14054 | method public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14055 | method protected <T> java.util.concurrent.RunnableFuture<T> newTaskFor(Runnable, T); |
| 14056 | method protected <T> java.util.concurrent.RunnableFuture<T> newTaskFor(java.util.concurrent.Callable<T>); |
| 14057 | method public java.util.concurrent.Future<?> submit(Runnable); |
| 14058 | method public <T> java.util.concurrent.Future<T> submit(Runnable, T); |
| 14059 | method public <T> java.util.concurrent.Future<T> submit(java.util.concurrent.Callable<T>); |
| 14060 | } |
| 14061 | |
| 14062 | public class ArrayBlockingQueue<E> extends java.util.AbstractQueue<E> implements java.util.concurrent.BlockingQueue<E> java.io.Serializable { |
| 14063 | ctor public ArrayBlockingQueue(int); |
| 14064 | ctor public ArrayBlockingQueue(int, boolean); |
| 14065 | ctor public ArrayBlockingQueue(int, boolean, java.util.Collection<? extends E>); |
| 14066 | method public int drainTo(java.util.Collection<? super E>); |
| 14067 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14068 | method public java.util.Iterator<E> iterator(); |
| 14069 | method public boolean offer(E); |
| 14070 | method public boolean offer(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14071 | method public E peek(); |
| 14072 | method public E poll(); |
| 14073 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14074 | method public void put(E) throws java.lang.InterruptedException; |
| 14075 | method public int remainingCapacity(); |
| 14076 | method public int size(); |
| 14077 | method public E take() throws java.lang.InterruptedException; |
| 14078 | } |
| 14079 | |
| 14080 | public interface BlockingDeque<E> extends java.util.concurrent.BlockingQueue<E> java.util.Deque<E> { |
| 14081 | method public boolean offerFirst(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14082 | method public boolean offerLast(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14083 | method public E pollFirst(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14084 | method public E pollLast(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14085 | method public void putFirst(E) throws java.lang.InterruptedException; |
| 14086 | method public void putLast(E) throws java.lang.InterruptedException; |
| 14087 | method public E takeFirst() throws java.lang.InterruptedException; |
| 14088 | method public E takeLast() throws java.lang.InterruptedException; |
| 14089 | } |
| 14090 | |
| 14091 | public interface BlockingQueue<E> extends java.util.Queue<E> { |
| 14092 | method public int drainTo(java.util.Collection<? super E>); |
| 14093 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14094 | method public boolean offer(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14095 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14096 | method public void put(E) throws java.lang.InterruptedException; |
| 14097 | method public int remainingCapacity(); |
| 14098 | method public E take() throws java.lang.InterruptedException; |
| 14099 | } |
| 14100 | |
| 14101 | public class BrokenBarrierException extends java.lang.Exception { |
| 14102 | ctor public BrokenBarrierException(); |
| 14103 | ctor public BrokenBarrierException(String); |
| 14104 | } |
| 14105 | |
| 14106 | @java.lang.FunctionalInterface public interface Callable<V> { |
| 14107 | method public V call() throws java.lang.Exception; |
| 14108 | } |
| 14109 | |
| 14110 | public class CancellationException extends java.lang.IllegalStateException { |
| 14111 | ctor public CancellationException(); |
| 14112 | ctor public CancellationException(String); |
| 14113 | } |
| 14114 | |
| 14115 | public class CompletableFuture<T> implements java.util.concurrent.CompletionStage<T> java.util.concurrent.Future<T> { |
| 14116 | ctor public CompletableFuture(); |
| 14117 | method public java.util.concurrent.CompletableFuture<java.lang.Void> acceptEither(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Consumer<? super T>); |
| 14118 | method public java.util.concurrent.CompletableFuture<java.lang.Void> acceptEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Consumer<? super T>); |
| 14119 | method public java.util.concurrent.CompletableFuture<java.lang.Void> acceptEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Consumer<? super T>, java.util.concurrent.Executor); |
| 14120 | method public static java.util.concurrent.CompletableFuture<java.lang.Void> allOf(java.util.concurrent.CompletableFuture<?>...); |
| 14121 | method public static java.util.concurrent.CompletableFuture<java.lang.Object> anyOf(java.util.concurrent.CompletableFuture<?>...); |
| 14122 | method public <U> java.util.concurrent.CompletableFuture<U> applyToEither(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Function<? super T,U>); |
| 14123 | method public <U> java.util.concurrent.CompletableFuture<U> applyToEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Function<? super T,U>); |
| 14124 | method public <U> java.util.concurrent.CompletableFuture<U> applyToEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Function<? super T,U>, java.util.concurrent.Executor); |
| 14125 | method public boolean cancel(boolean); |
| 14126 | method public boolean complete(T); |
| 14127 | method public boolean completeExceptionally(Throwable); |
| 14128 | method public static <U> java.util.concurrent.CompletableFuture<U> completedFuture(U); |
| 14129 | method public java.util.concurrent.CompletableFuture<T> exceptionally(java.util.function.Function<java.lang.Throwable,? extends T>); |
| 14130 | method public T get() throws java.util.concurrent.ExecutionException, java.lang.InterruptedException; |
| 14131 | method public T get(long, java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14132 | method public T getNow(T); |
| 14133 | method public int getNumberOfDependents(); |
| 14134 | method public <U> java.util.concurrent.CompletableFuture<U> handle(java.util.function.BiFunction<? super T,java.lang.Throwable,? extends U>); |
| 14135 | method public <U> java.util.concurrent.CompletableFuture<U> handleAsync(java.util.function.BiFunction<? super T,java.lang.Throwable,? extends U>); |
| 14136 | method public <U> java.util.concurrent.CompletableFuture<U> handleAsync(java.util.function.BiFunction<? super T,java.lang.Throwable,? extends U>, java.util.concurrent.Executor); |
| 14137 | method public boolean isCancelled(); |
| 14138 | method public boolean isCompletedExceptionally(); |
| 14139 | method public boolean isDone(); |
| 14140 | method public T join(); |
| 14141 | method public void obtrudeException(Throwable); |
| 14142 | method public void obtrudeValue(T); |
| 14143 | method public java.util.concurrent.CompletableFuture<java.lang.Void> runAfterBoth(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14144 | method public java.util.concurrent.CompletableFuture<java.lang.Void> runAfterBothAsync(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14145 | method public java.util.concurrent.CompletableFuture<java.lang.Void> runAfterBothAsync(java.util.concurrent.CompletionStage<?>, Runnable, java.util.concurrent.Executor); |
| 14146 | method public java.util.concurrent.CompletableFuture<java.lang.Void> runAfterEither(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14147 | method public java.util.concurrent.CompletableFuture<java.lang.Void> runAfterEitherAsync(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14148 | method public java.util.concurrent.CompletableFuture<java.lang.Void> runAfterEitherAsync(java.util.concurrent.CompletionStage<?>, Runnable, java.util.concurrent.Executor); |
| 14149 | method public static java.util.concurrent.CompletableFuture<java.lang.Void> runAsync(Runnable); |
| 14150 | method public static java.util.concurrent.CompletableFuture<java.lang.Void> runAsync(Runnable, java.util.concurrent.Executor); |
| 14151 | method public static <U> java.util.concurrent.CompletableFuture<U> supplyAsync(java.util.function.Supplier<U>); |
| 14152 | method public static <U> java.util.concurrent.CompletableFuture<U> supplyAsync(java.util.function.Supplier<U>, java.util.concurrent.Executor); |
| 14153 | method public java.util.concurrent.CompletableFuture<java.lang.Void> thenAccept(java.util.function.Consumer<? super T>); |
| 14154 | method public java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.function.Consumer<? super T>); |
| 14155 | method public java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptAsync(java.util.function.Consumer<? super T>, java.util.concurrent.Executor); |
| 14156 | method public <U> java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptBoth(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiConsumer<? super T,? super U>); |
| 14157 | method public <U> java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptBothAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiConsumer<? super T,? super U>); |
| 14158 | method public <U> java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptBothAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiConsumer<? super T,? super U>, java.util.concurrent.Executor); |
| 14159 | method public <U> java.util.concurrent.CompletableFuture<U> thenApply(java.util.function.Function<? super T,? extends U>); |
| 14160 | method public <U> java.util.concurrent.CompletableFuture<U> thenApplyAsync(java.util.function.Function<? super T,? extends U>); |
| 14161 | method public <U> java.util.concurrent.CompletableFuture<U> thenApplyAsync(java.util.function.Function<? super T,? extends U>, java.util.concurrent.Executor); |
| 14162 | method public <U, V> java.util.concurrent.CompletableFuture<V> thenCombine(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiFunction<? super T,? super U,? extends V>); |
| 14163 | method public <U, V> java.util.concurrent.CompletableFuture<V> thenCombineAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiFunction<? super T,? super U,? extends V>); |
| 14164 | method public <U, V> java.util.concurrent.CompletableFuture<V> thenCombineAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiFunction<? super T,? super U,? extends V>, java.util.concurrent.Executor); |
| 14165 | method public <U> java.util.concurrent.CompletableFuture<U> thenCompose(java.util.function.Function<? super T,? extends java.util.concurrent.CompletionStage<U>>); |
| 14166 | method public <U> java.util.concurrent.CompletableFuture<U> thenComposeAsync(java.util.function.Function<? super T,? extends java.util.concurrent.CompletionStage<U>>); |
| 14167 | method public <U> java.util.concurrent.CompletableFuture<U> thenComposeAsync(java.util.function.Function<? super T,? extends java.util.concurrent.CompletionStage<U>>, java.util.concurrent.Executor); |
| 14168 | method public java.util.concurrent.CompletableFuture<java.lang.Void> thenRun(Runnable); |
| 14169 | method public java.util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(Runnable); |
| 14170 | method public java.util.concurrent.CompletableFuture<java.lang.Void> thenRunAsync(Runnable, java.util.concurrent.Executor); |
| 14171 | method public java.util.concurrent.CompletableFuture<T> toCompletableFuture(); |
| 14172 | method public java.util.concurrent.CompletableFuture<T> whenComplete(java.util.function.BiConsumer<? super T,? super java.lang.Throwable>); |
| 14173 | method public java.util.concurrent.CompletableFuture<T> whenCompleteAsync(java.util.function.BiConsumer<? super T,? super java.lang.Throwable>); |
| 14174 | method public java.util.concurrent.CompletableFuture<T> whenCompleteAsync(java.util.function.BiConsumer<? super T,? super java.lang.Throwable>, java.util.concurrent.Executor); |
| 14175 | } |
| 14176 | |
| 14177 | public static interface CompletableFuture.AsynchronousCompletionTask { |
| 14178 | } |
| 14179 | |
| 14180 | public class CompletionException extends java.lang.RuntimeException { |
| 14181 | ctor protected CompletionException(); |
| 14182 | ctor protected CompletionException(String); |
| 14183 | ctor public CompletionException(String, Throwable); |
| 14184 | ctor public CompletionException(Throwable); |
| 14185 | } |
| 14186 | |
| 14187 | public interface CompletionService<V> { |
| 14188 | method public java.util.concurrent.Future<V> poll(); |
| 14189 | method public java.util.concurrent.Future<V> poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14190 | method public java.util.concurrent.Future<V> submit(java.util.concurrent.Callable<V>); |
| 14191 | method public java.util.concurrent.Future<V> submit(Runnable, V); |
| 14192 | method public java.util.concurrent.Future<V> take() throws java.lang.InterruptedException; |
| 14193 | } |
| 14194 | |
| 14195 | public interface CompletionStage<T> { |
| 14196 | method public java.util.concurrent.CompletionStage<java.lang.Void> acceptEither(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Consumer<? super T>); |
| 14197 | method public java.util.concurrent.CompletionStage<java.lang.Void> acceptEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Consumer<? super T>); |
| 14198 | method public java.util.concurrent.CompletionStage<java.lang.Void> acceptEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Consumer<? super T>, java.util.concurrent.Executor); |
| 14199 | method public <U> java.util.concurrent.CompletionStage<U> applyToEither(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Function<? super T,U>); |
| 14200 | method public <U> java.util.concurrent.CompletionStage<U> applyToEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Function<? super T,U>); |
| 14201 | method public <U> java.util.concurrent.CompletionStage<U> applyToEitherAsync(java.util.concurrent.CompletionStage<? extends T>, java.util.function.Function<? super T,U>, java.util.concurrent.Executor); |
| 14202 | method public java.util.concurrent.CompletionStage<T> exceptionally(java.util.function.Function<java.lang.Throwable,? extends T>); |
| 14203 | method public <U> java.util.concurrent.CompletionStage<U> handle(java.util.function.BiFunction<? super T,java.lang.Throwable,? extends U>); |
| 14204 | method public <U> java.util.concurrent.CompletionStage<U> handleAsync(java.util.function.BiFunction<? super T,java.lang.Throwable,? extends U>); |
| 14205 | method public <U> java.util.concurrent.CompletionStage<U> handleAsync(java.util.function.BiFunction<? super T,java.lang.Throwable,? extends U>, java.util.concurrent.Executor); |
| 14206 | method public java.util.concurrent.CompletionStage<java.lang.Void> runAfterBoth(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14207 | method public java.util.concurrent.CompletionStage<java.lang.Void> runAfterBothAsync(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14208 | method public java.util.concurrent.CompletionStage<java.lang.Void> runAfterBothAsync(java.util.concurrent.CompletionStage<?>, Runnable, java.util.concurrent.Executor); |
| 14209 | method public java.util.concurrent.CompletionStage<java.lang.Void> runAfterEither(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14210 | method public java.util.concurrent.CompletionStage<java.lang.Void> runAfterEitherAsync(java.util.concurrent.CompletionStage<?>, Runnable); |
| 14211 | method public java.util.concurrent.CompletionStage<java.lang.Void> runAfterEitherAsync(java.util.concurrent.CompletionStage<?>, Runnable, java.util.concurrent.Executor); |
| 14212 | method public java.util.concurrent.CompletionStage<java.lang.Void> thenAccept(java.util.function.Consumer<? super T>); |
| 14213 | method public java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptAsync(java.util.function.Consumer<? super T>); |
| 14214 | method public java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptAsync(java.util.function.Consumer<? super T>, java.util.concurrent.Executor); |
| 14215 | method public <U> java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptBoth(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiConsumer<? super T,? super U>); |
| 14216 | method public <U> java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptBothAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiConsumer<? super T,? super U>); |
| 14217 | method public <U> java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptBothAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiConsumer<? super T,? super U>, java.util.concurrent.Executor); |
| 14218 | method public <U> java.util.concurrent.CompletionStage<U> thenApply(java.util.function.Function<? super T,? extends U>); |
| 14219 | method public <U> java.util.concurrent.CompletionStage<U> thenApplyAsync(java.util.function.Function<? super T,? extends U>); |
| 14220 | method public <U> java.util.concurrent.CompletionStage<U> thenApplyAsync(java.util.function.Function<? super T,? extends U>, java.util.concurrent.Executor); |
| 14221 | method public <U, V> java.util.concurrent.CompletionStage<V> thenCombine(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiFunction<? super T,? super U,? extends V>); |
| 14222 | method public <U, V> java.util.concurrent.CompletionStage<V> thenCombineAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiFunction<? super T,? super U,? extends V>); |
| 14223 | method public <U, V> java.util.concurrent.CompletionStage<V> thenCombineAsync(java.util.concurrent.CompletionStage<? extends U>, java.util.function.BiFunction<? super T,? super U,? extends V>, java.util.concurrent.Executor); |
| 14224 | method public <U> java.util.concurrent.CompletionStage<U> thenCompose(java.util.function.Function<? super T,? extends java.util.concurrent.CompletionStage<U>>); |
| 14225 | method public <U> java.util.concurrent.CompletionStage<U> thenComposeAsync(java.util.function.Function<? super T,? extends java.util.concurrent.CompletionStage<U>>); |
| 14226 | method public <U> java.util.concurrent.CompletionStage<U> thenComposeAsync(java.util.function.Function<? super T,? extends java.util.concurrent.CompletionStage<U>>, java.util.concurrent.Executor); |
| 14227 | method public java.util.concurrent.CompletionStage<java.lang.Void> thenRun(Runnable); |
| 14228 | method public java.util.concurrent.CompletionStage<java.lang.Void> thenRunAsync(Runnable); |
| 14229 | method public java.util.concurrent.CompletionStage<java.lang.Void> thenRunAsync(Runnable, java.util.concurrent.Executor); |
| 14230 | method public java.util.concurrent.CompletableFuture<T> toCompletableFuture(); |
| 14231 | method public java.util.concurrent.CompletionStage<T> whenComplete(java.util.function.BiConsumer<? super T,? super java.lang.Throwable>); |
| 14232 | method public java.util.concurrent.CompletionStage<T> whenCompleteAsync(java.util.function.BiConsumer<? super T,? super java.lang.Throwable>); |
| 14233 | method public java.util.concurrent.CompletionStage<T> whenCompleteAsync(java.util.function.BiConsumer<? super T,? super java.lang.Throwable>, java.util.concurrent.Executor); |
| 14234 | } |
| 14235 | |
| 14236 | public class ConcurrentHashMap<K, V> extends java.util.AbstractMap<K,V> implements java.util.concurrent.ConcurrentMap<K,V> java.io.Serializable { |
| 14237 | ctor public ConcurrentHashMap(); |
| 14238 | ctor public ConcurrentHashMap(int); |
| 14239 | ctor public ConcurrentHashMap(@NonNull java.util.Map<? extends K,? extends V>); |
| 14240 | ctor public ConcurrentHashMap(int, float); |
| 14241 | ctor public ConcurrentHashMap(int, float, int); |
| 14242 | method public boolean contains(@NonNull Object); |
| 14243 | method @NonNull public java.util.Enumeration<V> elements(); |
| 14244 | method @NonNull public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 14245 | method public void forEach(long, @NonNull java.util.function.BiConsumer<? super K,? super V>); |
| 14246 | method public <U> void forEach(long, @NonNull java.util.function.BiFunction<? super K,? super V,? extends U>, @NonNull java.util.function.Consumer<? super U>); |
| 14247 | method public void forEachEntry(long, @NonNull java.util.function.Consumer<? super java.util.Map.Entry<K,V>>); |
| 14248 | method public <U> void forEachEntry(long, @NonNull java.util.function.Function<java.util.Map.Entry<K,V>,? extends U>, @NonNull java.util.function.Consumer<? super U>); |
| 14249 | method public void forEachKey(long, @NonNull java.util.function.Consumer<? super K>); |
| 14250 | method public <U> void forEachKey(long, @NonNull java.util.function.Function<? super K,? extends U>, @NonNull java.util.function.Consumer<? super U>); |
| 14251 | method public void forEachValue(long, @NonNull java.util.function.Consumer<? super V>); |
| 14252 | method public <U> void forEachValue(long, @NonNull java.util.function.Function<? super V,? extends U>, @NonNull java.util.function.Consumer<? super U>); |
| 14253 | method @NonNull public java.util.concurrent.ConcurrentHashMap.KeySetView<K,V> keySet(@NonNull V); |
| 14254 | method @NonNull public java.util.Enumeration<K> keys(); |
| 14255 | method public long mappingCount(); |
| 14256 | method @NonNull public static <K> java.util.concurrent.ConcurrentHashMap.KeySetView<K,java.lang.Boolean> newKeySet(); |
| 14257 | method @NonNull public static <K> java.util.concurrent.ConcurrentHashMap.KeySetView<K,java.lang.Boolean> newKeySet(int); |
| 14258 | method @Nullable public <U> U reduce(long, @NonNull java.util.function.BiFunction<? super K,? super V,? extends U>, @NonNull java.util.function.BiFunction<? super U,? super U,? extends U>); |
| 14259 | method @Nullable public java.util.Map.Entry<K,V> reduceEntries(long, @NonNull java.util.function.BiFunction<java.util.Map.Entry<K,V>,java.util.Map.Entry<K,V>,? extends java.util.Map.Entry<K,V>>); |
| 14260 | method @Nullable public <U> U reduceEntries(long, @NonNull java.util.function.Function<java.util.Map.Entry<K,V>,? extends U>, @NonNull java.util.function.BiFunction<? super U,? super U,? extends U>); |
| 14261 | method public double reduceEntriesToDouble(long, @NonNull java.util.function.ToDoubleFunction<java.util.Map.Entry<K,V>>, double, @NonNull java.util.function.DoubleBinaryOperator); |
| 14262 | method public int reduceEntriesToInt(long, @NonNull java.util.function.ToIntFunction<java.util.Map.Entry<K,V>>, int, @NonNull java.util.function.IntBinaryOperator); |
| 14263 | method public long reduceEntriesToLong(long, @NonNull java.util.function.ToLongFunction<java.util.Map.Entry<K,V>>, long, @NonNull java.util.function.LongBinaryOperator); |
| 14264 | method @Nullable public K reduceKeys(long, @NonNull java.util.function.BiFunction<? super K,? super K,? extends K>); |
| 14265 | method @Nullable public <U> U reduceKeys(long, @NonNull java.util.function.Function<? super K,? extends U>, @NonNull java.util.function.BiFunction<? super U,? super U,? extends U>); |
| 14266 | method public double reduceKeysToDouble(long, @NonNull java.util.function.ToDoubleFunction<? super K>, double, @NonNull java.util.function.DoubleBinaryOperator); |
| 14267 | method public int reduceKeysToInt(long, @NonNull java.util.function.ToIntFunction<? super K>, int, @NonNull java.util.function.IntBinaryOperator); |
| 14268 | method public long reduceKeysToLong(long, @NonNull java.util.function.ToLongFunction<? super K>, long, @NonNull java.util.function.LongBinaryOperator); |
| 14269 | method public double reduceToDouble(long, @NonNull java.util.function.ToDoubleBiFunction<? super K,? super V>, double, @NonNull java.util.function.DoubleBinaryOperator); |
| 14270 | method public int reduceToInt(long, @NonNull java.util.function.ToIntBiFunction<? super K,? super V>, int, @NonNull java.util.function.IntBinaryOperator); |
| 14271 | method public long reduceToLong(long, @NonNull java.util.function.ToLongBiFunction<? super K,? super V>, long, @NonNull java.util.function.LongBinaryOperator); |
| 14272 | method @Nullable public V reduceValues(long, @NonNull java.util.function.BiFunction<? super V,? super V,? extends V>); |
| 14273 | method @Nullable public <U> U reduceValues(long, @NonNull java.util.function.Function<? super V,? extends U>, @NonNull java.util.function.BiFunction<? super U,? super U,? extends U>); |
| 14274 | method public double reduceValuesToDouble(long, @NonNull java.util.function.ToDoubleFunction<? super V>, double, @NonNull java.util.function.DoubleBinaryOperator); |
| 14275 | method public int reduceValuesToInt(long, @NonNull java.util.function.ToIntFunction<? super V>, int, @NonNull java.util.function.IntBinaryOperator); |
| 14276 | method public long reduceValuesToLong(long, @NonNull java.util.function.ToLongFunction<? super V>, long, @NonNull java.util.function.LongBinaryOperator); |
| 14277 | method @Nullable public <U> U search(long, @NonNull java.util.function.BiFunction<? super K,? super V,? extends U>); |
| 14278 | method @Nullable public <U> U searchEntries(long, @NonNull java.util.function.Function<java.util.Map.Entry<K,V>,? extends U>); |
| 14279 | method @Nullable public <U> U searchKeys(long, @NonNull java.util.function.Function<? super K,? extends U>); |
| 14280 | method @Nullable public <U> U searchValues(long, @NonNull java.util.function.Function<? super V,? extends U>); |
| 14281 | } |
| 14282 | |
| 14283 | public static class ConcurrentHashMap.KeySetView<K, V> implements java.util.Collection<K> java.io.Serializable java.util.Set<K> { |
| 14284 | method public boolean add(@NonNull K); |
| 14285 | method public boolean addAll(@NonNull java.util.Collection<? extends K>); |
| 14286 | method public final void clear(); |
| 14287 | method public boolean contains(@NonNull Object); |
| 14288 | method public final boolean containsAll(@NonNull java.util.Collection<?>); |
| 14289 | method public void forEach(@NonNull java.util.function.Consumer<? super K>); |
| 14290 | method @NonNull public java.util.concurrent.ConcurrentHashMap<K,V> getMap(); |
| 14291 | method @Nullable public V getMappedValue(); |
| 14292 | method public final boolean isEmpty(); |
| 14293 | method @NonNull public java.util.Iterator<K> iterator(); |
| 14294 | method public boolean remove(@NonNull Object); |
| 14295 | method public final boolean removeAll(@NonNull java.util.Collection<?>); |
| 14296 | method public final boolean retainAll(@NonNull java.util.Collection<?>); |
| 14297 | method public final int size(); |
| 14298 | method @NonNull public java.util.Spliterator<K> spliterator(); |
| 14299 | method @NonNull public final Object[] toArray(); |
| 14300 | method @NonNull public final <T> T[] toArray(@NonNull T[]); |
| 14301 | method @NonNull public final String toString(); |
| 14302 | } |
| 14303 | |
| 14304 | public class ConcurrentLinkedDeque<E> extends java.util.AbstractCollection<E> implements java.util.Deque<E> java.io.Serializable { |
| 14305 | ctor public ConcurrentLinkedDeque(); |
| 14306 | ctor public ConcurrentLinkedDeque(java.util.Collection<? extends E>); |
| 14307 | method public void addFirst(E); |
| 14308 | method public void addLast(E); |
| 14309 | method public java.util.Iterator<E> descendingIterator(); |
| 14310 | method public E element(); |
| 14311 | method public E getFirst(); |
| 14312 | method public E getLast(); |
| 14313 | method public java.util.Iterator<E> iterator(); |
| 14314 | method public boolean offer(E); |
| 14315 | method public boolean offerFirst(E); |
| 14316 | method public boolean offerLast(E); |
| 14317 | method public E peek(); |
| 14318 | method public E peekFirst(); |
| 14319 | method public E peekLast(); |
| 14320 | method public E poll(); |
| 14321 | method public E pollFirst(); |
| 14322 | method public E pollLast(); |
| 14323 | method public E pop(); |
| 14324 | method public void push(E); |
| 14325 | method public E remove(); |
| 14326 | method public E removeFirst(); |
| 14327 | method public boolean removeFirstOccurrence(Object); |
| 14328 | method public E removeLast(); |
| 14329 | method public boolean removeLastOccurrence(Object); |
| 14330 | method public int size(); |
| 14331 | } |
| 14332 | |
| 14333 | public class ConcurrentLinkedQueue<E> extends java.util.AbstractQueue<E> implements java.util.Queue<E> java.io.Serializable { |
| 14334 | ctor public ConcurrentLinkedQueue(); |
| 14335 | ctor public ConcurrentLinkedQueue(java.util.Collection<? extends E>); |
| 14336 | method public java.util.Iterator<E> iterator(); |
| 14337 | method public boolean offer(E); |
| 14338 | method public E peek(); |
| 14339 | method public E poll(); |
| 14340 | method public int size(); |
| 14341 | } |
| 14342 | |
| 14343 | public interface ConcurrentMap<K, V> extends java.util.Map<K,V> { |
| 14344 | method public V putIfAbsent(K, V); |
| 14345 | method public boolean remove(Object, Object); |
| 14346 | method public boolean replace(K, V, V); |
| 14347 | method public V replace(K, V); |
| 14348 | } |
| 14349 | |
| 14350 | public interface ConcurrentNavigableMap<K, V> extends java.util.concurrent.ConcurrentMap<K,V> java.util.NavigableMap<K,V> { |
| 14351 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> descendingMap(); |
| 14352 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> headMap(K, boolean); |
| 14353 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> headMap(K); |
| 14354 | method public java.util.NavigableSet<K> keySet(); |
| 14355 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> subMap(K, boolean, K, boolean); |
| 14356 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> subMap(K, K); |
| 14357 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> tailMap(K, boolean); |
| 14358 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> tailMap(K); |
| 14359 | } |
| 14360 | |
| 14361 | public class ConcurrentSkipListMap<K, V> extends java.util.AbstractMap<K,V> implements java.lang.Cloneable java.util.concurrent.ConcurrentNavigableMap<K,V> java.io.Serializable { |
| 14362 | ctor public ConcurrentSkipListMap(); |
| 14363 | ctor public ConcurrentSkipListMap(java.util.Comparator<? super K>); |
| 14364 | ctor public ConcurrentSkipListMap(java.util.Map<? extends K,? extends V>); |
| 14365 | ctor public ConcurrentSkipListMap(java.util.SortedMap<K,? extends V>); |
| 14366 | method public java.util.Map.Entry<K,V> ceilingEntry(K); |
| 14367 | method public K ceilingKey(K); |
| 14368 | method public java.util.concurrent.ConcurrentSkipListMap<K,V> clone(); |
| 14369 | method public java.util.Comparator<? super K> comparator(); |
| 14370 | method public java.util.NavigableSet<K> descendingKeySet(); |
| 14371 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> descendingMap(); |
| 14372 | method public java.util.Set<java.util.Map.Entry<K,V>> entrySet(); |
| 14373 | method public java.util.Map.Entry<K,V> firstEntry(); |
| 14374 | method public K firstKey(); |
| 14375 | method public java.util.Map.Entry<K,V> floorEntry(K); |
| 14376 | method public K floorKey(K); |
| 14377 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> headMap(K, boolean); |
| 14378 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> headMap(K); |
| 14379 | method public java.util.Map.Entry<K,V> higherEntry(K); |
| 14380 | method public K higherKey(K); |
| 14381 | method public java.util.NavigableSet<K> keySet(); |
| 14382 | method public java.util.Map.Entry<K,V> lastEntry(); |
| 14383 | method public K lastKey(); |
| 14384 | method public java.util.Map.Entry<K,V> lowerEntry(K); |
| 14385 | method public K lowerKey(K); |
| 14386 | method public java.util.NavigableSet<K> navigableKeySet(); |
| 14387 | method public java.util.Map.Entry<K,V> pollFirstEntry(); |
| 14388 | method public java.util.Map.Entry<K,V> pollLastEntry(); |
| 14389 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> subMap(K, boolean, K, boolean); |
| 14390 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> subMap(K, K); |
| 14391 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> tailMap(K, boolean); |
| 14392 | method public java.util.concurrent.ConcurrentNavigableMap<K,V> tailMap(K); |
| 14393 | } |
| 14394 | |
| 14395 | public class ConcurrentSkipListSet<E> extends java.util.AbstractSet<E> implements java.lang.Cloneable java.util.NavigableSet<E> java.io.Serializable { |
| 14396 | ctor public ConcurrentSkipListSet(); |
| 14397 | ctor public ConcurrentSkipListSet(java.util.Comparator<? super E>); |
| 14398 | ctor public ConcurrentSkipListSet(java.util.Collection<? extends E>); |
| 14399 | ctor public ConcurrentSkipListSet(java.util.SortedSet<E>); |
| 14400 | method public E ceiling(E); |
| 14401 | method public java.util.concurrent.ConcurrentSkipListSet<E> clone(); |
| 14402 | method public java.util.Comparator<? super E> comparator(); |
| 14403 | method public java.util.Iterator<E> descendingIterator(); |
| 14404 | method public java.util.NavigableSet<E> descendingSet(); |
| 14405 | method public E first(); |
| 14406 | method public E floor(E); |
| 14407 | method public java.util.NavigableSet<E> headSet(E, boolean); |
| 14408 | method public java.util.NavigableSet<E> headSet(E); |
| 14409 | method public E higher(E); |
| 14410 | method public java.util.Iterator<E> iterator(); |
| 14411 | method public E last(); |
| 14412 | method public E lower(E); |
| 14413 | method public E pollFirst(); |
| 14414 | method public E pollLast(); |
| 14415 | method public int size(); |
| 14416 | method public java.util.NavigableSet<E> subSet(E, boolean, E, boolean); |
| 14417 | method public java.util.NavigableSet<E> subSet(E, E); |
| 14418 | method public java.util.NavigableSet<E> tailSet(E, boolean); |
| 14419 | method public java.util.NavigableSet<E> tailSet(E); |
| 14420 | } |
| 14421 | |
| 14422 | public class CopyOnWriteArrayList<E> implements java.lang.Cloneable java.util.List<E> java.util.RandomAccess java.io.Serializable { |
| 14423 | ctor public CopyOnWriteArrayList(); |
| 14424 | ctor public CopyOnWriteArrayList(@NonNull java.util.Collection<? extends E>); |
| 14425 | ctor public CopyOnWriteArrayList(@NonNull E[]); |
| 14426 | method public boolean add(E); |
| 14427 | method public void add(int, E); |
| 14428 | method public boolean addAll(@NonNull java.util.Collection<? extends E>); |
| 14429 | method public boolean addAll(int, @NonNull java.util.Collection<? extends E>); |
| 14430 | method public int addAllAbsent(@NonNull java.util.Collection<? extends E>); |
| 14431 | method public boolean addIfAbsent(E); |
| 14432 | method public void clear(); |
| 14433 | method @NonNull public Object clone(); |
| 14434 | method public boolean contains(@Nullable Object); |
| 14435 | method public boolean containsAll(@NonNull java.util.Collection<?>); |
| 14436 | method public void forEach(@NonNull java.util.function.Consumer<? super E>); |
| 14437 | method public E get(int); |
| 14438 | method public int indexOf(@Nullable Object); |
| 14439 | method public int indexOf(@Nullable E, int); |
| 14440 | method public boolean isEmpty(); |
| 14441 | method @NonNull public java.util.Iterator<E> iterator(); |
| 14442 | method public int lastIndexOf(@Nullable Object); |
| 14443 | method public int lastIndexOf(@Nullable E, int); |
| 14444 | method @NonNull public java.util.ListIterator<E> listIterator(); |
| 14445 | method @NonNull public java.util.ListIterator<E> listIterator(int); |
| 14446 | method public E remove(int); |
| 14447 | method public boolean remove(@Nullable Object); |
| 14448 | method public boolean removeAll(@NonNull java.util.Collection<?>); |
| 14449 | method public boolean retainAll(@NonNull java.util.Collection<?>); |
| 14450 | method public E set(int, E); |
| 14451 | method public int size(); |
| 14452 | method @NonNull public java.util.List<E> subList(int, int); |
| 14453 | method @NonNull public Object[] toArray(); |
| 14454 | method @NonNull public <T> T[] toArray(@NonNull T[]); |
| 14455 | } |
| 14456 | |
| 14457 | public class CopyOnWriteArraySet<E> extends java.util.AbstractSet<E> implements java.io.Serializable { |
| 14458 | ctor public CopyOnWriteArraySet(); |
| 14459 | ctor public CopyOnWriteArraySet(java.util.Collection<? extends E>); |
| 14460 | method public void forEach(java.util.function.Consumer<? super E>); |
| 14461 | method public java.util.Iterator<E> iterator(); |
| 14462 | method public int size(); |
| 14463 | } |
| 14464 | |
| 14465 | public class CountDownLatch { |
| 14466 | ctor public CountDownLatch(int); |
| 14467 | method public void await() throws java.lang.InterruptedException; |
| 14468 | method public boolean await(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14469 | method public void countDown(); |
| 14470 | method public long getCount(); |
| 14471 | } |
| 14472 | |
| 14473 | public abstract class CountedCompleter<T> extends java.util.concurrent.ForkJoinTask<T> { |
| 14474 | ctor protected CountedCompleter(java.util.concurrent.CountedCompleter<?>, int); |
| 14475 | ctor protected CountedCompleter(java.util.concurrent.CountedCompleter<?>); |
| 14476 | ctor protected CountedCompleter(); |
| 14477 | method public final void addToPendingCount(int); |
| 14478 | method public final boolean compareAndSetPendingCount(int, int); |
| 14479 | method public void complete(T); |
| 14480 | method public abstract void compute(); |
| 14481 | method public final int decrementPendingCountUnlessZero(); |
| 14482 | method protected final boolean exec(); |
| 14483 | method public final java.util.concurrent.CountedCompleter<?> firstComplete(); |
| 14484 | method public final java.util.concurrent.CountedCompleter<?> getCompleter(); |
| 14485 | method public final int getPendingCount(); |
| 14486 | method public T getRawResult(); |
| 14487 | method public final java.util.concurrent.CountedCompleter<?> getRoot(); |
| 14488 | method public final void helpComplete(int); |
| 14489 | method public final java.util.concurrent.CountedCompleter<?> nextComplete(); |
| 14490 | method public void onCompletion(java.util.concurrent.CountedCompleter<?>); |
| 14491 | method public boolean onExceptionalCompletion(Throwable, java.util.concurrent.CountedCompleter<?>); |
| 14492 | method public final void propagateCompletion(); |
| 14493 | method public final void quietlyCompleteRoot(); |
| 14494 | method public final void setPendingCount(int); |
| 14495 | method protected void setRawResult(T); |
| 14496 | method public final void tryComplete(); |
| 14497 | } |
| 14498 | |
| 14499 | public class CyclicBarrier { |
| 14500 | ctor public CyclicBarrier(int, Runnable); |
| 14501 | ctor public CyclicBarrier(int); |
| 14502 | method public int await() throws java.util.concurrent.BrokenBarrierException, java.lang.InterruptedException; |
| 14503 | method public int await(long, java.util.concurrent.TimeUnit) throws java.util.concurrent.BrokenBarrierException, java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14504 | method public int getNumberWaiting(); |
| 14505 | method public int getParties(); |
| 14506 | method public boolean isBroken(); |
| 14507 | method public void reset(); |
| 14508 | } |
| 14509 | |
| 14510 | public class DelayQueue<E extends java.util.concurrent.Delayed> extends java.util.AbstractQueue<E> implements java.util.concurrent.BlockingQueue<E> { |
| 14511 | ctor public DelayQueue(); |
| 14512 | ctor public DelayQueue(java.util.Collection<? extends E>); |
| 14513 | method public int drainTo(java.util.Collection<? super E>); |
| 14514 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14515 | method public java.util.Iterator<E> iterator(); |
| 14516 | method public boolean offer(E); |
| 14517 | method public boolean offer(E, long, java.util.concurrent.TimeUnit); |
| 14518 | method public E peek(); |
| 14519 | method public E poll(); |
| 14520 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14521 | method public void put(E); |
| 14522 | method public int remainingCapacity(); |
| 14523 | method public int size(); |
| 14524 | method public E take() throws java.lang.InterruptedException; |
| 14525 | } |
| 14526 | |
| 14527 | public interface Delayed extends java.lang.Comparable<java.util.concurrent.Delayed> { |
| 14528 | method public long getDelay(java.util.concurrent.TimeUnit); |
| 14529 | } |
| 14530 | |
| 14531 | public class Exchanger<V> { |
| 14532 | ctor public Exchanger(); |
| 14533 | method public V exchange(V) throws java.lang.InterruptedException; |
| 14534 | method public V exchange(V, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14535 | } |
| 14536 | |
| 14537 | public class ExecutionException extends java.lang.Exception { |
| 14538 | ctor protected ExecutionException(); |
| 14539 | ctor protected ExecutionException(String); |
| 14540 | ctor public ExecutionException(String, Throwable); |
| 14541 | ctor public ExecutionException(Throwable); |
| 14542 | } |
| 14543 | |
| 14544 | public interface Executor { |
| 14545 | method public void execute(Runnable); |
| 14546 | } |
| 14547 | |
| 14548 | public class ExecutorCompletionService<V> implements java.util.concurrent.CompletionService<V> { |
| 14549 | ctor public ExecutorCompletionService(java.util.concurrent.Executor); |
| 14550 | ctor public ExecutorCompletionService(java.util.concurrent.Executor, java.util.concurrent.BlockingQueue<java.util.concurrent.Future<V>>); |
| 14551 | method public java.util.concurrent.Future<V> poll(); |
| 14552 | method public java.util.concurrent.Future<V> poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14553 | method public java.util.concurrent.Future<V> submit(java.util.concurrent.Callable<V>); |
| 14554 | method public java.util.concurrent.Future<V> submit(Runnable, V); |
| 14555 | method public java.util.concurrent.Future<V> take() throws java.lang.InterruptedException; |
| 14556 | } |
| 14557 | |
| 14558 | public interface ExecutorService extends java.util.concurrent.Executor { |
| 14559 | method public boolean awaitTermination(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14560 | method public <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>) throws java.lang.InterruptedException; |
| 14561 | method public <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14562 | method public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>>) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException; |
| 14563 | method public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14564 | method public boolean isShutdown(); |
| 14565 | method public boolean isTerminated(); |
| 14566 | method public void shutdown(); |
| 14567 | method public java.util.List<java.lang.Runnable> shutdownNow(); |
| 14568 | method public <T> java.util.concurrent.Future<T> submit(java.util.concurrent.Callable<T>); |
| 14569 | method public <T> java.util.concurrent.Future<T> submit(Runnable, T); |
| 14570 | method public java.util.concurrent.Future<?> submit(Runnable); |
| 14571 | } |
| 14572 | |
| 14573 | public class Executors { |
| 14574 | method public static <T> java.util.concurrent.Callable<T> callable(Runnable, T); |
| 14575 | method public static java.util.concurrent.Callable<java.lang.Object> callable(Runnable); |
| 14576 | method public static java.util.concurrent.Callable<java.lang.Object> callable(java.security.PrivilegedAction<?>); |
| 14577 | method public static java.util.concurrent.Callable<java.lang.Object> callable(java.security.PrivilegedExceptionAction<?>); |
| 14578 | method public static java.util.concurrent.ThreadFactory defaultThreadFactory(); |
| 14579 | method public static java.util.concurrent.ExecutorService newCachedThreadPool(); |
| 14580 | method public static java.util.concurrent.ExecutorService newCachedThreadPool(java.util.concurrent.ThreadFactory); |
| 14581 | method public static java.util.concurrent.ExecutorService newFixedThreadPool(int); |
| 14582 | method public static java.util.concurrent.ExecutorService newFixedThreadPool(int, java.util.concurrent.ThreadFactory); |
| 14583 | method public static java.util.concurrent.ScheduledExecutorService newScheduledThreadPool(int); |
| 14584 | method public static java.util.concurrent.ScheduledExecutorService newScheduledThreadPool(int, java.util.concurrent.ThreadFactory); |
| 14585 | method public static java.util.concurrent.ExecutorService newSingleThreadExecutor(); |
| 14586 | method public static java.util.concurrent.ExecutorService newSingleThreadExecutor(java.util.concurrent.ThreadFactory); |
| 14587 | method public static java.util.concurrent.ScheduledExecutorService newSingleThreadScheduledExecutor(); |
| 14588 | method public static java.util.concurrent.ScheduledExecutorService newSingleThreadScheduledExecutor(java.util.concurrent.ThreadFactory); |
| 14589 | method public static java.util.concurrent.ExecutorService newWorkStealingPool(int); |
| 14590 | method public static java.util.concurrent.ExecutorService newWorkStealingPool(); |
| 14591 | method public static <T> java.util.concurrent.Callable<T> privilegedCallable(java.util.concurrent.Callable<T>); |
| 14592 | method public static <T> java.util.concurrent.Callable<T> privilegedCallableUsingCurrentClassLoader(java.util.concurrent.Callable<T>); |
| 14593 | method public static java.util.concurrent.ThreadFactory privilegedThreadFactory(); |
| 14594 | method public static java.util.concurrent.ExecutorService unconfigurableExecutorService(java.util.concurrent.ExecutorService); |
| 14595 | method public static java.util.concurrent.ScheduledExecutorService unconfigurableScheduledExecutorService(java.util.concurrent.ScheduledExecutorService); |
| 14596 | } |
| 14597 | |
| 14598 | public final class Flow { |
| 14599 | method public static int defaultBufferSize(); |
| 14600 | } |
| 14601 | |
| 14602 | public static interface Flow.Processor<T, R> extends java.util.concurrent.Flow.Subscriber<T> java.util.concurrent.Flow.Publisher<R> { |
| 14603 | } |
| 14604 | |
| 14605 | @java.lang.FunctionalInterface public static interface Flow.Publisher<T> { |
| 14606 | method public void subscribe(java.util.concurrent.Flow.Subscriber<? super T>); |
| 14607 | } |
| 14608 | |
| 14609 | public static interface Flow.Subscriber<T> { |
| 14610 | method public void onComplete(); |
| 14611 | method public void onError(Throwable); |
| 14612 | method public void onNext(T); |
| 14613 | method public void onSubscribe(java.util.concurrent.Flow.Subscription); |
| 14614 | } |
| 14615 | |
| 14616 | public static interface Flow.Subscription { |
| 14617 | method public void cancel(); |
| 14618 | method public void request(long); |
| 14619 | } |
| 14620 | |
| 14621 | public class ForkJoinPool extends java.util.concurrent.AbstractExecutorService { |
| 14622 | ctor public ForkJoinPool(); |
| 14623 | ctor public ForkJoinPool(int); |
| 14624 | ctor public ForkJoinPool(int, java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory, java.lang.Thread.UncaughtExceptionHandler, boolean); |
| 14625 | method public boolean awaitQuiescence(long, java.util.concurrent.TimeUnit); |
| 14626 | method public boolean awaitTermination(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14627 | method public static java.util.concurrent.ForkJoinPool commonPool(); |
| 14628 | method protected int drainTasksTo(java.util.Collection<? super java.util.concurrent.ForkJoinTask<?>>); |
| 14629 | method public void execute(java.util.concurrent.ForkJoinTask<?>); |
| 14630 | method public void execute(Runnable); |
| 14631 | method public int getActiveThreadCount(); |
| 14632 | method public boolean getAsyncMode(); |
| 14633 | method public static int getCommonPoolParallelism(); |
| 14634 | method public java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory getFactory(); |
| 14635 | method public int getParallelism(); |
| 14636 | method public int getPoolSize(); |
| 14637 | method public int getQueuedSubmissionCount(); |
| 14638 | method public long getQueuedTaskCount(); |
| 14639 | method public int getRunningThreadCount(); |
| 14640 | method public long getStealCount(); |
| 14641 | method public java.lang.Thread.UncaughtExceptionHandler getUncaughtExceptionHandler(); |
| 14642 | method public boolean hasQueuedSubmissions(); |
| 14643 | method public <T> T invoke(java.util.concurrent.ForkJoinTask<T>); |
| 14644 | method public <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>); |
| 14645 | method public boolean isQuiescent(); |
| 14646 | method public boolean isShutdown(); |
| 14647 | method public boolean isTerminated(); |
| 14648 | method public boolean isTerminating(); |
| 14649 | method public static void managedBlock(java.util.concurrent.ForkJoinPool.ManagedBlocker) throws java.lang.InterruptedException; |
| 14650 | method protected java.util.concurrent.ForkJoinTask<?> pollSubmission(); |
| 14651 | method public void shutdown(); |
| 14652 | method public java.util.List<java.lang.Runnable> shutdownNow(); |
| 14653 | method public <T> java.util.concurrent.ForkJoinTask<T> submit(java.util.concurrent.ForkJoinTask<T>); |
| 14654 | method public <T> java.util.concurrent.ForkJoinTask<T> submit(java.util.concurrent.Callable<T>); |
| 14655 | method public <T> java.util.concurrent.ForkJoinTask<T> submit(Runnable, T); |
| 14656 | method public java.util.concurrent.ForkJoinTask<?> submit(Runnable); |
| 14657 | field public static final java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory defaultForkJoinWorkerThreadFactory; |
| 14658 | } |
| 14659 | |
| 14660 | public static interface ForkJoinPool.ForkJoinWorkerThreadFactory { |
| 14661 | method public java.util.concurrent.ForkJoinWorkerThread newThread(java.util.concurrent.ForkJoinPool); |
| 14662 | } |
| 14663 | |
| 14664 | public static interface ForkJoinPool.ManagedBlocker { |
| 14665 | method public boolean block() throws java.lang.InterruptedException; |
| 14666 | method public boolean isReleasable(); |
| 14667 | } |
| 14668 | |
| 14669 | public abstract class ForkJoinTask<V> implements java.util.concurrent.Future<V> java.io.Serializable { |
| 14670 | ctor public ForkJoinTask(); |
| 14671 | method public static java.util.concurrent.ForkJoinTask<?> adapt(Runnable); |
| 14672 | method public static <T> java.util.concurrent.ForkJoinTask<T> adapt(Runnable, T); |
| 14673 | method public static <T> java.util.concurrent.ForkJoinTask<T> adapt(java.util.concurrent.Callable<? extends T>); |
| 14674 | method public boolean cancel(boolean); |
| 14675 | method public final boolean compareAndSetForkJoinTaskTag(short, short); |
| 14676 | method public void complete(V); |
| 14677 | method public void completeExceptionally(Throwable); |
| 14678 | method protected abstract boolean exec(); |
| 14679 | method public final java.util.concurrent.ForkJoinTask<V> fork(); |
| 14680 | method public final V get() throws java.util.concurrent.ExecutionException, java.lang.InterruptedException; |
| 14681 | method public final V get(long, java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14682 | method public final Throwable getException(); |
| 14683 | method public final short getForkJoinTaskTag(); |
| 14684 | method public static java.util.concurrent.ForkJoinPool getPool(); |
| 14685 | method public static int getQueuedTaskCount(); |
| 14686 | method public abstract V getRawResult(); |
| 14687 | method public static int getSurplusQueuedTaskCount(); |
| 14688 | method public static void helpQuiesce(); |
| 14689 | method public static boolean inForkJoinPool(); |
| 14690 | method public final V invoke(); |
| 14691 | method public static void invokeAll(java.util.concurrent.ForkJoinTask<?>, java.util.concurrent.ForkJoinTask<?>); |
| 14692 | method public static void invokeAll(java.util.concurrent.ForkJoinTask<?>...); |
| 14693 | method public static <T extends java.util.concurrent.ForkJoinTask<?>> java.util.Collection<T> invokeAll(java.util.Collection<T>); |
| 14694 | method public final boolean isCancelled(); |
| 14695 | method public final boolean isCompletedAbnormally(); |
| 14696 | method public final boolean isCompletedNormally(); |
| 14697 | method public final boolean isDone(); |
| 14698 | method public final V join(); |
| 14699 | method protected static java.util.concurrent.ForkJoinTask<?> peekNextLocalTask(); |
| 14700 | method protected static java.util.concurrent.ForkJoinTask<?> pollNextLocalTask(); |
| 14701 | method protected static java.util.concurrent.ForkJoinTask<?> pollTask(); |
| 14702 | method public final void quietlyComplete(); |
| 14703 | method public final void quietlyInvoke(); |
| 14704 | method public final void quietlyJoin(); |
| 14705 | method public void reinitialize(); |
| 14706 | method public final short setForkJoinTaskTag(short); |
| 14707 | method protected abstract void setRawResult(V); |
| 14708 | method public boolean tryUnfork(); |
| 14709 | } |
| 14710 | |
| 14711 | public class ForkJoinWorkerThread extends java.lang.Thread { |
| 14712 | ctor protected ForkJoinWorkerThread(java.util.concurrent.ForkJoinPool); |
| 14713 | method public java.util.concurrent.ForkJoinPool getPool(); |
| 14714 | method public int getPoolIndex(); |
| 14715 | method protected void onStart(); |
| 14716 | method protected void onTermination(Throwable); |
| 14717 | } |
| 14718 | |
| 14719 | public interface Future<V> { |
| 14720 | method public boolean cancel(boolean); |
| 14721 | method public V get() throws java.util.concurrent.ExecutionException, java.lang.InterruptedException; |
| 14722 | method public V get(long, java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14723 | method public boolean isCancelled(); |
| 14724 | method public boolean isDone(); |
| 14725 | } |
| 14726 | |
| 14727 | public class FutureTask<V> implements java.util.concurrent.RunnableFuture<V> { |
| 14728 | ctor public FutureTask(java.util.concurrent.Callable<V>); |
| 14729 | ctor public FutureTask(Runnable, V); |
| 14730 | method public boolean cancel(boolean); |
| 14731 | method protected void done(); |
| 14732 | method public V get() throws java.util.concurrent.ExecutionException, java.lang.InterruptedException; |
| 14733 | method public V get(long, java.util.concurrent.TimeUnit) throws java.util.concurrent.ExecutionException, java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14734 | method public boolean isCancelled(); |
| 14735 | method public boolean isDone(); |
| 14736 | method public void run(); |
| 14737 | method protected boolean runAndReset(); |
| 14738 | method protected void set(V); |
| 14739 | method protected void setException(Throwable); |
| 14740 | } |
| 14741 | |
| 14742 | public class LinkedBlockingDeque<E> extends java.util.AbstractQueue<E> implements java.util.concurrent.BlockingDeque<E> java.io.Serializable { |
| 14743 | ctor public LinkedBlockingDeque(); |
| 14744 | ctor public LinkedBlockingDeque(int); |
| 14745 | ctor public LinkedBlockingDeque(java.util.Collection<? extends E>); |
| 14746 | method public void addFirst(E); |
| 14747 | method public void addLast(E); |
| 14748 | method public java.util.Iterator<E> descendingIterator(); |
| 14749 | method public int drainTo(java.util.Collection<? super E>); |
| 14750 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14751 | method public E getFirst(); |
| 14752 | method public E getLast(); |
| 14753 | method public java.util.Iterator<E> iterator(); |
| 14754 | method public boolean offer(E); |
| 14755 | method public boolean offer(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14756 | method public boolean offerFirst(E); |
| 14757 | method public boolean offerFirst(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14758 | method public boolean offerLast(E); |
| 14759 | method public boolean offerLast(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14760 | method public E peek(); |
| 14761 | method public E peekFirst(); |
| 14762 | method public E peekLast(); |
| 14763 | method public E poll(); |
| 14764 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14765 | method public E pollFirst(); |
| 14766 | method public E pollFirst(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14767 | method public E pollLast(); |
| 14768 | method public E pollLast(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14769 | method public E pop(); |
| 14770 | method public void push(E); |
| 14771 | method public void put(E) throws java.lang.InterruptedException; |
| 14772 | method public void putFirst(E) throws java.lang.InterruptedException; |
| 14773 | method public void putLast(E) throws java.lang.InterruptedException; |
| 14774 | method public int remainingCapacity(); |
| 14775 | method public E removeFirst(); |
| 14776 | method public boolean removeFirstOccurrence(Object); |
| 14777 | method public E removeLast(); |
| 14778 | method public boolean removeLastOccurrence(Object); |
| 14779 | method public int size(); |
| 14780 | method public E take() throws java.lang.InterruptedException; |
| 14781 | method public E takeFirst() throws java.lang.InterruptedException; |
| 14782 | method public E takeLast() throws java.lang.InterruptedException; |
| 14783 | } |
| 14784 | |
| 14785 | public class LinkedBlockingQueue<E> extends java.util.AbstractQueue<E> implements java.util.concurrent.BlockingQueue<E> java.io.Serializable { |
| 14786 | ctor public LinkedBlockingQueue(); |
| 14787 | ctor public LinkedBlockingQueue(int); |
| 14788 | ctor public LinkedBlockingQueue(java.util.Collection<? extends E>); |
| 14789 | method public int drainTo(java.util.Collection<? super E>); |
| 14790 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14791 | method public java.util.Iterator<E> iterator(); |
| 14792 | method public boolean offer(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14793 | method public boolean offer(E); |
| 14794 | method public E peek(); |
| 14795 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14796 | method public E poll(); |
| 14797 | method public void put(E) throws java.lang.InterruptedException; |
| 14798 | method public int remainingCapacity(); |
| 14799 | method public int size(); |
| 14800 | method public E take() throws java.lang.InterruptedException; |
| 14801 | } |
| 14802 | |
| 14803 | public class LinkedTransferQueue<E> extends java.util.AbstractQueue<E> implements java.io.Serializable java.util.concurrent.TransferQueue<E> { |
| 14804 | ctor public LinkedTransferQueue(); |
| 14805 | ctor public LinkedTransferQueue(java.util.Collection<? extends E>); |
| 14806 | method public int drainTo(java.util.Collection<? super E>); |
| 14807 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14808 | method public int getWaitingConsumerCount(); |
| 14809 | method public boolean hasWaitingConsumer(); |
| 14810 | method public java.util.Iterator<E> iterator(); |
| 14811 | method public boolean offer(E, long, java.util.concurrent.TimeUnit); |
| 14812 | method public boolean offer(E); |
| 14813 | method public E peek(); |
| 14814 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14815 | method public E poll(); |
| 14816 | method public void put(E); |
| 14817 | method public int remainingCapacity(); |
| 14818 | method public int size(); |
| 14819 | method public E take() throws java.lang.InterruptedException; |
| 14820 | method public void transfer(E) throws java.lang.InterruptedException; |
| 14821 | method public boolean tryTransfer(E); |
| 14822 | method public boolean tryTransfer(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14823 | } |
| 14824 | |
| 14825 | public class Phaser { |
| 14826 | ctor public Phaser(); |
| 14827 | ctor public Phaser(int); |
| 14828 | ctor public Phaser(java.util.concurrent.Phaser); |
| 14829 | ctor public Phaser(java.util.concurrent.Phaser, int); |
| 14830 | method public int arrive(); |
| 14831 | method public int arriveAndAwaitAdvance(); |
| 14832 | method public int arriveAndDeregister(); |
| 14833 | method public int awaitAdvance(int); |
| 14834 | method public int awaitAdvanceInterruptibly(int) throws java.lang.InterruptedException; |
| 14835 | method public int awaitAdvanceInterruptibly(int, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException, java.util.concurrent.TimeoutException; |
| 14836 | method public int bulkRegister(int); |
| 14837 | method public void forceTermination(); |
| 14838 | method public int getArrivedParties(); |
| 14839 | method public java.util.concurrent.Phaser getParent(); |
| 14840 | method public final int getPhase(); |
| 14841 | method public int getRegisteredParties(); |
| 14842 | method public java.util.concurrent.Phaser getRoot(); |
| 14843 | method public int getUnarrivedParties(); |
| 14844 | method public boolean isTerminated(); |
| 14845 | method protected boolean onAdvance(int, int); |
| 14846 | method public int register(); |
| 14847 | } |
| 14848 | |
| 14849 | public class PriorityBlockingQueue<E> extends java.util.AbstractQueue<E> implements java.util.concurrent.BlockingQueue<E> java.io.Serializable { |
| 14850 | ctor public PriorityBlockingQueue(); |
| 14851 | ctor public PriorityBlockingQueue(int); |
| 14852 | ctor public PriorityBlockingQueue(int, java.util.Comparator<? super E>); |
| 14853 | ctor public PriorityBlockingQueue(java.util.Collection<? extends E>); |
| 14854 | method public java.util.Comparator<? super E> comparator(); |
| 14855 | method public int drainTo(java.util.Collection<? super E>); |
| 14856 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14857 | method public java.util.Iterator<E> iterator(); |
| 14858 | method public boolean offer(E); |
| 14859 | method public boolean offer(E, long, java.util.concurrent.TimeUnit); |
| 14860 | method public E peek(); |
| 14861 | method public E poll(); |
| 14862 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14863 | method public void put(E); |
| 14864 | method public int remainingCapacity(); |
| 14865 | method public int size(); |
| 14866 | method public E take() throws java.lang.InterruptedException; |
| 14867 | } |
| 14868 | |
| 14869 | public abstract class RecursiveAction extends java.util.concurrent.ForkJoinTask<java.lang.Void> { |
| 14870 | ctor public RecursiveAction(); |
| 14871 | method protected abstract void compute(); |
| 14872 | method protected final boolean exec(); |
| 14873 | method public final Void getRawResult(); |
| 14874 | method protected final void setRawResult(Void); |
| 14875 | } |
| 14876 | |
| 14877 | public abstract class RecursiveTask<V> extends java.util.concurrent.ForkJoinTask<V> { |
| 14878 | ctor public RecursiveTask(); |
| 14879 | method protected abstract V compute(); |
| 14880 | method protected final boolean exec(); |
| 14881 | method public final V getRawResult(); |
| 14882 | method protected final void setRawResult(V); |
| 14883 | } |
| 14884 | |
| 14885 | public class RejectedExecutionException extends java.lang.RuntimeException { |
| 14886 | ctor public RejectedExecutionException(); |
| 14887 | ctor public RejectedExecutionException(String); |
| 14888 | ctor public RejectedExecutionException(String, Throwable); |
| 14889 | ctor public RejectedExecutionException(Throwable); |
| 14890 | } |
| 14891 | |
| 14892 | public interface RejectedExecutionHandler { |
| 14893 | method public void rejectedExecution(Runnable, java.util.concurrent.ThreadPoolExecutor); |
| 14894 | } |
| 14895 | |
| 14896 | public interface RunnableFuture<V> extends java.lang.Runnable java.util.concurrent.Future<V> { |
| 14897 | } |
| 14898 | |
| 14899 | public interface RunnableScheduledFuture<V> extends java.util.concurrent.RunnableFuture<V> java.util.concurrent.ScheduledFuture<V> { |
| 14900 | method public boolean isPeriodic(); |
| 14901 | } |
| 14902 | |
| 14903 | public interface ScheduledExecutorService extends java.util.concurrent.ExecutorService { |
| 14904 | method public java.util.concurrent.ScheduledFuture<?> schedule(Runnable, long, java.util.concurrent.TimeUnit); |
| 14905 | method public <V> java.util.concurrent.ScheduledFuture<V> schedule(java.util.concurrent.Callable<V>, long, java.util.concurrent.TimeUnit); |
| 14906 | method public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate(Runnable, long, long, java.util.concurrent.TimeUnit); |
| 14907 | method public java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay(Runnable, long, long, java.util.concurrent.TimeUnit); |
| 14908 | } |
| 14909 | |
| 14910 | public interface ScheduledFuture<V> extends java.util.concurrent.Delayed java.util.concurrent.Future<V> { |
| 14911 | } |
| 14912 | |
| 14913 | public class ScheduledThreadPoolExecutor extends java.util.concurrent.ThreadPoolExecutor implements java.util.concurrent.ScheduledExecutorService { |
| 14914 | ctor public ScheduledThreadPoolExecutor(int); |
| 14915 | ctor public ScheduledThreadPoolExecutor(int, java.util.concurrent.ThreadFactory); |
| 14916 | ctor public ScheduledThreadPoolExecutor(int, java.util.concurrent.RejectedExecutionHandler); |
| 14917 | ctor public ScheduledThreadPoolExecutor(int, java.util.concurrent.ThreadFactory, java.util.concurrent.RejectedExecutionHandler); |
| 14918 | method protected <V> java.util.concurrent.RunnableScheduledFuture<V> decorateTask(Runnable, java.util.concurrent.RunnableScheduledFuture<V>); |
| 14919 | method protected <V> java.util.concurrent.RunnableScheduledFuture<V> decorateTask(java.util.concurrent.Callable<V>, java.util.concurrent.RunnableScheduledFuture<V>); |
| 14920 | method public boolean getContinueExistingPeriodicTasksAfterShutdownPolicy(); |
| 14921 | method public boolean getExecuteExistingDelayedTasksAfterShutdownPolicy(); |
| 14922 | method public boolean getRemoveOnCancelPolicy(); |
| 14923 | method public java.util.concurrent.ScheduledFuture<?> schedule(Runnable, long, java.util.concurrent.TimeUnit); |
| 14924 | method public <V> java.util.concurrent.ScheduledFuture<V> schedule(java.util.concurrent.Callable<V>, long, java.util.concurrent.TimeUnit); |
| 14925 | method public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate(Runnable, long, long, java.util.concurrent.TimeUnit); |
| 14926 | method public java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay(Runnable, long, long, java.util.concurrent.TimeUnit); |
| 14927 | method public void setContinueExistingPeriodicTasksAfterShutdownPolicy(boolean); |
| 14928 | method public void setExecuteExistingDelayedTasksAfterShutdownPolicy(boolean); |
| 14929 | method public void setRemoveOnCancelPolicy(boolean); |
| 14930 | } |
| 14931 | |
| 14932 | public class Semaphore implements java.io.Serializable { |
| 14933 | ctor public Semaphore(int); |
| 14934 | ctor public Semaphore(int, boolean); |
| 14935 | method public void acquire() throws java.lang.InterruptedException; |
| 14936 | method public void acquire(int) throws java.lang.InterruptedException; |
| 14937 | method public void acquireUninterruptibly(); |
| 14938 | method public void acquireUninterruptibly(int); |
| 14939 | method public int availablePermits(); |
| 14940 | method public int drainPermits(); |
| 14941 | method public final int getQueueLength(); |
| 14942 | method protected java.util.Collection<java.lang.Thread> getQueuedThreads(); |
| 14943 | method public final boolean hasQueuedThreads(); |
| 14944 | method public boolean isFair(); |
| 14945 | method protected void reducePermits(int); |
| 14946 | method public void release(); |
| 14947 | method public void release(int); |
| 14948 | method public boolean tryAcquire(); |
| 14949 | method public boolean tryAcquire(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14950 | method public boolean tryAcquire(int); |
| 14951 | method public boolean tryAcquire(int, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14952 | } |
| 14953 | |
| 14954 | public class SynchronousQueue<E> extends java.util.AbstractQueue<E> implements java.util.concurrent.BlockingQueue<E> java.io.Serializable { |
| 14955 | ctor public SynchronousQueue(); |
| 14956 | ctor public SynchronousQueue(boolean); |
| 14957 | method public int drainTo(java.util.Collection<? super E>); |
| 14958 | method public int drainTo(java.util.Collection<? super E>, int); |
| 14959 | method public java.util.Iterator<E> iterator(); |
| 14960 | method public boolean offer(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14961 | method public boolean offer(E); |
| 14962 | method public E peek(); |
| 14963 | method public E poll(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14964 | method public E poll(); |
| 14965 | method public void put(E) throws java.lang.InterruptedException; |
| 14966 | method public int remainingCapacity(); |
| 14967 | method public int size(); |
| 14968 | method public E take() throws java.lang.InterruptedException; |
| 14969 | } |
| 14970 | |
| 14971 | public interface ThreadFactory { |
| 14972 | method public Thread newThread(Runnable); |
| 14973 | } |
| 14974 | |
| 14975 | public class ThreadLocalRandom extends java.util.Random { |
| 14976 | method public static java.util.concurrent.ThreadLocalRandom current(); |
| 14977 | method public double nextDouble(double); |
| 14978 | method public double nextDouble(double, double); |
| 14979 | method public int nextInt(int, int); |
| 14980 | method public long nextLong(long); |
| 14981 | method public long nextLong(long, long); |
| 14982 | } |
| 14983 | |
| 14984 | public class ThreadPoolExecutor extends java.util.concurrent.AbstractExecutorService { |
| 14985 | ctor public ThreadPoolExecutor(int, int, long, java.util.concurrent.TimeUnit, java.util.concurrent.BlockingQueue<java.lang.Runnable>); |
| 14986 | ctor public ThreadPoolExecutor(int, int, long, java.util.concurrent.TimeUnit, java.util.concurrent.BlockingQueue<java.lang.Runnable>, java.util.concurrent.ThreadFactory); |
| 14987 | ctor public ThreadPoolExecutor(int, int, long, java.util.concurrent.TimeUnit, java.util.concurrent.BlockingQueue<java.lang.Runnable>, java.util.concurrent.RejectedExecutionHandler); |
| 14988 | ctor public ThreadPoolExecutor(int, int, long, java.util.concurrent.TimeUnit, java.util.concurrent.BlockingQueue<java.lang.Runnable>, java.util.concurrent.ThreadFactory, java.util.concurrent.RejectedExecutionHandler); |
| 14989 | method protected void afterExecute(Runnable, Throwable); |
| 14990 | method public void allowCoreThreadTimeOut(boolean); |
| 14991 | method public boolean allowsCoreThreadTimeOut(); |
| 14992 | method public boolean awaitTermination(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 14993 | method protected void beforeExecute(Thread, Runnable); |
| 14994 | method public void execute(Runnable); |
| 14995 | method protected void finalize(); |
| 14996 | method public int getActiveCount(); |
| 14997 | method public long getCompletedTaskCount(); |
| 14998 | method public int getCorePoolSize(); |
| 14999 | method public long getKeepAliveTime(java.util.concurrent.TimeUnit); |
| 15000 | method public int getLargestPoolSize(); |
| 15001 | method public int getMaximumPoolSize(); |
| 15002 | method public int getPoolSize(); |
| 15003 | method public java.util.concurrent.BlockingQueue<java.lang.Runnable> getQueue(); |
| 15004 | method public java.util.concurrent.RejectedExecutionHandler getRejectedExecutionHandler(); |
| 15005 | method public long getTaskCount(); |
| 15006 | method public java.util.concurrent.ThreadFactory getThreadFactory(); |
| 15007 | method public boolean isShutdown(); |
| 15008 | method public boolean isTerminated(); |
| 15009 | method public boolean isTerminating(); |
| 15010 | method public int prestartAllCoreThreads(); |
| 15011 | method public boolean prestartCoreThread(); |
| 15012 | method public void purge(); |
| 15013 | method public boolean remove(Runnable); |
| 15014 | method public void setCorePoolSize(int); |
| 15015 | method public void setKeepAliveTime(long, java.util.concurrent.TimeUnit); |
| 15016 | method public void setMaximumPoolSize(int); |
| 15017 | method public void setRejectedExecutionHandler(java.util.concurrent.RejectedExecutionHandler); |
| 15018 | method public void setThreadFactory(java.util.concurrent.ThreadFactory); |
| 15019 | method public void shutdown(); |
| 15020 | method public java.util.List<java.lang.Runnable> shutdownNow(); |
| 15021 | method protected void terminated(); |
| 15022 | } |
| 15023 | |
| 15024 | public static class ThreadPoolExecutor.AbortPolicy implements java.util.concurrent.RejectedExecutionHandler { |
| 15025 | ctor public ThreadPoolExecutor.AbortPolicy(); |
| 15026 | method public void rejectedExecution(Runnable, java.util.concurrent.ThreadPoolExecutor); |
| 15027 | } |
| 15028 | |
| 15029 | public static class ThreadPoolExecutor.CallerRunsPolicy implements java.util.concurrent.RejectedExecutionHandler { |
| 15030 | ctor public ThreadPoolExecutor.CallerRunsPolicy(); |
| 15031 | method public void rejectedExecution(Runnable, java.util.concurrent.ThreadPoolExecutor); |
| 15032 | } |
| 15033 | |
| 15034 | public static class ThreadPoolExecutor.DiscardOldestPolicy implements java.util.concurrent.RejectedExecutionHandler { |
| 15035 | ctor public ThreadPoolExecutor.DiscardOldestPolicy(); |
| 15036 | method public void rejectedExecution(Runnable, java.util.concurrent.ThreadPoolExecutor); |
| 15037 | } |
| 15038 | |
| 15039 | public static class ThreadPoolExecutor.DiscardPolicy implements java.util.concurrent.RejectedExecutionHandler { |
| 15040 | ctor public ThreadPoolExecutor.DiscardPolicy(); |
| 15041 | method public void rejectedExecution(Runnable, java.util.concurrent.ThreadPoolExecutor); |
| 15042 | } |
| 15043 | |
| 15044 | public enum TimeUnit { |
| 15045 | method public long convert(long, java.util.concurrent.TimeUnit); |
| 15046 | method public void sleep(long) throws java.lang.InterruptedException; |
| 15047 | method public void timedJoin(Thread, long) throws java.lang.InterruptedException; |
| 15048 | method public void timedWait(Object, long) throws java.lang.InterruptedException; |
| 15049 | method public long toDays(long); |
| 15050 | method public long toHours(long); |
| 15051 | method public long toMicros(long); |
| 15052 | method public long toMillis(long); |
| 15053 | method public long toMinutes(long); |
| 15054 | method public long toNanos(long); |
| 15055 | method public long toSeconds(long); |
| 15056 | enum_constant public static final java.util.concurrent.TimeUnit DAYS; |
| 15057 | enum_constant public static final java.util.concurrent.TimeUnit HOURS; |
| 15058 | enum_constant public static final java.util.concurrent.TimeUnit MICROSECONDS; |
| 15059 | enum_constant public static final java.util.concurrent.TimeUnit MILLISECONDS; |
| 15060 | enum_constant public static final java.util.concurrent.TimeUnit MINUTES; |
| 15061 | enum_constant public static final java.util.concurrent.TimeUnit NANOSECONDS; |
| 15062 | enum_constant public static final java.util.concurrent.TimeUnit SECONDS; |
| 15063 | } |
| 15064 | |
| 15065 | public class TimeoutException extends java.lang.Exception { |
| 15066 | ctor public TimeoutException(); |
| 15067 | ctor public TimeoutException(String); |
| 15068 | } |
| 15069 | |
| 15070 | public interface TransferQueue<E> extends java.util.concurrent.BlockingQueue<E> { |
| 15071 | method public int getWaitingConsumerCount(); |
| 15072 | method public boolean hasWaitingConsumer(); |
| 15073 | method public void transfer(E) throws java.lang.InterruptedException; |
| 15074 | method public boolean tryTransfer(E); |
| 15075 | method public boolean tryTransfer(E, long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15076 | } |
| 15077 | |
| 15078 | } |
| 15079 | |
| 15080 | package java.util.concurrent.atomic { |
| 15081 | |
| 15082 | public class AtomicBoolean implements java.io.Serializable { |
| 15083 | ctor public AtomicBoolean(boolean); |
| 15084 | ctor public AtomicBoolean(); |
| 15085 | method public final boolean compareAndSet(boolean, boolean); |
| 15086 | method public final boolean get(); |
| 15087 | method public final boolean getAndSet(boolean); |
| 15088 | method public final void lazySet(boolean); |
| 15089 | method public final void set(boolean); |
| 15090 | method public boolean weakCompareAndSet(boolean, boolean); |
| 15091 | } |
| 15092 | |
| 15093 | public class AtomicInteger extends java.lang.Number implements java.io.Serializable { |
| 15094 | ctor public AtomicInteger(int); |
| 15095 | ctor public AtomicInteger(); |
| 15096 | method public final int accumulateAndGet(int, java.util.function.IntBinaryOperator); |
| 15097 | method public final int addAndGet(int); |
| 15098 | method public final boolean compareAndSet(int, int); |
| 15099 | method public final int decrementAndGet(); |
| 15100 | method public double doubleValue(); |
| 15101 | method public float floatValue(); |
| 15102 | method public final int get(); |
| 15103 | method public final int getAndAccumulate(int, java.util.function.IntBinaryOperator); |
| 15104 | method public final int getAndAdd(int); |
| 15105 | method public final int getAndDecrement(); |
| 15106 | method public final int getAndIncrement(); |
| 15107 | method public final int getAndSet(int); |
| 15108 | method public final int getAndUpdate(java.util.function.IntUnaryOperator); |
| 15109 | method public final int incrementAndGet(); |
| 15110 | method public int intValue(); |
| 15111 | method public final void lazySet(int); |
| 15112 | method public long longValue(); |
| 15113 | method public final void set(int); |
| 15114 | method public final int updateAndGet(java.util.function.IntUnaryOperator); |
| 15115 | method public final boolean weakCompareAndSet(int, int); |
| 15116 | } |
| 15117 | |
| 15118 | public class AtomicIntegerArray implements java.io.Serializable { |
| 15119 | ctor public AtomicIntegerArray(int); |
| 15120 | ctor public AtomicIntegerArray(int[]); |
| 15121 | method public final int accumulateAndGet(int, int, java.util.function.IntBinaryOperator); |
| 15122 | method public final int addAndGet(int, int); |
| 15123 | method public final boolean compareAndSet(int, int, int); |
| 15124 | method public final int decrementAndGet(int); |
| 15125 | method public final int get(int); |
| 15126 | method public final int getAndAccumulate(int, int, java.util.function.IntBinaryOperator); |
| 15127 | method public final int getAndAdd(int, int); |
| 15128 | method public final int getAndDecrement(int); |
| 15129 | method public final int getAndIncrement(int); |
| 15130 | method public final int getAndSet(int, int); |
| 15131 | method public final int getAndUpdate(int, java.util.function.IntUnaryOperator); |
| 15132 | method public final int incrementAndGet(int); |
| 15133 | method public final void lazySet(int, int); |
| 15134 | method public final int length(); |
| 15135 | method public final void set(int, int); |
| 15136 | method public final int updateAndGet(int, java.util.function.IntUnaryOperator); |
| 15137 | method public final boolean weakCompareAndSet(int, int, int); |
| 15138 | } |
| 15139 | |
| 15140 | public abstract class AtomicIntegerFieldUpdater<T> { |
| 15141 | ctor protected AtomicIntegerFieldUpdater(); |
| 15142 | method public final int accumulateAndGet(T, int, java.util.function.IntBinaryOperator); |
| 15143 | method public int addAndGet(T, int); |
| 15144 | method public abstract boolean compareAndSet(T, int, int); |
| 15145 | method public int decrementAndGet(T); |
| 15146 | method public abstract int get(T); |
| 15147 | method public final int getAndAccumulate(T, int, java.util.function.IntBinaryOperator); |
| 15148 | method public int getAndAdd(T, int); |
| 15149 | method public int getAndDecrement(T); |
| 15150 | method public int getAndIncrement(T); |
| 15151 | method public int getAndSet(T, int); |
| 15152 | method public final int getAndUpdate(T, java.util.function.IntUnaryOperator); |
| 15153 | method public int incrementAndGet(T); |
| 15154 | method public abstract void lazySet(T, int); |
| 15155 | method public static <U> java.util.concurrent.atomic.AtomicIntegerFieldUpdater<U> newUpdater(Class<U>, String); |
| 15156 | method public abstract void set(T, int); |
| 15157 | method public final int updateAndGet(T, java.util.function.IntUnaryOperator); |
| 15158 | method public abstract boolean weakCompareAndSet(T, int, int); |
| 15159 | } |
| 15160 | |
| 15161 | public class AtomicLong extends java.lang.Number implements java.io.Serializable { |
| 15162 | ctor public AtomicLong(long); |
| 15163 | ctor public AtomicLong(); |
| 15164 | method public final long accumulateAndGet(long, java.util.function.LongBinaryOperator); |
| 15165 | method public final long addAndGet(long); |
| 15166 | method public final boolean compareAndSet(long, long); |
| 15167 | method public final long decrementAndGet(); |
| 15168 | method public double doubleValue(); |
| 15169 | method public float floatValue(); |
| 15170 | method public final long get(); |
| 15171 | method public final long getAndAccumulate(long, java.util.function.LongBinaryOperator); |
| 15172 | method public final long getAndAdd(long); |
| 15173 | method public final long getAndDecrement(); |
| 15174 | method public final long getAndIncrement(); |
| 15175 | method public final long getAndSet(long); |
| 15176 | method public final long getAndUpdate(java.util.function.LongUnaryOperator); |
| 15177 | method public final long incrementAndGet(); |
| 15178 | method public int intValue(); |
| 15179 | method public final void lazySet(long); |
| 15180 | method public long longValue(); |
| 15181 | method public final void set(long); |
| 15182 | method public final long updateAndGet(java.util.function.LongUnaryOperator); |
| 15183 | method public final boolean weakCompareAndSet(long, long); |
| 15184 | } |
| 15185 | |
| 15186 | public class AtomicLongArray implements java.io.Serializable { |
| 15187 | ctor public AtomicLongArray(int); |
| 15188 | ctor public AtomicLongArray(long[]); |
| 15189 | method public final long accumulateAndGet(int, long, java.util.function.LongBinaryOperator); |
| 15190 | method public long addAndGet(int, long); |
| 15191 | method public final boolean compareAndSet(int, long, long); |
| 15192 | method public final long decrementAndGet(int); |
| 15193 | method public final long get(int); |
| 15194 | method public final long getAndAccumulate(int, long, java.util.function.LongBinaryOperator); |
| 15195 | method public final long getAndAdd(int, long); |
| 15196 | method public final long getAndDecrement(int); |
| 15197 | method public final long getAndIncrement(int); |
| 15198 | method public final long getAndSet(int, long); |
| 15199 | method public final long getAndUpdate(int, java.util.function.LongUnaryOperator); |
| 15200 | method public final long incrementAndGet(int); |
| 15201 | method public final void lazySet(int, long); |
| 15202 | method public final int length(); |
| 15203 | method public final void set(int, long); |
| 15204 | method public final long updateAndGet(int, java.util.function.LongUnaryOperator); |
| 15205 | method public final boolean weakCompareAndSet(int, long, long); |
| 15206 | } |
| 15207 | |
| 15208 | public abstract class AtomicLongFieldUpdater<T> { |
| 15209 | ctor protected AtomicLongFieldUpdater(); |
| 15210 | method public final long accumulateAndGet(T, long, java.util.function.LongBinaryOperator); |
| 15211 | method public long addAndGet(T, long); |
| 15212 | method public abstract boolean compareAndSet(T, long, long); |
| 15213 | method public long decrementAndGet(T); |
| 15214 | method public abstract long get(T); |
| 15215 | method public final long getAndAccumulate(T, long, java.util.function.LongBinaryOperator); |
| 15216 | method public long getAndAdd(T, long); |
| 15217 | method public long getAndDecrement(T); |
| 15218 | method public long getAndIncrement(T); |
| 15219 | method public long getAndSet(T, long); |
| 15220 | method public final long getAndUpdate(T, java.util.function.LongUnaryOperator); |
| 15221 | method public long incrementAndGet(T); |
| 15222 | method public abstract void lazySet(T, long); |
| 15223 | method public static <U> java.util.concurrent.atomic.AtomicLongFieldUpdater<U> newUpdater(Class<U>, String); |
| 15224 | method public abstract void set(T, long); |
| 15225 | method public final long updateAndGet(T, java.util.function.LongUnaryOperator); |
| 15226 | method public abstract boolean weakCompareAndSet(T, long, long); |
| 15227 | } |
| 15228 | |
| 15229 | public class AtomicMarkableReference<V> { |
| 15230 | ctor public AtomicMarkableReference(V, boolean); |
| 15231 | method public boolean attemptMark(V, boolean); |
| 15232 | method public boolean compareAndSet(V, V, boolean, boolean); |
| 15233 | method public V get(boolean[]); |
| 15234 | method public V getReference(); |
| 15235 | method public boolean isMarked(); |
| 15236 | method public void set(V, boolean); |
| 15237 | method public boolean weakCompareAndSet(V, V, boolean, boolean); |
| 15238 | } |
| 15239 | |
| 15240 | public class AtomicReference<V> implements java.io.Serializable { |
| 15241 | ctor public AtomicReference(V); |
| 15242 | ctor public AtomicReference(); |
| 15243 | method public final V accumulateAndGet(V, java.util.function.BinaryOperator<V>); |
| 15244 | method public final boolean compareAndSet(V, V); |
| 15245 | method public final V get(); |
| 15246 | method public final V getAndAccumulate(V, java.util.function.BinaryOperator<V>); |
| 15247 | method public final V getAndSet(V); |
| 15248 | method public final V getAndUpdate(java.util.function.UnaryOperator<V>); |
| 15249 | method public final void lazySet(V); |
| 15250 | method public final void set(V); |
| 15251 | method public final V updateAndGet(java.util.function.UnaryOperator<V>); |
| 15252 | method public final boolean weakCompareAndSet(V, V); |
| 15253 | } |
| 15254 | |
| 15255 | public class AtomicReferenceArray<E> implements java.io.Serializable { |
| 15256 | ctor public AtomicReferenceArray(int); |
| 15257 | ctor public AtomicReferenceArray(E[]); |
| 15258 | method public final E accumulateAndGet(int, E, java.util.function.BinaryOperator<E>); |
| 15259 | method public final boolean compareAndSet(int, E, E); |
| 15260 | method public final E get(int); |
| 15261 | method public final E getAndAccumulate(int, E, java.util.function.BinaryOperator<E>); |
| 15262 | method public final E getAndSet(int, E); |
| 15263 | method public final E getAndUpdate(int, java.util.function.UnaryOperator<E>); |
| 15264 | method public final void lazySet(int, E); |
| 15265 | method public final int length(); |
| 15266 | method public final void set(int, E); |
| 15267 | method public final E updateAndGet(int, java.util.function.UnaryOperator<E>); |
| 15268 | method public final boolean weakCompareAndSet(int, E, E); |
| 15269 | } |
| 15270 | |
| 15271 | public abstract class AtomicReferenceFieldUpdater<T, V> { |
| 15272 | ctor protected AtomicReferenceFieldUpdater(); |
| 15273 | method public final V accumulateAndGet(T, V, java.util.function.BinaryOperator<V>); |
| 15274 | method public abstract boolean compareAndSet(T, V, V); |
| 15275 | method public abstract V get(T); |
| 15276 | method public final V getAndAccumulate(T, V, java.util.function.BinaryOperator<V>); |
| 15277 | method public V getAndSet(T, V); |
| 15278 | method public final V getAndUpdate(T, java.util.function.UnaryOperator<V>); |
| 15279 | method public abstract void lazySet(T, V); |
| 15280 | method public static <U, W> java.util.concurrent.atomic.AtomicReferenceFieldUpdater<U,W> newUpdater(Class<U>, Class<W>, String); |
| 15281 | method public abstract void set(T, V); |
| 15282 | method public final V updateAndGet(T, java.util.function.UnaryOperator<V>); |
| 15283 | method public abstract boolean weakCompareAndSet(T, V, V); |
| 15284 | } |
| 15285 | |
| 15286 | public class AtomicStampedReference<V> { |
| 15287 | ctor public AtomicStampedReference(V, int); |
| 15288 | method public boolean attemptStamp(V, int); |
| 15289 | method public boolean compareAndSet(V, V, int, int); |
| 15290 | method public V get(int[]); |
| 15291 | method public V getReference(); |
| 15292 | method public int getStamp(); |
| 15293 | method public void set(V, int); |
| 15294 | method public boolean weakCompareAndSet(V, V, int, int); |
| 15295 | } |
| 15296 | |
| 15297 | public class DoubleAccumulator extends java.lang.Number implements java.io.Serializable { |
| 15298 | ctor public DoubleAccumulator(java.util.function.DoubleBinaryOperator, double); |
| 15299 | method public void accumulate(double); |
| 15300 | method public double doubleValue(); |
| 15301 | method public float floatValue(); |
| 15302 | method public double get(); |
| 15303 | method public double getThenReset(); |
| 15304 | method public int intValue(); |
| 15305 | method public long longValue(); |
| 15306 | method public void reset(); |
| 15307 | } |
| 15308 | |
| 15309 | public class DoubleAdder extends java.lang.Number implements java.io.Serializable { |
| 15310 | ctor public DoubleAdder(); |
| 15311 | method public void add(double); |
| 15312 | method public double doubleValue(); |
| 15313 | method public float floatValue(); |
| 15314 | method public int intValue(); |
| 15315 | method public long longValue(); |
| 15316 | method public void reset(); |
| 15317 | method public double sum(); |
| 15318 | method public double sumThenReset(); |
| 15319 | } |
| 15320 | |
| 15321 | public class LongAccumulator extends java.lang.Number implements java.io.Serializable { |
| 15322 | ctor public LongAccumulator(java.util.function.LongBinaryOperator, long); |
| 15323 | method public void accumulate(long); |
| 15324 | method public double doubleValue(); |
| 15325 | method public float floatValue(); |
| 15326 | method public long get(); |
| 15327 | method public long getThenReset(); |
| 15328 | method public int intValue(); |
| 15329 | method public long longValue(); |
| 15330 | method public void reset(); |
| 15331 | } |
| 15332 | |
| 15333 | public class LongAdder extends java.lang.Number implements java.io.Serializable { |
| 15334 | ctor public LongAdder(); |
| 15335 | method public void add(long); |
| 15336 | method public void decrement(); |
| 15337 | method public double doubleValue(); |
| 15338 | method public float floatValue(); |
| 15339 | method public void increment(); |
| 15340 | method public int intValue(); |
| 15341 | method public long longValue(); |
| 15342 | method public void reset(); |
| 15343 | method public long sum(); |
| 15344 | method public long sumThenReset(); |
| 15345 | } |
| 15346 | |
| 15347 | } |
| 15348 | |
| 15349 | package java.util.concurrent.locks { |
| 15350 | |
| 15351 | public abstract class AbstractOwnableSynchronizer implements java.io.Serializable { |
| 15352 | ctor protected AbstractOwnableSynchronizer(); |
| 15353 | method protected final Thread getExclusiveOwnerThread(); |
| 15354 | method protected final void setExclusiveOwnerThread(Thread); |
| 15355 | } |
| 15356 | |
| 15357 | public abstract class AbstractQueuedLongSynchronizer extends java.util.concurrent.locks.AbstractOwnableSynchronizer implements java.io.Serializable { |
| 15358 | ctor protected AbstractQueuedLongSynchronizer(); |
| 15359 | method public final void acquire(long); |
| 15360 | method public final void acquireInterruptibly(long) throws java.lang.InterruptedException; |
| 15361 | method public final void acquireShared(long); |
| 15362 | method public final void acquireSharedInterruptibly(long) throws java.lang.InterruptedException; |
| 15363 | method protected final boolean compareAndSetState(long, long); |
| 15364 | method public final java.util.Collection<java.lang.Thread> getExclusiveQueuedThreads(); |
| 15365 | method public final Thread getFirstQueuedThread(); |
| 15366 | method public final int getQueueLength(); |
| 15367 | method public final java.util.Collection<java.lang.Thread> getQueuedThreads(); |
| 15368 | method public final java.util.Collection<java.lang.Thread> getSharedQueuedThreads(); |
| 15369 | method protected final long getState(); |
| 15370 | method public final int getWaitQueueLength(java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject); |
| 15371 | method public final java.util.Collection<java.lang.Thread> getWaitingThreads(java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject); |
| 15372 | method public final boolean hasContended(); |
| 15373 | method public final boolean hasQueuedPredecessors(); |
| 15374 | method public final boolean hasQueuedThreads(); |
| 15375 | method public final boolean hasWaiters(java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject); |
| 15376 | method protected boolean isHeldExclusively(); |
| 15377 | method public final boolean isQueued(Thread); |
| 15378 | method public final boolean owns(java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject); |
| 15379 | method public final boolean release(long); |
| 15380 | method public final boolean releaseShared(long); |
| 15381 | method protected final void setState(long); |
| 15382 | method protected boolean tryAcquire(long); |
| 15383 | method public final boolean tryAcquireNanos(long, long) throws java.lang.InterruptedException; |
| 15384 | method protected long tryAcquireShared(long); |
| 15385 | method public final boolean tryAcquireSharedNanos(long, long) throws java.lang.InterruptedException; |
| 15386 | method protected boolean tryRelease(long); |
| 15387 | method protected boolean tryReleaseShared(long); |
| 15388 | } |
| 15389 | |
| 15390 | public class AbstractQueuedLongSynchronizer.ConditionObject implements java.util.concurrent.locks.Condition java.io.Serializable { |
| 15391 | ctor public AbstractQueuedLongSynchronizer.ConditionObject(); |
| 15392 | method public final void await() throws java.lang.InterruptedException; |
| 15393 | method public final boolean await(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15394 | method public final long awaitNanos(long) throws java.lang.InterruptedException; |
| 15395 | method public final void awaitUninterruptibly(); |
| 15396 | method public final boolean awaitUntil(java.util.Date) throws java.lang.InterruptedException; |
| 15397 | method protected final int getWaitQueueLength(); |
| 15398 | method protected final java.util.Collection<java.lang.Thread> getWaitingThreads(); |
| 15399 | method protected final boolean hasWaiters(); |
| 15400 | method public final void signal(); |
| 15401 | method public final void signalAll(); |
| 15402 | } |
| 15403 | |
| 15404 | public abstract class AbstractQueuedSynchronizer extends java.util.concurrent.locks.AbstractOwnableSynchronizer implements java.io.Serializable { |
| 15405 | ctor protected AbstractQueuedSynchronizer(); |
| 15406 | method public final void acquire(int); |
| 15407 | method public final void acquireInterruptibly(int) throws java.lang.InterruptedException; |
| 15408 | method public final void acquireShared(int); |
| 15409 | method public final void acquireSharedInterruptibly(int) throws java.lang.InterruptedException; |
| 15410 | method protected final boolean compareAndSetState(int, int); |
| 15411 | method public final java.util.Collection<java.lang.Thread> getExclusiveQueuedThreads(); |
| 15412 | method public final Thread getFirstQueuedThread(); |
| 15413 | method public final int getQueueLength(); |
| 15414 | method public final java.util.Collection<java.lang.Thread> getQueuedThreads(); |
| 15415 | method public final java.util.Collection<java.lang.Thread> getSharedQueuedThreads(); |
| 15416 | method protected final int getState(); |
| 15417 | method public final int getWaitQueueLength(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject); |
| 15418 | method public final java.util.Collection<java.lang.Thread> getWaitingThreads(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject); |
| 15419 | method public final boolean hasContended(); |
| 15420 | method public final boolean hasQueuedPredecessors(); |
| 15421 | method public final boolean hasQueuedThreads(); |
| 15422 | method public final boolean hasWaiters(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject); |
| 15423 | method protected boolean isHeldExclusively(); |
| 15424 | method public final boolean isQueued(Thread); |
| 15425 | method public final boolean owns(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject); |
| 15426 | method public final boolean release(int); |
| 15427 | method public final boolean releaseShared(int); |
| 15428 | method protected final void setState(int); |
| 15429 | method protected boolean tryAcquire(int); |
| 15430 | method public final boolean tryAcquireNanos(int, long) throws java.lang.InterruptedException; |
| 15431 | method protected int tryAcquireShared(int); |
| 15432 | method public final boolean tryAcquireSharedNanos(int, long) throws java.lang.InterruptedException; |
| 15433 | method protected boolean tryRelease(int); |
| 15434 | method protected boolean tryReleaseShared(int); |
| 15435 | } |
| 15436 | |
| 15437 | public class AbstractQueuedSynchronizer.ConditionObject implements java.util.concurrent.locks.Condition java.io.Serializable { |
| 15438 | ctor public AbstractQueuedSynchronizer.ConditionObject(); |
| 15439 | method public final void await() throws java.lang.InterruptedException; |
| 15440 | method public final boolean await(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15441 | method public final long awaitNanos(long) throws java.lang.InterruptedException; |
| 15442 | method public final void awaitUninterruptibly(); |
| 15443 | method public final boolean awaitUntil(java.util.Date) throws java.lang.InterruptedException; |
| 15444 | method protected final int getWaitQueueLength(); |
| 15445 | method protected final java.util.Collection<java.lang.Thread> getWaitingThreads(); |
| 15446 | method protected final boolean hasWaiters(); |
| 15447 | method public final void signal(); |
| 15448 | method public final void signalAll(); |
| 15449 | } |
| 15450 | |
| 15451 | public interface Condition { |
| 15452 | method public void await() throws java.lang.InterruptedException; |
| 15453 | method public boolean await(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15454 | method public long awaitNanos(long) throws java.lang.InterruptedException; |
| 15455 | method public void awaitUninterruptibly(); |
| 15456 | method public boolean awaitUntil(java.util.Date) throws java.lang.InterruptedException; |
| 15457 | method public void signal(); |
| 15458 | method public void signalAll(); |
| 15459 | } |
| 15460 | |
| 15461 | public interface Lock { |
| 15462 | method public void lock(); |
| 15463 | method public void lockInterruptibly() throws java.lang.InterruptedException; |
| 15464 | method public java.util.concurrent.locks.Condition newCondition(); |
| 15465 | method public boolean tryLock(); |
| 15466 | method public boolean tryLock(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15467 | method public void unlock(); |
| 15468 | } |
| 15469 | |
| 15470 | public class LockSupport { |
| 15471 | method public static Object getBlocker(Thread); |
| 15472 | method public static void park(Object); |
| 15473 | method public static void park(); |
| 15474 | method public static void parkNanos(Object, long); |
| 15475 | method public static void parkNanos(long); |
| 15476 | method public static void parkUntil(Object, long); |
| 15477 | method public static void parkUntil(long); |
| 15478 | method public static void unpark(Thread); |
| 15479 | } |
| 15480 | |
| 15481 | public interface ReadWriteLock { |
| 15482 | method public java.util.concurrent.locks.Lock readLock(); |
| 15483 | method public java.util.concurrent.locks.Lock writeLock(); |
| 15484 | } |
| 15485 | |
| 15486 | public class ReentrantLock implements java.util.concurrent.locks.Lock java.io.Serializable { |
| 15487 | ctor public ReentrantLock(); |
| 15488 | ctor public ReentrantLock(boolean); |
| 15489 | method public int getHoldCount(); |
| 15490 | method protected Thread getOwner(); |
| 15491 | method public final int getQueueLength(); |
| 15492 | method protected java.util.Collection<java.lang.Thread> getQueuedThreads(); |
| 15493 | method public int getWaitQueueLength(java.util.concurrent.locks.Condition); |
| 15494 | method protected java.util.Collection<java.lang.Thread> getWaitingThreads(java.util.concurrent.locks.Condition); |
| 15495 | method public final boolean hasQueuedThread(Thread); |
| 15496 | method public final boolean hasQueuedThreads(); |
| 15497 | method public boolean hasWaiters(java.util.concurrent.locks.Condition); |
| 15498 | method public final boolean isFair(); |
| 15499 | method public boolean isHeldByCurrentThread(); |
| 15500 | method public boolean isLocked(); |
| 15501 | method public void lock(); |
| 15502 | method public void lockInterruptibly() throws java.lang.InterruptedException; |
| 15503 | method public java.util.concurrent.locks.Condition newCondition(); |
| 15504 | method public boolean tryLock(); |
| 15505 | method public boolean tryLock(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15506 | method public void unlock(); |
| 15507 | } |
| 15508 | |
| 15509 | public class ReentrantReadWriteLock implements java.util.concurrent.locks.ReadWriteLock java.io.Serializable { |
| 15510 | ctor public ReentrantReadWriteLock(); |
| 15511 | ctor public ReentrantReadWriteLock(boolean); |
| 15512 | method protected Thread getOwner(); |
| 15513 | method public final int getQueueLength(); |
| 15514 | method protected java.util.Collection<java.lang.Thread> getQueuedReaderThreads(); |
| 15515 | method protected java.util.Collection<java.lang.Thread> getQueuedThreads(); |
| 15516 | method protected java.util.Collection<java.lang.Thread> getQueuedWriterThreads(); |
| 15517 | method public int getReadHoldCount(); |
| 15518 | method public int getReadLockCount(); |
| 15519 | method public int getWaitQueueLength(java.util.concurrent.locks.Condition); |
| 15520 | method protected java.util.Collection<java.lang.Thread> getWaitingThreads(java.util.concurrent.locks.Condition); |
| 15521 | method public int getWriteHoldCount(); |
| 15522 | method public final boolean hasQueuedThread(Thread); |
| 15523 | method public final boolean hasQueuedThreads(); |
| 15524 | method public boolean hasWaiters(java.util.concurrent.locks.Condition); |
| 15525 | method public final boolean isFair(); |
| 15526 | method public boolean isWriteLocked(); |
| 15527 | method public boolean isWriteLockedByCurrentThread(); |
| 15528 | method public java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock readLock(); |
| 15529 | method public java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock writeLock(); |
| 15530 | } |
| 15531 | |
| 15532 | public static class ReentrantReadWriteLock.ReadLock implements java.util.concurrent.locks.Lock java.io.Serializable { |
| 15533 | ctor protected ReentrantReadWriteLock.ReadLock(java.util.concurrent.locks.ReentrantReadWriteLock); |
| 15534 | method public void lock(); |
| 15535 | method public void lockInterruptibly() throws java.lang.InterruptedException; |
| 15536 | method public java.util.concurrent.locks.Condition newCondition(); |
| 15537 | method public boolean tryLock(); |
| 15538 | method public boolean tryLock(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15539 | method public void unlock(); |
| 15540 | } |
| 15541 | |
| 15542 | public static class ReentrantReadWriteLock.WriteLock implements java.util.concurrent.locks.Lock java.io.Serializable { |
| 15543 | ctor protected ReentrantReadWriteLock.WriteLock(java.util.concurrent.locks.ReentrantReadWriteLock); |
| 15544 | method public int getHoldCount(); |
| 15545 | method public boolean isHeldByCurrentThread(); |
| 15546 | method public void lock(); |
| 15547 | method public void lockInterruptibly() throws java.lang.InterruptedException; |
| 15548 | method public java.util.concurrent.locks.Condition newCondition(); |
| 15549 | method public boolean tryLock(); |
| 15550 | method public boolean tryLock(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15551 | method public void unlock(); |
| 15552 | } |
| 15553 | |
| 15554 | public class StampedLock implements java.io.Serializable { |
| 15555 | ctor public StampedLock(); |
| 15556 | method public java.util.concurrent.locks.Lock asReadLock(); |
| 15557 | method public java.util.concurrent.locks.ReadWriteLock asReadWriteLock(); |
| 15558 | method public java.util.concurrent.locks.Lock asWriteLock(); |
| 15559 | method public int getReadLockCount(); |
| 15560 | method public boolean isReadLocked(); |
| 15561 | method public boolean isWriteLocked(); |
| 15562 | method public long readLock(); |
| 15563 | method public long readLockInterruptibly() throws java.lang.InterruptedException; |
| 15564 | method public long tryConvertToOptimisticRead(long); |
| 15565 | method public long tryConvertToReadLock(long); |
| 15566 | method public long tryConvertToWriteLock(long); |
| 15567 | method public long tryOptimisticRead(); |
| 15568 | method public long tryReadLock(); |
| 15569 | method public long tryReadLock(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15570 | method public boolean tryUnlockRead(); |
| 15571 | method public boolean tryUnlockWrite(); |
| 15572 | method public long tryWriteLock(); |
| 15573 | method public long tryWriteLock(long, java.util.concurrent.TimeUnit) throws java.lang.InterruptedException; |
| 15574 | method public void unlock(long); |
| 15575 | method public void unlockRead(long); |
| 15576 | method public void unlockWrite(long); |
| 15577 | method public boolean validate(long); |
| 15578 | method public long writeLock(); |
| 15579 | method public long writeLockInterruptibly() throws java.lang.InterruptedException; |
| 15580 | } |
| 15581 | |
| 15582 | } |
| 15583 | |
| 15584 | package java.util.function { |
| 15585 | |
| 15586 | @java.lang.FunctionalInterface public interface BiConsumer<T, U> { |
| 15587 | method public void accept(T, U); |
| 15588 | method public default java.util.function.BiConsumer<T,U> andThen(java.util.function.BiConsumer<? super T,? super U>); |
| 15589 | } |
| 15590 | |
| 15591 | @java.lang.FunctionalInterface public interface BiFunction<T, U, R> { |
| 15592 | method public default <V> java.util.function.BiFunction<T,U,V> andThen(java.util.function.Function<? super R,? extends V>); |
| 15593 | method public R apply(T, U); |
| 15594 | } |
| 15595 | |
| 15596 | @java.lang.FunctionalInterface public interface BiPredicate<T, U> { |
| 15597 | method public default java.util.function.BiPredicate<T,U> and(java.util.function.BiPredicate<? super T,? super U>); |
| 15598 | method public default java.util.function.BiPredicate<T,U> negate(); |
| 15599 | method public default java.util.function.BiPredicate<T,U> or(java.util.function.BiPredicate<? super T,? super U>); |
| 15600 | method public boolean test(T, U); |
| 15601 | } |
| 15602 | |
| 15603 | @java.lang.FunctionalInterface public interface BinaryOperator<T> extends java.util.function.BiFunction<T,T,T> { |
| 15604 | method public static <T> java.util.function.BinaryOperator<T> maxBy(java.util.Comparator<? super T>); |
| 15605 | method public static <T> java.util.function.BinaryOperator<T> minBy(java.util.Comparator<? super T>); |
| 15606 | } |
| 15607 | |
| 15608 | @java.lang.FunctionalInterface public interface BooleanSupplier { |
| 15609 | method public boolean getAsBoolean(); |
| 15610 | } |
| 15611 | |
| 15612 | @java.lang.FunctionalInterface public interface Consumer<T> { |
| 15613 | method public void accept(T); |
| 15614 | method public default java.util.function.Consumer<T> andThen(java.util.function.Consumer<? super T>); |
| 15615 | } |
| 15616 | |
| 15617 | @java.lang.FunctionalInterface public interface DoubleBinaryOperator { |
| 15618 | method public double applyAsDouble(double, double); |
| 15619 | } |
| 15620 | |
| 15621 | @java.lang.FunctionalInterface public interface DoubleConsumer { |
| 15622 | method public void accept(double); |
| 15623 | method public default java.util.function.DoubleConsumer andThen(java.util.function.DoubleConsumer); |
| 15624 | } |
| 15625 | |
| 15626 | @java.lang.FunctionalInterface public interface DoubleFunction<R> { |
| 15627 | method public R apply(double); |
| 15628 | } |
| 15629 | |
| 15630 | @java.lang.FunctionalInterface public interface DoublePredicate { |
| 15631 | method public default java.util.function.DoublePredicate and(java.util.function.DoublePredicate); |
| 15632 | method public default java.util.function.DoublePredicate negate(); |
| 15633 | method public default java.util.function.DoublePredicate or(java.util.function.DoublePredicate); |
| 15634 | method public boolean test(double); |
| 15635 | } |
| 15636 | |
| 15637 | @java.lang.FunctionalInterface public interface DoubleSupplier { |
| 15638 | method public double getAsDouble(); |
| 15639 | } |
| 15640 | |
| 15641 | @java.lang.FunctionalInterface public interface DoubleToIntFunction { |
| 15642 | method public int applyAsInt(double); |
| 15643 | } |
| 15644 | |
| 15645 | @java.lang.FunctionalInterface public interface DoubleToLongFunction { |
| 15646 | method public long applyAsLong(double); |
| 15647 | } |
| 15648 | |
| 15649 | @java.lang.FunctionalInterface public interface DoubleUnaryOperator { |
| 15650 | method public default java.util.function.DoubleUnaryOperator andThen(java.util.function.DoubleUnaryOperator); |
| 15651 | method public double applyAsDouble(double); |
| 15652 | method public default java.util.function.DoubleUnaryOperator compose(java.util.function.DoubleUnaryOperator); |
| 15653 | method public static java.util.function.DoubleUnaryOperator identity(); |
| 15654 | } |
| 15655 | |
| 15656 | @java.lang.FunctionalInterface public interface Function<T, R> { |
| 15657 | method public default <V> java.util.function.Function<T,V> andThen(java.util.function.Function<? super R,? extends V>); |
| 15658 | method public R apply(T); |
| 15659 | method public default <V> java.util.function.Function<V,R> compose(java.util.function.Function<? super V,? extends T>); |
| 15660 | method public static <T> java.util.function.Function<T,T> identity(); |
| 15661 | } |
| 15662 | |
| 15663 | @java.lang.FunctionalInterface public interface IntBinaryOperator { |
| 15664 | method public int applyAsInt(int, int); |
| 15665 | } |
| 15666 | |
| 15667 | @java.lang.FunctionalInterface public interface IntConsumer { |
| 15668 | method public void accept(int); |
| 15669 | method public default java.util.function.IntConsumer andThen(java.util.function.IntConsumer); |
| 15670 | } |
| 15671 | |
| 15672 | @java.lang.FunctionalInterface public interface IntFunction<R> { |
| 15673 | method public R apply(int); |
| 15674 | } |
| 15675 | |
| 15676 | @java.lang.FunctionalInterface public interface IntPredicate { |
| 15677 | method public default java.util.function.IntPredicate and(java.util.function.IntPredicate); |
| 15678 | method public default java.util.function.IntPredicate negate(); |
| 15679 | method public default java.util.function.IntPredicate or(java.util.function.IntPredicate); |
| 15680 | method public boolean test(int); |
| 15681 | } |
| 15682 | |
| 15683 | @java.lang.FunctionalInterface public interface IntSupplier { |
| 15684 | method public int getAsInt(); |
| 15685 | } |
| 15686 | |
| 15687 | @java.lang.FunctionalInterface public interface IntToDoubleFunction { |
| 15688 | method public double applyAsDouble(int); |
| 15689 | } |
| 15690 | |
| 15691 | @java.lang.FunctionalInterface public interface IntToLongFunction { |
| 15692 | method public long applyAsLong(int); |
| 15693 | } |
| 15694 | |
| 15695 | @java.lang.FunctionalInterface public interface IntUnaryOperator { |
| 15696 | method public default java.util.function.IntUnaryOperator andThen(java.util.function.IntUnaryOperator); |
| 15697 | method public int applyAsInt(int); |
| 15698 | method public default java.util.function.IntUnaryOperator compose(java.util.function.IntUnaryOperator); |
| 15699 | method public static java.util.function.IntUnaryOperator identity(); |
| 15700 | } |
| 15701 | |
| 15702 | @java.lang.FunctionalInterface public interface LongBinaryOperator { |
| 15703 | method public long applyAsLong(long, long); |
| 15704 | } |
| 15705 | |
| 15706 | @java.lang.FunctionalInterface public interface LongConsumer { |
| 15707 | method public void accept(long); |
| 15708 | method public default java.util.function.LongConsumer andThen(java.util.function.LongConsumer); |
| 15709 | } |
| 15710 | |
| 15711 | @java.lang.FunctionalInterface public interface LongFunction<R> { |
| 15712 | method public R apply(long); |
| 15713 | } |
| 15714 | |
| 15715 | @java.lang.FunctionalInterface public interface LongPredicate { |
| 15716 | method public default java.util.function.LongPredicate and(java.util.function.LongPredicate); |
| 15717 | method public default java.util.function.LongPredicate negate(); |
| 15718 | method public default java.util.function.LongPredicate or(java.util.function.LongPredicate); |
| 15719 | method public boolean test(long); |
| 15720 | } |
| 15721 | |
| 15722 | @java.lang.FunctionalInterface public interface LongSupplier { |
| 15723 | method public long getAsLong(); |
| 15724 | } |
| 15725 | |
| 15726 | @java.lang.FunctionalInterface public interface LongToDoubleFunction { |
| 15727 | method public double applyAsDouble(long); |
| 15728 | } |
| 15729 | |
| 15730 | @java.lang.FunctionalInterface public interface LongToIntFunction { |
| 15731 | method public int applyAsInt(long); |
| 15732 | } |
| 15733 | |
| 15734 | @java.lang.FunctionalInterface public interface LongUnaryOperator { |
| 15735 | method public default java.util.function.LongUnaryOperator andThen(java.util.function.LongUnaryOperator); |
| 15736 | method public long applyAsLong(long); |
| 15737 | method public default java.util.function.LongUnaryOperator compose(java.util.function.LongUnaryOperator); |
| 15738 | method public static java.util.function.LongUnaryOperator identity(); |
| 15739 | } |
| 15740 | |
| 15741 | @java.lang.FunctionalInterface public interface ObjDoubleConsumer<T> { |
| 15742 | method public void accept(T, double); |
| 15743 | } |
| 15744 | |
| 15745 | @java.lang.FunctionalInterface public interface ObjIntConsumer<T> { |
| 15746 | method public void accept(T, int); |
| 15747 | } |
| 15748 | |
| 15749 | @java.lang.FunctionalInterface public interface ObjLongConsumer<T> { |
| 15750 | method public void accept(T, long); |
| 15751 | } |
| 15752 | |
| 15753 | @java.lang.FunctionalInterface public interface Predicate<T> { |
| 15754 | method public default java.util.function.Predicate<T> and(java.util.function.Predicate<? super T>); |
| 15755 | method public static <T> java.util.function.Predicate<T> isEqual(Object); |
| 15756 | method public default java.util.function.Predicate<T> negate(); |
| 15757 | method public default java.util.function.Predicate<T> or(java.util.function.Predicate<? super T>); |
| 15758 | method public boolean test(T); |
| 15759 | } |
| 15760 | |
| 15761 | @java.lang.FunctionalInterface public interface Supplier<T> { |
| 15762 | method public T get(); |
| 15763 | } |
| 15764 | |
| 15765 | @java.lang.FunctionalInterface public interface ToDoubleBiFunction<T, U> { |
| 15766 | method public double applyAsDouble(T, U); |
| 15767 | } |
| 15768 | |
| 15769 | @java.lang.FunctionalInterface public interface ToDoubleFunction<T> { |
| 15770 | method public double applyAsDouble(T); |
| 15771 | } |
| 15772 | |
| 15773 | @java.lang.FunctionalInterface public interface ToIntBiFunction<T, U> { |
| 15774 | method public int applyAsInt(T, U); |
| 15775 | } |
| 15776 | |
| 15777 | @java.lang.FunctionalInterface public interface ToIntFunction<T> { |
| 15778 | method public int applyAsInt(T); |
| 15779 | } |
| 15780 | |
| 15781 | @java.lang.FunctionalInterface public interface ToLongBiFunction<T, U> { |
| 15782 | method public long applyAsLong(T, U); |
| 15783 | } |
| 15784 | |
| 15785 | @java.lang.FunctionalInterface public interface ToLongFunction<T> { |
| 15786 | method public long applyAsLong(T); |
| 15787 | } |
| 15788 | |
| 15789 | @java.lang.FunctionalInterface public interface UnaryOperator<T> extends java.util.function.Function<T,T> { |
| 15790 | method public static <T> java.util.function.UnaryOperator<T> identity(); |
| 15791 | } |
| 15792 | |
| 15793 | } |
| 15794 | |
| 15795 | package java.util.jar { |
| 15796 | |
| 15797 | public class Attributes implements java.lang.Cloneable java.util.Map<java.lang.Object,java.lang.Object> { |
| 15798 | ctor public Attributes(); |
| 15799 | ctor public Attributes(int); |
| 15800 | ctor public Attributes(java.util.jar.Attributes); |
| 15801 | method public void clear(); |
| 15802 | method public Object clone(); |
| 15803 | method public boolean containsKey(Object); |
| 15804 | method public boolean containsValue(Object); |
| 15805 | method public java.util.Set<java.util.Map.Entry<java.lang.Object,java.lang.Object>> entrySet(); |
| 15806 | method public Object get(Object); |
| 15807 | method public String getValue(String); |
| 15808 | method public String getValue(java.util.jar.Attributes.Name); |
| 15809 | method public boolean isEmpty(); |
| 15810 | method public java.util.Set<java.lang.Object> keySet(); |
| 15811 | method public Object put(Object, Object); |
| 15812 | method public void putAll(java.util.Map<?,?>); |
| 15813 | method public String putValue(String, String); |
| 15814 | method public Object remove(Object); |
| 15815 | method public int size(); |
| 15816 | method public java.util.Collection<java.lang.Object> values(); |
| 15817 | field protected java.util.Map<java.lang.Object,java.lang.Object> map; |
| 15818 | } |
| 15819 | |
| 15820 | public static class Attributes.Name { |
| 15821 | ctor public Attributes.Name(String); |
| 15822 | field public static final java.util.jar.Attributes.Name CLASS_PATH; |
| 15823 | field public static final java.util.jar.Attributes.Name CONTENT_TYPE; |
| 15824 | field @Deprecated public static final java.util.jar.Attributes.Name EXTENSION_INSTALLATION; |
| 15825 | field public static final java.util.jar.Attributes.Name EXTENSION_LIST; |
| 15826 | field public static final java.util.jar.Attributes.Name EXTENSION_NAME; |
| 15827 | field public static final java.util.jar.Attributes.Name IMPLEMENTATION_TITLE; |
| 15828 | field @Deprecated public static final java.util.jar.Attributes.Name IMPLEMENTATION_URL; |
| 15829 | field public static final java.util.jar.Attributes.Name IMPLEMENTATION_VENDOR; |
| 15830 | field @Deprecated public static final java.util.jar.Attributes.Name IMPLEMENTATION_VENDOR_ID; |
| 15831 | field public static final java.util.jar.Attributes.Name IMPLEMENTATION_VERSION; |
| 15832 | field public static final java.util.jar.Attributes.Name MAIN_CLASS; |
| 15833 | field public static final java.util.jar.Attributes.Name MANIFEST_VERSION; |
| 15834 | field public static final java.util.jar.Attributes.Name SEALED; |
| 15835 | field public static final java.util.jar.Attributes.Name SIGNATURE_VERSION; |
| 15836 | field public static final java.util.jar.Attributes.Name SPECIFICATION_TITLE; |
| 15837 | field public static final java.util.jar.Attributes.Name SPECIFICATION_VENDOR; |
| 15838 | field public static final java.util.jar.Attributes.Name SPECIFICATION_VERSION; |
| 15839 | } |
| 15840 | |
| 15841 | public class JarEntry extends java.util.zip.ZipEntry { |
| 15842 | ctor public JarEntry(String); |
| 15843 | ctor public JarEntry(java.util.zip.ZipEntry); |
| 15844 | ctor public JarEntry(java.util.jar.JarEntry); |
| 15845 | method public java.util.jar.Attributes getAttributes() throws java.io.IOException; |
| 15846 | method public java.security.cert.Certificate[] getCertificates(); |
| 15847 | method public java.security.CodeSigner[] getCodeSigners(); |
| 15848 | field public static final int CENATT = 36; // 0x24 |
| 15849 | field public static final int CENATX = 38; // 0x26 |
| 15850 | field public static final int CENCOM = 32; // 0x20 |
| 15851 | field public static final int CENCRC = 16; // 0x10 |
| 15852 | field public static final int CENDSK = 34; // 0x22 |
| 15853 | field public static final int CENEXT = 30; // 0x1e |
| 15854 | field public static final int CENFLG = 8; // 0x8 |
| 15855 | field public static final int CENHDR = 46; // 0x2e |
| 15856 | field public static final int CENHOW = 10; // 0xa |
| 15857 | field public static final int CENLEN = 24; // 0x18 |
| 15858 | field public static final int CENNAM = 28; // 0x1c |
| 15859 | field public static final int CENOFF = 42; // 0x2a |
| 15860 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 15861 | field public static final int CENSIZ = 20; // 0x14 |
| 15862 | field public static final int CENTIM = 12; // 0xc |
| 15863 | field public static final int CENVEM = 4; // 0x4 |
| 15864 | field public static final int CENVER = 6; // 0x6 |
| 15865 | field public static final int ENDCOM = 20; // 0x14 |
| 15866 | field public static final int ENDHDR = 22; // 0x16 |
| 15867 | field public static final int ENDOFF = 16; // 0x10 |
| 15868 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 15869 | field public static final int ENDSIZ = 12; // 0xc |
| 15870 | field public static final int ENDSUB = 8; // 0x8 |
| 15871 | field public static final int ENDTOT = 10; // 0xa |
| 15872 | field public static final int EXTCRC = 4; // 0x4 |
| 15873 | field public static final int EXTHDR = 16; // 0x10 |
| 15874 | field public static final int EXTLEN = 12; // 0xc |
| 15875 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 15876 | field public static final int EXTSIZ = 8; // 0x8 |
| 15877 | field public static final int LOCCRC = 14; // 0xe |
| 15878 | field public static final int LOCEXT = 28; // 0x1c |
| 15879 | field public static final int LOCFLG = 6; // 0x6 |
| 15880 | field public static final int LOCHDR = 30; // 0x1e |
| 15881 | field public static final int LOCHOW = 8; // 0x8 |
| 15882 | field public static final int LOCLEN = 22; // 0x16 |
| 15883 | field public static final int LOCNAM = 26; // 0x1a |
| 15884 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 15885 | field public static final int LOCSIZ = 18; // 0x12 |
| 15886 | field public static final int LOCTIM = 10; // 0xa |
| 15887 | field public static final int LOCVER = 4; // 0x4 |
| 15888 | } |
| 15889 | |
| 15890 | public class JarException extends java.util.zip.ZipException { |
| 15891 | ctor public JarException(); |
| 15892 | ctor public JarException(String); |
| 15893 | } |
| 15894 | |
| 15895 | public class JarFile extends java.util.zip.ZipFile { |
| 15896 | ctor public JarFile(String) throws java.io.IOException; |
| 15897 | ctor public JarFile(String, boolean) throws java.io.IOException; |
| 15898 | ctor public JarFile(java.io.File) throws java.io.IOException; |
| 15899 | ctor public JarFile(java.io.File, boolean) throws java.io.IOException; |
| 15900 | ctor public JarFile(java.io.File, boolean, int) throws java.io.IOException; |
| 15901 | method public java.util.Enumeration<java.util.jar.JarEntry> entries(); |
| 15902 | method public java.util.jar.JarEntry getJarEntry(String); |
| 15903 | method public java.util.jar.Manifest getManifest() throws java.io.IOException; |
| 15904 | method public java.util.stream.Stream<java.util.jar.JarEntry> stream(); |
| 15905 | field public static final int CENATT = 36; // 0x24 |
| 15906 | field public static final int CENATX = 38; // 0x26 |
| 15907 | field public static final int CENCOM = 32; // 0x20 |
| 15908 | field public static final int CENCRC = 16; // 0x10 |
| 15909 | field public static final int CENDSK = 34; // 0x22 |
| 15910 | field public static final int CENEXT = 30; // 0x1e |
| 15911 | field public static final int CENFLG = 8; // 0x8 |
| 15912 | field public static final int CENHDR = 46; // 0x2e |
| 15913 | field public static final int CENHOW = 10; // 0xa |
| 15914 | field public static final int CENLEN = 24; // 0x18 |
| 15915 | field public static final int CENNAM = 28; // 0x1c |
| 15916 | field public static final int CENOFF = 42; // 0x2a |
| 15917 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 15918 | field public static final int CENSIZ = 20; // 0x14 |
| 15919 | field public static final int CENTIM = 12; // 0xc |
| 15920 | field public static final int CENVEM = 4; // 0x4 |
| 15921 | field public static final int CENVER = 6; // 0x6 |
| 15922 | field public static final int ENDCOM = 20; // 0x14 |
| 15923 | field public static final int ENDHDR = 22; // 0x16 |
| 15924 | field public static final int ENDOFF = 16; // 0x10 |
| 15925 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 15926 | field public static final int ENDSIZ = 12; // 0xc |
| 15927 | field public static final int ENDSUB = 8; // 0x8 |
| 15928 | field public static final int ENDTOT = 10; // 0xa |
| 15929 | field public static final int EXTCRC = 4; // 0x4 |
| 15930 | field public static final int EXTHDR = 16; // 0x10 |
| 15931 | field public static final int EXTLEN = 12; // 0xc |
| 15932 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 15933 | field public static final int EXTSIZ = 8; // 0x8 |
| 15934 | field public static final int LOCCRC = 14; // 0xe |
| 15935 | field public static final int LOCEXT = 28; // 0x1c |
| 15936 | field public static final int LOCFLG = 6; // 0x6 |
| 15937 | field public static final int LOCHDR = 30; // 0x1e |
| 15938 | field public static final int LOCHOW = 8; // 0x8 |
| 15939 | field public static final int LOCLEN = 22; // 0x16 |
| 15940 | field public static final int LOCNAM = 26; // 0x1a |
| 15941 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 15942 | field public static final int LOCSIZ = 18; // 0x12 |
| 15943 | field public static final int LOCTIM = 10; // 0xa |
| 15944 | field public static final int LOCVER = 4; // 0x4 |
| 15945 | field public static final String MANIFEST_NAME = "META-INF/MANIFEST.MF"; |
| 15946 | } |
| 15947 | |
| 15948 | public class JarInputStream extends java.util.zip.ZipInputStream { |
| 15949 | ctor public JarInputStream(java.io.InputStream) throws java.io.IOException; |
| 15950 | ctor public JarInputStream(java.io.InputStream, boolean) throws java.io.IOException; |
| 15951 | method public java.util.jar.Manifest getManifest(); |
| 15952 | method public java.util.jar.JarEntry getNextJarEntry() throws java.io.IOException; |
| 15953 | field public static final int CENATT = 36; // 0x24 |
| 15954 | field public static final int CENATX = 38; // 0x26 |
| 15955 | field public static final int CENCOM = 32; // 0x20 |
| 15956 | field public static final int CENCRC = 16; // 0x10 |
| 15957 | field public static final int CENDSK = 34; // 0x22 |
| 15958 | field public static final int CENEXT = 30; // 0x1e |
| 15959 | field public static final int CENFLG = 8; // 0x8 |
| 15960 | field public static final int CENHDR = 46; // 0x2e |
| 15961 | field public static final int CENHOW = 10; // 0xa |
| 15962 | field public static final int CENLEN = 24; // 0x18 |
| 15963 | field public static final int CENNAM = 28; // 0x1c |
| 15964 | field public static final int CENOFF = 42; // 0x2a |
| 15965 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 15966 | field public static final int CENSIZ = 20; // 0x14 |
| 15967 | field public static final int CENTIM = 12; // 0xc |
| 15968 | field public static final int CENVEM = 4; // 0x4 |
| 15969 | field public static final int CENVER = 6; // 0x6 |
| 15970 | field public static final int ENDCOM = 20; // 0x14 |
| 15971 | field public static final int ENDHDR = 22; // 0x16 |
| 15972 | field public static final int ENDOFF = 16; // 0x10 |
| 15973 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 15974 | field public static final int ENDSIZ = 12; // 0xc |
| 15975 | field public static final int ENDSUB = 8; // 0x8 |
| 15976 | field public static final int ENDTOT = 10; // 0xa |
| 15977 | field public static final int EXTCRC = 4; // 0x4 |
| 15978 | field public static final int EXTHDR = 16; // 0x10 |
| 15979 | field public static final int EXTLEN = 12; // 0xc |
| 15980 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 15981 | field public static final int EXTSIZ = 8; // 0x8 |
| 15982 | field public static final int LOCCRC = 14; // 0xe |
| 15983 | field public static final int LOCEXT = 28; // 0x1c |
| 15984 | field public static final int LOCFLG = 6; // 0x6 |
| 15985 | field public static final int LOCHDR = 30; // 0x1e |
| 15986 | field public static final int LOCHOW = 8; // 0x8 |
| 15987 | field public static final int LOCLEN = 22; // 0x16 |
| 15988 | field public static final int LOCNAM = 26; // 0x1a |
| 15989 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 15990 | field public static final int LOCSIZ = 18; // 0x12 |
| 15991 | field public static final int LOCTIM = 10; // 0xa |
| 15992 | field public static final int LOCVER = 4; // 0x4 |
| 15993 | } |
| 15994 | |
| 15995 | public class JarOutputStream extends java.util.zip.ZipOutputStream { |
| 15996 | ctor public JarOutputStream(java.io.OutputStream, java.util.jar.Manifest) throws java.io.IOException; |
| 15997 | ctor public JarOutputStream(java.io.OutputStream) throws java.io.IOException; |
| 15998 | field public static final int CENATT = 36; // 0x24 |
| 15999 | field public static final int CENATX = 38; // 0x26 |
| 16000 | field public static final int CENCOM = 32; // 0x20 |
| 16001 | field public static final int CENCRC = 16; // 0x10 |
| 16002 | field public static final int CENDSK = 34; // 0x22 |
| 16003 | field public static final int CENEXT = 30; // 0x1e |
| 16004 | field public static final int CENFLG = 8; // 0x8 |
| 16005 | field public static final int CENHDR = 46; // 0x2e |
| 16006 | field public static final int CENHOW = 10; // 0xa |
| 16007 | field public static final int CENLEN = 24; // 0x18 |
| 16008 | field public static final int CENNAM = 28; // 0x1c |
| 16009 | field public static final int CENOFF = 42; // 0x2a |
| 16010 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 16011 | field public static final int CENSIZ = 20; // 0x14 |
| 16012 | field public static final int CENTIM = 12; // 0xc |
| 16013 | field public static final int CENVEM = 4; // 0x4 |
| 16014 | field public static final int CENVER = 6; // 0x6 |
| 16015 | field public static final int ENDCOM = 20; // 0x14 |
| 16016 | field public static final int ENDHDR = 22; // 0x16 |
| 16017 | field public static final int ENDOFF = 16; // 0x10 |
| 16018 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 16019 | field public static final int ENDSIZ = 12; // 0xc |
| 16020 | field public static final int ENDSUB = 8; // 0x8 |
| 16021 | field public static final int ENDTOT = 10; // 0xa |
| 16022 | field public static final int EXTCRC = 4; // 0x4 |
| 16023 | field public static final int EXTHDR = 16; // 0x10 |
| 16024 | field public static final int EXTLEN = 12; // 0xc |
| 16025 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 16026 | field public static final int EXTSIZ = 8; // 0x8 |
| 16027 | field public static final int LOCCRC = 14; // 0xe |
| 16028 | field public static final int LOCEXT = 28; // 0x1c |
| 16029 | field public static final int LOCFLG = 6; // 0x6 |
| 16030 | field public static final int LOCHDR = 30; // 0x1e |
| 16031 | field public static final int LOCHOW = 8; // 0x8 |
| 16032 | field public static final int LOCLEN = 22; // 0x16 |
| 16033 | field public static final int LOCNAM = 26; // 0x1a |
| 16034 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 16035 | field public static final int LOCSIZ = 18; // 0x12 |
| 16036 | field public static final int LOCTIM = 10; // 0xa |
| 16037 | field public static final int LOCVER = 4; // 0x4 |
| 16038 | } |
| 16039 | |
| 16040 | public class Manifest implements java.lang.Cloneable { |
| 16041 | ctor public Manifest(); |
| 16042 | ctor public Manifest(java.io.InputStream) throws java.io.IOException; |
| 16043 | ctor public Manifest(java.util.jar.Manifest); |
| 16044 | method public void clear(); |
| 16045 | method public Object clone(); |
| 16046 | method public java.util.jar.Attributes getAttributes(String); |
| 16047 | method public java.util.Map<java.lang.String,java.util.jar.Attributes> getEntries(); |
| 16048 | method public java.util.jar.Attributes getMainAttributes(); |
| 16049 | method public void read(java.io.InputStream) throws java.io.IOException; |
| 16050 | method public void write(java.io.OutputStream) throws java.io.IOException; |
| 16051 | } |
| 16052 | |
| 16053 | public abstract class Pack200 { |
| 16054 | method public static java.util.jar.Pack200.Packer newPacker(); |
| 16055 | method public static java.util.jar.Pack200.Unpacker newUnpacker(); |
| 16056 | } |
| 16057 | |
| 16058 | public static interface Pack200.Packer { |
| 16059 | method @Deprecated public default void addPropertyChangeListener(java.beans.PropertyChangeListener); |
| 16060 | method public void pack(java.util.jar.JarFile, java.io.OutputStream) throws java.io.IOException; |
| 16061 | method public void pack(java.util.jar.JarInputStream, java.io.OutputStream) throws java.io.IOException; |
| 16062 | method public java.util.SortedMap<java.lang.String,java.lang.String> properties(); |
| 16063 | method @Deprecated public default void removePropertyChangeListener(java.beans.PropertyChangeListener); |
| 16064 | field public static final String CLASS_ATTRIBUTE_PFX = "pack.class.attribute."; |
| 16065 | field public static final String CODE_ATTRIBUTE_PFX = "pack.code.attribute."; |
| 16066 | field public static final String DEFLATE_HINT = "pack.deflate.hint"; |
| 16067 | field public static final String EFFORT = "pack.effort"; |
| 16068 | field public static final String ERROR = "error"; |
| 16069 | field public static final String FALSE = "false"; |
| 16070 | field public static final String FIELD_ATTRIBUTE_PFX = "pack.field.attribute."; |
| 16071 | field public static final String KEEP = "keep"; |
| 16072 | field public static final String KEEP_FILE_ORDER = "pack.keep.file.order"; |
| 16073 | field public static final String LATEST = "latest"; |
| 16074 | field public static final String METHOD_ATTRIBUTE_PFX = "pack.method.attribute."; |
| 16075 | field public static final String MODIFICATION_TIME = "pack.modification.time"; |
| 16076 | field public static final String PASS = "pass"; |
| 16077 | field public static final String PASS_FILE_PFX = "pack.pass.file."; |
| 16078 | field public static final String PROGRESS = "pack.progress"; |
| 16079 | field public static final String SEGMENT_LIMIT = "pack.segment.limit"; |
| 16080 | field public static final String STRIP = "strip"; |
| 16081 | field public static final String TRUE = "true"; |
| 16082 | field public static final String UNKNOWN_ATTRIBUTE = "pack.unknown.attribute"; |
| 16083 | } |
| 16084 | |
| 16085 | public static interface Pack200.Unpacker { |
| 16086 | method @Deprecated public default void addPropertyChangeListener(java.beans.PropertyChangeListener); |
| 16087 | method public java.util.SortedMap<java.lang.String,java.lang.String> properties(); |
| 16088 | method @Deprecated public default void removePropertyChangeListener(java.beans.PropertyChangeListener); |
| 16089 | method public void unpack(java.io.InputStream, java.util.jar.JarOutputStream) throws java.io.IOException; |
| 16090 | method public void unpack(java.io.File, java.util.jar.JarOutputStream) throws java.io.IOException; |
| 16091 | field public static final String DEFLATE_HINT = "unpack.deflate.hint"; |
| 16092 | field public static final String FALSE = "false"; |
| 16093 | field public static final String KEEP = "keep"; |
| 16094 | field public static final String PROGRESS = "unpack.progress"; |
| 16095 | field public static final String TRUE = "true"; |
| 16096 | } |
| 16097 | |
| 16098 | } |
| 16099 | |
| 16100 | package java.util.logging { |
| 16101 | |
| 16102 | public class ConsoleHandler extends java.util.logging.StreamHandler { |
| 16103 | ctor public ConsoleHandler(); |
| 16104 | method public void close(); |
| 16105 | } |
| 16106 | |
| 16107 | public class ErrorManager { |
| 16108 | ctor public ErrorManager(); |
| 16109 | method public void error(String, Exception, int); |
| 16110 | field public static final int CLOSE_FAILURE = 3; // 0x3 |
| 16111 | field public static final int FLUSH_FAILURE = 2; // 0x2 |
| 16112 | field public static final int FORMAT_FAILURE = 5; // 0x5 |
| 16113 | field public static final int GENERIC_FAILURE = 0; // 0x0 |
| 16114 | field public static final int OPEN_FAILURE = 4; // 0x4 |
| 16115 | field public static final int WRITE_FAILURE = 1; // 0x1 |
| 16116 | } |
| 16117 | |
| 16118 | public class FileHandler extends java.util.logging.StreamHandler { |
| 16119 | ctor public FileHandler() throws java.io.IOException, java.lang.SecurityException; |
| 16120 | ctor public FileHandler(String) throws java.io.IOException, java.lang.SecurityException; |
| 16121 | ctor public FileHandler(String, boolean) throws java.io.IOException, java.lang.SecurityException; |
| 16122 | ctor public FileHandler(String, int, int) throws java.io.IOException, java.lang.SecurityException; |
| 16123 | ctor public FileHandler(String, int, int, boolean) throws java.io.IOException, java.lang.SecurityException; |
| 16124 | } |
| 16125 | |
| 16126 | @java.lang.FunctionalInterface public interface Filter { |
| 16127 | method public boolean isLoggable(java.util.logging.LogRecord); |
| 16128 | } |
| 16129 | |
| 16130 | public abstract class Formatter { |
| 16131 | ctor protected Formatter(); |
| 16132 | method public abstract String format(java.util.logging.LogRecord); |
| 16133 | method public String formatMessage(java.util.logging.LogRecord); |
| 16134 | method public String getHead(java.util.logging.Handler); |
| 16135 | method public String getTail(java.util.logging.Handler); |
| 16136 | } |
| 16137 | |
| 16138 | public abstract class Handler { |
| 16139 | ctor protected Handler(); |
| 16140 | method public abstract void close() throws java.lang.SecurityException; |
| 16141 | method public abstract void flush(); |
| 16142 | method public String getEncoding(); |
| 16143 | method public java.util.logging.ErrorManager getErrorManager(); |
| 16144 | method public java.util.logging.Filter getFilter(); |
| 16145 | method public java.util.logging.Formatter getFormatter(); |
| 16146 | method public java.util.logging.Level getLevel(); |
| 16147 | method public boolean isLoggable(java.util.logging.LogRecord); |
| 16148 | method public abstract void publish(java.util.logging.LogRecord); |
| 16149 | method protected void reportError(String, Exception, int); |
| 16150 | method public void setEncoding(String) throws java.lang.SecurityException, java.io.UnsupportedEncodingException; |
| 16151 | method public void setErrorManager(java.util.logging.ErrorManager); |
| 16152 | method public void setFilter(java.util.logging.Filter) throws java.lang.SecurityException; |
| 16153 | method public void setFormatter(java.util.logging.Formatter) throws java.lang.SecurityException; |
| 16154 | method public void setLevel(java.util.logging.Level) throws java.lang.SecurityException; |
| 16155 | } |
| 16156 | |
| 16157 | public class Level implements java.io.Serializable { |
| 16158 | ctor protected Level(@NonNull String, int); |
| 16159 | ctor protected Level(@NonNull String, int, @Nullable String); |
| 16160 | method @NonNull public String getLocalizedName(); |
| 16161 | method @NonNull public String getName(); |
| 16162 | method @Nullable public String getResourceBundleName(); |
| 16163 | method public final int intValue(); |
| 16164 | method @NonNull public static java.util.logging.Level parse(@NonNull String) throws java.lang.IllegalArgumentException; |
| 16165 | method @NonNull public final String toString(); |
| 16166 | field @NonNull public static final java.util.logging.Level ALL; |
| 16167 | field @NonNull public static final java.util.logging.Level CONFIG; |
| 16168 | field @NonNull public static final java.util.logging.Level FINE; |
| 16169 | field @NonNull public static final java.util.logging.Level FINER; |
| 16170 | field @NonNull public static final java.util.logging.Level FINEST; |
| 16171 | field @NonNull public static final java.util.logging.Level INFO; |
| 16172 | field @NonNull public static final java.util.logging.Level OFF; |
| 16173 | field @NonNull public static final java.util.logging.Level SEVERE; |
| 16174 | field @NonNull public static final java.util.logging.Level WARNING; |
| 16175 | } |
| 16176 | |
| 16177 | public class LogManager { |
| 16178 | ctor protected LogManager(); |
| 16179 | method public boolean addLogger(java.util.logging.Logger); |
| 16180 | method @Deprecated public void addPropertyChangeListener(java.beans.PropertyChangeListener) throws java.lang.SecurityException; |
| 16181 | method public void checkAccess() throws java.lang.SecurityException; |
| 16182 | method public static java.util.logging.LogManager getLogManager(); |
| 16183 | method public java.util.logging.Logger getLogger(String); |
| 16184 | method public java.util.Enumeration<java.lang.String> getLoggerNames(); |
| 16185 | method public static java.util.logging.LoggingMXBean getLoggingMXBean(); |
| 16186 | method public String getProperty(String); |
| 16187 | method public void readConfiguration() throws java.io.IOException, java.lang.SecurityException; |
| 16188 | method public void readConfiguration(java.io.InputStream) throws java.io.IOException, java.lang.SecurityException; |
| 16189 | method @Deprecated public void removePropertyChangeListener(java.beans.PropertyChangeListener) throws java.lang.SecurityException; |
| 16190 | method public void reset() throws java.lang.SecurityException; |
| 16191 | field public static final String LOGGING_MXBEAN_NAME = "java.util.logging:type=Logging"; |
| 16192 | } |
| 16193 | |
| 16194 | public class LogRecord implements java.io.Serializable { |
| 16195 | ctor public LogRecord(java.util.logging.Level, String); |
| 16196 | method public java.util.logging.Level getLevel(); |
| 16197 | method public String getLoggerName(); |
| 16198 | method public String getMessage(); |
| 16199 | method public long getMillis(); |
| 16200 | method public Object[] getParameters(); |
| 16201 | method public java.util.ResourceBundle getResourceBundle(); |
| 16202 | method public String getResourceBundleName(); |
| 16203 | method public long getSequenceNumber(); |
| 16204 | method public String getSourceClassName(); |
| 16205 | method public String getSourceMethodName(); |
| 16206 | method public int getThreadID(); |
| 16207 | method public Throwable getThrown(); |
| 16208 | method public void setLevel(java.util.logging.Level); |
| 16209 | method public void setLoggerName(String); |
| 16210 | method public void setMessage(String); |
| 16211 | method public void setMillis(long); |
| 16212 | method public void setParameters(Object[]); |
| 16213 | method public void setResourceBundle(java.util.ResourceBundle); |
| 16214 | method public void setResourceBundleName(String); |
| 16215 | method public void setSequenceNumber(long); |
| 16216 | method public void setSourceClassName(String); |
| 16217 | method public void setSourceMethodName(String); |
| 16218 | method public void setThreadID(int); |
| 16219 | method public void setThrown(Throwable); |
| 16220 | } |
| 16221 | |
| 16222 | public class Logger { |
| 16223 | ctor protected Logger(@Nullable String, @Nullable String); |
| 16224 | method public void addHandler(@NonNull java.util.logging.Handler) throws java.lang.SecurityException; |
| 16225 | method public void config(@Nullable String); |
| 16226 | method public void config(@NonNull java.util.function.Supplier<java.lang.String>); |
| 16227 | method public void entering(@Nullable String, @Nullable String); |
| 16228 | method public void entering(@Nullable String, @Nullable String, @Nullable Object); |
| 16229 | method public void entering(@Nullable String, @Nullable String, @Nullable Object[]); |
| 16230 | method public void exiting(@Nullable String, @Nullable String); |
| 16231 | method public void exiting(@Nullable String, @Nullable String, @Nullable Object); |
| 16232 | method public void fine(@Nullable String); |
| 16233 | method public void fine(@NonNull java.util.function.Supplier<java.lang.String>); |
| 16234 | method public void finer(@Nullable String); |
| 16235 | method public void finer(@NonNull java.util.function.Supplier<java.lang.String>); |
| 16236 | method public void finest(@Nullable String); |
| 16237 | method public void finest(@NonNull java.util.function.Supplier<java.lang.String>); |
| 16238 | method @NonNull public static java.util.logging.Logger getAnonymousLogger(); |
| 16239 | method @NonNull public static java.util.logging.Logger getAnonymousLogger(@Nullable String); |
| 16240 | method @Nullable public java.util.logging.Filter getFilter(); |
| 16241 | method @NonNull public static final java.util.logging.Logger getGlobal(); |
| 16242 | method @NonNull public java.util.logging.Handler[] getHandlers(); |
| 16243 | method @Nullable public java.util.logging.Level getLevel(); |
| 16244 | method @NonNull public static java.util.logging.Logger getLogger(@NonNull String); |
| 16245 | method @NonNull public static java.util.logging.Logger getLogger(@NonNull String, @Nullable String); |
| 16246 | method @Nullable public String getName(); |
| 16247 | method @Nullable public java.util.logging.Logger getParent(); |
| 16248 | method @Nullable public java.util.ResourceBundle getResourceBundle(); |
| 16249 | method @Nullable public String getResourceBundleName(); |
| 16250 | method public boolean getUseParentHandlers(); |
| 16251 | method public void info(@Nullable String); |
| 16252 | method public void info(@NonNull java.util.function.Supplier<java.lang.String>); |
| 16253 | method public boolean isLoggable(@NonNull java.util.logging.Level); |
| 16254 | method public void log(@NonNull java.util.logging.LogRecord); |
| 16255 | method public void log(@NonNull java.util.logging.Level, @Nullable String); |
| 16256 | method public void log(@NonNull java.util.logging.Level, @NonNull java.util.function.Supplier<java.lang.String>); |
| 16257 | method public void log(@NonNull java.util.logging.Level, @Nullable String, @Nullable Object); |
| 16258 | method public void log(@NonNull java.util.logging.Level, @Nullable String, @Nullable Object[]); |
| 16259 | method public void log(@NonNull java.util.logging.Level, @Nullable String, @Nullable Throwable); |
| 16260 | method public void log(@NonNull java.util.logging.Level, @Nullable Throwable, @NonNull java.util.function.Supplier<java.lang.String>); |
| 16261 | method public void logp(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String); |
| 16262 | method public void logp(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @NonNull java.util.function.Supplier<java.lang.String>); |
| 16263 | method public void logp(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String, @Nullable Object); |
| 16264 | method public void logp(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String, @Nullable Object[]); |
| 16265 | method public void logp(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String, @Nullable Throwable); |
| 16266 | method public void logp(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable Throwable, @NonNull java.util.function.Supplier<java.lang.String>); |
| 16267 | method @Deprecated public void logrb(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String, @Nullable String); |
| 16268 | method @Deprecated public void logrb(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String, @Nullable String, @Nullable Object); |
| 16269 | method @Deprecated public void logrb(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String, @Nullable String, @Nullable Object[]); |
| 16270 | method public void logrb(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable java.util.ResourceBundle, @Nullable String, @Nullable java.lang.Object...); |
| 16271 | method @Deprecated public void logrb(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable String, @Nullable String, @Nullable Throwable); |
| 16272 | method public void logrb(@NonNull java.util.logging.Level, @Nullable String, @Nullable String, @Nullable java.util.ResourceBundle, @Nullable String, @Nullable Throwable); |
| 16273 | method public void removeHandler(@Nullable java.util.logging.Handler) throws java.lang.SecurityException; |
| 16274 | method public void setFilter(@Nullable java.util.logging.Filter) throws java.lang.SecurityException; |
| 16275 | method public void setLevel(@Nullable java.util.logging.Level) throws java.lang.SecurityException; |
| 16276 | method public void setParent(@NonNull java.util.logging.Logger); |
| 16277 | method public void setResourceBundle(@NonNull java.util.ResourceBundle); |
| 16278 | method public void setUseParentHandlers(boolean); |
| 16279 | method public void severe(@Nullable String); |
| 16280 | method public void severe(@NonNull java.util.function.Supplier<java.lang.String>); |
| 16281 | method public void throwing(@Nullable String, @Nullable String, @Nullable Throwable); |
| 16282 | method public void warning(@Nullable String); |
| 16283 | method public void warning(@NonNull java.util.function.Supplier<java.lang.String>); |
| 16284 | field @NonNull public static final String GLOBAL_LOGGER_NAME = "global"; |
| 16285 | field @Deprecated @NonNull public static final java.util.logging.Logger global; |
| 16286 | } |
| 16287 | |
| 16288 | public interface LoggingMXBean { |
| 16289 | method public String getLoggerLevel(String); |
| 16290 | method public java.util.List<java.lang.String> getLoggerNames(); |
| 16291 | method public String getParentLoggerName(String); |
| 16292 | method public void setLoggerLevel(String, String); |
| 16293 | } |
| 16294 | |
| 16295 | public final class LoggingPermission extends java.security.BasicPermission { |
| 16296 | ctor public LoggingPermission(String, String) throws java.lang.IllegalArgumentException; |
| 16297 | } |
| 16298 | |
| 16299 | public class MemoryHandler extends java.util.logging.Handler { |
| 16300 | ctor public MemoryHandler(); |
| 16301 | ctor public MemoryHandler(java.util.logging.Handler, int, java.util.logging.Level); |
| 16302 | method public void close() throws java.lang.SecurityException; |
| 16303 | method public void flush(); |
| 16304 | method public java.util.logging.Level getPushLevel(); |
| 16305 | method public void publish(java.util.logging.LogRecord); |
| 16306 | method public void push(); |
| 16307 | method public void setPushLevel(java.util.logging.Level) throws java.lang.SecurityException; |
| 16308 | } |
| 16309 | |
| 16310 | public class SimpleFormatter extends java.util.logging.Formatter { |
| 16311 | ctor public SimpleFormatter(); |
| 16312 | method public String format(java.util.logging.LogRecord); |
| 16313 | } |
| 16314 | |
| 16315 | public class SocketHandler extends java.util.logging.StreamHandler { |
| 16316 | ctor public SocketHandler() throws java.io.IOException; |
| 16317 | ctor public SocketHandler(String, int) throws java.io.IOException; |
| 16318 | } |
| 16319 | |
| 16320 | public class StreamHandler extends java.util.logging.Handler { |
| 16321 | ctor public StreamHandler(); |
| 16322 | ctor public StreamHandler(java.io.OutputStream, java.util.logging.Formatter); |
| 16323 | method public void close() throws java.lang.SecurityException; |
| 16324 | method public void flush(); |
| 16325 | method public void publish(java.util.logging.LogRecord); |
| 16326 | method protected void setOutputStream(java.io.OutputStream) throws java.lang.SecurityException; |
| 16327 | } |
| 16328 | |
| 16329 | public class XMLFormatter extends java.util.logging.Formatter { |
| 16330 | ctor public XMLFormatter(); |
| 16331 | method public String format(java.util.logging.LogRecord); |
| 16332 | } |
| 16333 | |
| 16334 | } |
| 16335 | |
| 16336 | package java.util.prefs { |
| 16337 | |
| 16338 | public abstract class AbstractPreferences extends java.util.prefs.Preferences { |
| 16339 | ctor protected AbstractPreferences(java.util.prefs.AbstractPreferences, String); |
| 16340 | method public String absolutePath(); |
| 16341 | method public void addNodeChangeListener(java.util.prefs.NodeChangeListener); |
| 16342 | method public void addPreferenceChangeListener(java.util.prefs.PreferenceChangeListener); |
| 16343 | method protected final java.util.prefs.AbstractPreferences[] cachedChildren(); |
| 16344 | method protected abstract java.util.prefs.AbstractPreferences childSpi(String); |
| 16345 | method public String[] childrenNames() throws java.util.prefs.BackingStoreException; |
| 16346 | method protected abstract String[] childrenNamesSpi() throws java.util.prefs.BackingStoreException; |
| 16347 | method public void clear() throws java.util.prefs.BackingStoreException; |
| 16348 | method public void exportNode(java.io.OutputStream) throws java.util.prefs.BackingStoreException, java.io.IOException; |
| 16349 | method public void exportSubtree(java.io.OutputStream) throws java.util.prefs.BackingStoreException, java.io.IOException; |
| 16350 | method public void flush() throws java.util.prefs.BackingStoreException; |
| 16351 | method protected abstract void flushSpi() throws java.util.prefs.BackingStoreException; |
| 16352 | method public String get(String, String); |
| 16353 | method public boolean getBoolean(String, boolean); |
| 16354 | method public byte[] getByteArray(String, byte[]); |
| 16355 | method protected java.util.prefs.AbstractPreferences getChild(String) throws java.util.prefs.BackingStoreException; |
| 16356 | method public double getDouble(String, double); |
| 16357 | method public float getFloat(String, float); |
| 16358 | method public int getInt(String, int); |
| 16359 | method public long getLong(String, long); |
| 16360 | method protected abstract String getSpi(String); |
| 16361 | method protected boolean isRemoved(); |
| 16362 | method public boolean isUserNode(); |
| 16363 | method public String[] keys() throws java.util.prefs.BackingStoreException; |
| 16364 | method protected abstract String[] keysSpi() throws java.util.prefs.BackingStoreException; |
| 16365 | method public String name(); |
| 16366 | method public java.util.prefs.Preferences node(String); |
| 16367 | method public boolean nodeExists(String) throws java.util.prefs.BackingStoreException; |
| 16368 | method public java.util.prefs.Preferences parent(); |
| 16369 | method public void put(String, String); |
| 16370 | method public void putBoolean(String, boolean); |
| 16371 | method public void putByteArray(String, byte[]); |
| 16372 | method public void putDouble(String, double); |
| 16373 | method public void putFloat(String, float); |
| 16374 | method public void putInt(String, int); |
| 16375 | method public void putLong(String, long); |
| 16376 | method protected abstract void putSpi(String, String); |
| 16377 | method public void remove(String); |
| 16378 | method public void removeNode() throws java.util.prefs.BackingStoreException; |
| 16379 | method public void removeNodeChangeListener(java.util.prefs.NodeChangeListener); |
| 16380 | method protected abstract void removeNodeSpi() throws java.util.prefs.BackingStoreException; |
| 16381 | method public void removePreferenceChangeListener(java.util.prefs.PreferenceChangeListener); |
| 16382 | method protected abstract void removeSpi(String); |
| 16383 | method public void sync() throws java.util.prefs.BackingStoreException; |
| 16384 | method protected abstract void syncSpi() throws java.util.prefs.BackingStoreException; |
| 16385 | field protected final Object lock; |
| 16386 | field protected boolean newNode; |
| 16387 | } |
| 16388 | |
| 16389 | public class BackingStoreException extends java.lang.Exception { |
| 16390 | ctor public BackingStoreException(String); |
| 16391 | ctor public BackingStoreException(Throwable); |
| 16392 | } |
| 16393 | |
| 16394 | public class InvalidPreferencesFormatException extends java.lang.Exception { |
| 16395 | ctor public InvalidPreferencesFormatException(Throwable); |
| 16396 | ctor public InvalidPreferencesFormatException(String); |
| 16397 | ctor public InvalidPreferencesFormatException(String, Throwable); |
| 16398 | } |
| 16399 | |
| 16400 | public class NodeChangeEvent extends java.util.EventObject { |
| 16401 | ctor public NodeChangeEvent(java.util.prefs.Preferences, java.util.prefs.Preferences); |
| 16402 | method public java.util.prefs.Preferences getChild(); |
| 16403 | method public java.util.prefs.Preferences getParent(); |
| 16404 | } |
| 16405 | |
| 16406 | public interface NodeChangeListener extends java.util.EventListener { |
| 16407 | method public void childAdded(java.util.prefs.NodeChangeEvent); |
| 16408 | method public void childRemoved(java.util.prefs.NodeChangeEvent); |
| 16409 | } |
| 16410 | |
| 16411 | public class PreferenceChangeEvent extends java.util.EventObject { |
| 16412 | ctor public PreferenceChangeEvent(java.util.prefs.Preferences, String, String); |
| 16413 | method public String getKey(); |
| 16414 | method public String getNewValue(); |
| 16415 | method public java.util.prefs.Preferences getNode(); |
| 16416 | } |
| 16417 | |
| 16418 | @java.lang.FunctionalInterface public interface PreferenceChangeListener extends java.util.EventListener { |
| 16419 | method public void preferenceChange(java.util.prefs.PreferenceChangeEvent); |
| 16420 | } |
| 16421 | |
| 16422 | public abstract class Preferences { |
| 16423 | ctor protected Preferences(); |
| 16424 | method public abstract String absolutePath(); |
| 16425 | method public abstract void addNodeChangeListener(java.util.prefs.NodeChangeListener); |
| 16426 | method public abstract void addPreferenceChangeListener(java.util.prefs.PreferenceChangeListener); |
| 16427 | method public abstract String[] childrenNames() throws java.util.prefs.BackingStoreException; |
| 16428 | method public abstract void clear() throws java.util.prefs.BackingStoreException; |
| 16429 | method public abstract void exportNode(java.io.OutputStream) throws java.util.prefs.BackingStoreException, java.io.IOException; |
| 16430 | method public abstract void exportSubtree(java.io.OutputStream) throws java.util.prefs.BackingStoreException, java.io.IOException; |
| 16431 | method public abstract void flush() throws java.util.prefs.BackingStoreException; |
| 16432 | method public abstract String get(String, String); |
| 16433 | method public abstract boolean getBoolean(String, boolean); |
| 16434 | method public abstract byte[] getByteArray(String, byte[]); |
| 16435 | method public abstract double getDouble(String, double); |
| 16436 | method public abstract float getFloat(String, float); |
| 16437 | method public abstract int getInt(String, int); |
| 16438 | method public abstract long getLong(String, long); |
| 16439 | method public static void importPreferences(java.io.InputStream) throws java.io.IOException, java.util.prefs.InvalidPreferencesFormatException; |
| 16440 | method public abstract boolean isUserNode(); |
| 16441 | method public abstract String[] keys() throws java.util.prefs.BackingStoreException; |
| 16442 | method public abstract String name(); |
| 16443 | method public abstract java.util.prefs.Preferences node(String); |
| 16444 | method public abstract boolean nodeExists(String) throws java.util.prefs.BackingStoreException; |
| 16445 | method public abstract java.util.prefs.Preferences parent(); |
| 16446 | method public abstract void put(String, String); |
| 16447 | method public abstract void putBoolean(String, boolean); |
| 16448 | method public abstract void putByteArray(String, byte[]); |
| 16449 | method public abstract void putDouble(String, double); |
| 16450 | method public abstract void putFloat(String, float); |
| 16451 | method public abstract void putInt(String, int); |
| 16452 | method public abstract void putLong(String, long); |
| 16453 | method public abstract void remove(String); |
| 16454 | method public abstract void removeNode() throws java.util.prefs.BackingStoreException; |
| 16455 | method public abstract void removeNodeChangeListener(java.util.prefs.NodeChangeListener); |
| 16456 | method public abstract void removePreferenceChangeListener(java.util.prefs.PreferenceChangeListener); |
| 16457 | method public abstract void sync() throws java.util.prefs.BackingStoreException; |
| 16458 | method public static java.util.prefs.Preferences systemNodeForPackage(Class<?>); |
| 16459 | method public static java.util.prefs.Preferences systemRoot(); |
| 16460 | method public abstract String toString(); |
| 16461 | method public static java.util.prefs.Preferences userNodeForPackage(Class<?>); |
| 16462 | method public static java.util.prefs.Preferences userRoot(); |
| 16463 | field public static final int MAX_KEY_LENGTH = 80; // 0x50 |
| 16464 | field public static final int MAX_NAME_LENGTH = 80; // 0x50 |
| 16465 | field public static final int MAX_VALUE_LENGTH = 8192; // 0x2000 |
| 16466 | } |
| 16467 | |
| 16468 | public interface PreferencesFactory { |
| 16469 | method public java.util.prefs.Preferences systemRoot(); |
| 16470 | method public java.util.prefs.Preferences userRoot(); |
| 16471 | } |
| 16472 | |
| 16473 | } |
| 16474 | |
| 16475 | package java.util.regex { |
| 16476 | |
| 16477 | public interface MatchResult { |
| 16478 | method public int end(); |
| 16479 | method public int end(int); |
| 16480 | method public String group(); |
| 16481 | method public String group(int); |
| 16482 | method public int groupCount(); |
| 16483 | method public int start(); |
| 16484 | method public int start(int); |
| 16485 | } |
| 16486 | |
| 16487 | public final class Matcher implements java.util.regex.MatchResult { |
| 16488 | method @NonNull public java.util.regex.Matcher appendReplacement(@NonNull StringBuffer, @NonNull String); |
| 16489 | method @NonNull public StringBuffer appendTail(@NonNull StringBuffer); |
| 16490 | method public int end(); |
| 16491 | method public int end(int); |
| 16492 | method public int end(@NonNull String); |
| 16493 | method public boolean find(); |
| 16494 | method public boolean find(int); |
| 16495 | method @NonNull public String group(); |
| 16496 | method @Nullable public String group(int); |
| 16497 | method @Nullable public String group(@NonNull String); |
| 16498 | method public int groupCount(); |
| 16499 | method public boolean hasAnchoringBounds(); |
| 16500 | method public boolean hasTransparentBounds(); |
| 16501 | method public boolean hitEnd(); |
| 16502 | method public boolean lookingAt(); |
| 16503 | method public boolean matches(); |
| 16504 | method @NonNull public java.util.regex.Pattern pattern(); |
| 16505 | method @NonNull public static String quoteReplacement(@NonNull String); |
| 16506 | method @NonNull public java.util.regex.Matcher region(int, int); |
| 16507 | method public int regionEnd(); |
| 16508 | method public int regionStart(); |
| 16509 | method @NonNull public String replaceAll(@NonNull String); |
| 16510 | method @NonNull public String replaceFirst(@NonNull String); |
| 16511 | method public boolean requireEnd(); |
| 16512 | method @NonNull public java.util.regex.Matcher reset(); |
| 16513 | method @NonNull public java.util.regex.Matcher reset(@NonNull CharSequence); |
| 16514 | method public int start(); |
| 16515 | method public int start(int); |
| 16516 | method public int start(@NonNull String); |
| 16517 | method @NonNull public java.util.regex.MatchResult toMatchResult(); |
| 16518 | method @NonNull public java.util.regex.Matcher useAnchoringBounds(boolean); |
| 16519 | method @NonNull public java.util.regex.Matcher usePattern(@NonNull java.util.regex.Pattern); |
| 16520 | method @NonNull public java.util.regex.Matcher useTransparentBounds(boolean); |
| 16521 | } |
| 16522 | |
| 16523 | public final class Pattern implements java.io.Serializable { |
| 16524 | method @NonNull public java.util.function.Predicate<java.lang.String> asPredicate(); |
| 16525 | method @NonNull public static java.util.regex.Pattern compile(@NonNull String); |
| 16526 | method @NonNull public static java.util.regex.Pattern compile(@NonNull String, int); |
| 16527 | method public int flags(); |
| 16528 | method @NonNull public java.util.regex.Matcher matcher(@NonNull CharSequence); |
| 16529 | method public static boolean matches(@NonNull String, @NonNull CharSequence); |
| 16530 | method @NonNull public String pattern(); |
| 16531 | method @NonNull public static String quote(@NonNull String); |
| 16532 | method @NonNull public String[] split(@NonNull CharSequence, int); |
| 16533 | method @NonNull public String[] split(@NonNull CharSequence); |
| 16534 | method @NonNull public java.util.stream.Stream<java.lang.String> splitAsStream(@NonNull CharSequence); |
| 16535 | field public static final int CANON_EQ = 128; // 0x80 |
| 16536 | field public static final int CASE_INSENSITIVE = 2; // 0x2 |
| 16537 | field public static final int COMMENTS = 4; // 0x4 |
| 16538 | field public static final int DOTALL = 32; // 0x20 |
| 16539 | field public static final int LITERAL = 16; // 0x10 |
| 16540 | field public static final int MULTILINE = 8; // 0x8 |
| 16541 | field public static final int UNICODE_CASE = 64; // 0x40 |
| 16542 | field public static final int UNICODE_CHARACTER_CLASS = 256; // 0x100 |
| 16543 | field public static final int UNIX_LINES = 1; // 0x1 |
| 16544 | } |
| 16545 | |
| 16546 | public class PatternSyntaxException extends java.lang.IllegalArgumentException { |
| 16547 | ctor public PatternSyntaxException(String, String, int); |
| 16548 | method public String getDescription(); |
| 16549 | method public int getIndex(); |
| 16550 | method public String getPattern(); |
| 16551 | } |
| 16552 | |
| 16553 | } |
| 16554 | |
| 16555 | package java.util.stream { |
| 16556 | |
| 16557 | public interface BaseStream<T, S extends java.util.stream.BaseStream<T, S>> extends java.lang.AutoCloseable { |
| 16558 | method public void close(); |
| 16559 | method public boolean isParallel(); |
| 16560 | method public java.util.Iterator<T> iterator(); |
| 16561 | method public S onClose(Runnable); |
| 16562 | method public S parallel(); |
| 16563 | method public S sequential(); |
| 16564 | method public java.util.Spliterator<T> spliterator(); |
| 16565 | method public S unordered(); |
| 16566 | } |
| 16567 | |
| 16568 | public interface Collector<T, A, R> { |
| 16569 | method public java.util.function.BiConsumer<A,T> accumulator(); |
| 16570 | method public java.util.Set<java.util.stream.Collector.Characteristics> characteristics(); |
| 16571 | method public java.util.function.BinaryOperator<A> combiner(); |
| 16572 | method public java.util.function.Function<A,R> finisher(); |
| 16573 | method public static <T, R> java.util.stream.Collector<T,R,R> of(java.util.function.Supplier<R>, java.util.function.BiConsumer<R,T>, java.util.function.BinaryOperator<R>, java.util.stream.Collector.Characteristics...); |
| 16574 | method public static <T, A, R> java.util.stream.Collector<T,A,R> of(java.util.function.Supplier<A>, java.util.function.BiConsumer<A,T>, java.util.function.BinaryOperator<A>, java.util.function.Function<A,R>, java.util.stream.Collector.Characteristics...); |
| 16575 | method public java.util.function.Supplier<A> supplier(); |
| 16576 | } |
| 16577 | |
| 16578 | public enum Collector.Characteristics { |
| 16579 | enum_constant public static final java.util.stream.Collector.Characteristics CONCURRENT; |
| 16580 | enum_constant public static final java.util.stream.Collector.Characteristics IDENTITY_FINISH; |
| 16581 | enum_constant public static final java.util.stream.Collector.Characteristics UNORDERED; |
| 16582 | } |
| 16583 | |
| 16584 | public final class Collectors { |
| 16585 | method public static <T> java.util.stream.Collector<T,?,java.lang.Double> averagingDouble(java.util.function.ToDoubleFunction<? super T>); |
| 16586 | method public static <T> java.util.stream.Collector<T,?,java.lang.Double> averagingInt(java.util.function.ToIntFunction<? super T>); |
| 16587 | method public static <T> java.util.stream.Collector<T,?,java.lang.Double> averagingLong(java.util.function.ToLongFunction<? super T>); |
| 16588 | method public static <T, A, R, RR> java.util.stream.Collector<T,A,RR> collectingAndThen(java.util.stream.Collector<T,A,R>, java.util.function.Function<R,RR>); |
| 16589 | method public static <T> java.util.stream.Collector<T,?,java.lang.Long> counting(); |
| 16590 | method public static <T, K> java.util.stream.Collector<T,?,java.util.Map<K,java.util.List<T>>> groupingBy(java.util.function.Function<? super T,? extends K>); |
| 16591 | method public static <T, K, A, D> java.util.stream.Collector<T,?,java.util.Map<K,D>> groupingBy(java.util.function.Function<? super T,? extends K>, java.util.stream.Collector<? super T,A,D>); |
| 16592 | method public static <T, K, D, A, M extends java.util.Map<K, D>> java.util.stream.Collector<T,?,M> groupingBy(java.util.function.Function<? super T,? extends K>, java.util.function.Supplier<M>, java.util.stream.Collector<? super T,A,D>); |
| 16593 | method public static <T, K> java.util.stream.Collector<T,?,java.util.concurrent.ConcurrentMap<K,java.util.List<T>>> groupingByConcurrent(java.util.function.Function<? super T,? extends K>); |
| 16594 | method public static <T, K, A, D> java.util.stream.Collector<T,?,java.util.concurrent.ConcurrentMap<K,D>> groupingByConcurrent(java.util.function.Function<? super T,? extends K>, java.util.stream.Collector<? super T,A,D>); |
| 16595 | method public static <T, K, A, D, M extends java.util.concurrent.ConcurrentMap<K, D>> java.util.stream.Collector<T,?,M> groupingByConcurrent(java.util.function.Function<? super T,? extends K>, java.util.function.Supplier<M>, java.util.stream.Collector<? super T,A,D>); |
| 16596 | method public static java.util.stream.Collector<java.lang.CharSequence,?,java.lang.String> joining(); |
| 16597 | method public static java.util.stream.Collector<java.lang.CharSequence,?,java.lang.String> joining(CharSequence); |
| 16598 | method public static java.util.stream.Collector<java.lang.CharSequence,?,java.lang.String> joining(CharSequence, CharSequence, CharSequence); |
| 16599 | method public static <T, U, A, R> java.util.stream.Collector<T,?,R> mapping(java.util.function.Function<? super T,? extends U>, java.util.stream.Collector<? super U,A,R>); |
| 16600 | method public static <T> java.util.stream.Collector<T,?,java.util.Optional<T>> maxBy(java.util.Comparator<? super T>); |
| 16601 | method public static <T> java.util.stream.Collector<T,?,java.util.Optional<T>> minBy(java.util.Comparator<? super T>); |
| 16602 | method public static <T> java.util.stream.Collector<T,?,java.util.Map<java.lang.Boolean,java.util.List<T>>> partitioningBy(java.util.function.Predicate<? super T>); |
| 16603 | method public static <T, D, A> java.util.stream.Collector<T,?,java.util.Map<java.lang.Boolean,D>> partitioningBy(java.util.function.Predicate<? super T>, java.util.stream.Collector<? super T,A,D>); |
| 16604 | method public static <T> java.util.stream.Collector<T,?,T> reducing(T, java.util.function.BinaryOperator<T>); |
| 16605 | method public static <T> java.util.stream.Collector<T,?,java.util.Optional<T>> reducing(java.util.function.BinaryOperator<T>); |
| 16606 | method public static <T, U> java.util.stream.Collector<T,?,U> reducing(U, java.util.function.Function<? super T,? extends U>, java.util.function.BinaryOperator<U>); |
| 16607 | method public static <T> java.util.stream.Collector<T,?,java.util.DoubleSummaryStatistics> summarizingDouble(java.util.function.ToDoubleFunction<? super T>); |
| 16608 | method public static <T> java.util.stream.Collector<T,?,java.util.IntSummaryStatistics> summarizingInt(java.util.function.ToIntFunction<? super T>); |
| 16609 | method public static <T> java.util.stream.Collector<T,?,java.util.LongSummaryStatistics> summarizingLong(java.util.function.ToLongFunction<? super T>); |
| 16610 | method public static <T> java.util.stream.Collector<T,?,java.lang.Double> summingDouble(java.util.function.ToDoubleFunction<? super T>); |
| 16611 | method public static <T> java.util.stream.Collector<T,?,java.lang.Integer> summingInt(java.util.function.ToIntFunction<? super T>); |
| 16612 | method public static <T> java.util.stream.Collector<T,?,java.lang.Long> summingLong(java.util.function.ToLongFunction<? super T>); |
| 16613 | method public static <T, C extends java.util.Collection<T>> java.util.stream.Collector<T,?,C> toCollection(java.util.function.Supplier<C>); |
| 16614 | method public static <T, K, U> java.util.stream.Collector<T,?,java.util.concurrent.ConcurrentMap<K,U>> toConcurrentMap(java.util.function.Function<? super T,? extends K>, java.util.function.Function<? super T,? extends U>); |
| 16615 | method public static <T, K, U> java.util.stream.Collector<T,?,java.util.concurrent.ConcurrentMap<K,U>> toConcurrentMap(java.util.function.Function<? super T,? extends K>, java.util.function.Function<? super T,? extends U>, java.util.function.BinaryOperator<U>); |
| 16616 | method public static <T, K, U, M extends java.util.concurrent.ConcurrentMap<K, U>> java.util.stream.Collector<T,?,M> toConcurrentMap(java.util.function.Function<? super T,? extends K>, java.util.function.Function<? super T,? extends U>, java.util.function.BinaryOperator<U>, java.util.function.Supplier<M>); |
| 16617 | method public static <T> java.util.stream.Collector<T,?,java.util.List<T>> toList(); |
| 16618 | method public static <T, K, U> java.util.stream.Collector<T,?,java.util.Map<K,U>> toMap(java.util.function.Function<? super T,? extends K>, java.util.function.Function<? super T,? extends U>); |
| 16619 | method public static <T, K, U> java.util.stream.Collector<T,?,java.util.Map<K,U>> toMap(java.util.function.Function<? super T,? extends K>, java.util.function.Function<? super T,? extends U>, java.util.function.BinaryOperator<U>); |
| 16620 | method public static <T, K, U, M extends java.util.Map<K, U>> java.util.stream.Collector<T,?,M> toMap(java.util.function.Function<? super T,? extends K>, java.util.function.Function<? super T,? extends U>, java.util.function.BinaryOperator<U>, java.util.function.Supplier<M>); |
| 16621 | method public static <T> java.util.stream.Collector<T,?,java.util.Set<T>> toSet(); |
| 16622 | } |
| 16623 | |
| 16624 | public interface DoubleStream extends java.util.stream.BaseStream<java.lang.Double,java.util.stream.DoubleStream> { |
| 16625 | method public boolean allMatch(java.util.function.DoublePredicate); |
| 16626 | method public boolean anyMatch(java.util.function.DoublePredicate); |
| 16627 | method public java.util.OptionalDouble average(); |
| 16628 | method public java.util.stream.Stream<java.lang.Double> boxed(); |
| 16629 | method public static java.util.stream.DoubleStream.Builder builder(); |
| 16630 | method public <R> R collect(java.util.function.Supplier<R>, java.util.function.ObjDoubleConsumer<R>, java.util.function.BiConsumer<R,R>); |
| 16631 | method public static java.util.stream.DoubleStream concat(java.util.stream.DoubleStream, java.util.stream.DoubleStream); |
| 16632 | method public long count(); |
| 16633 | method public java.util.stream.DoubleStream distinct(); |
| 16634 | method public static java.util.stream.DoubleStream empty(); |
| 16635 | method public java.util.stream.DoubleStream filter(java.util.function.DoublePredicate); |
| 16636 | method public java.util.OptionalDouble findAny(); |
| 16637 | method public java.util.OptionalDouble findFirst(); |
| 16638 | method public java.util.stream.DoubleStream flatMap(java.util.function.DoubleFunction<? extends java.util.stream.DoubleStream>); |
| 16639 | method public void forEach(java.util.function.DoubleConsumer); |
| 16640 | method public void forEachOrdered(java.util.function.DoubleConsumer); |
| 16641 | method public static java.util.stream.DoubleStream generate(java.util.function.DoubleSupplier); |
| 16642 | method public static java.util.stream.DoubleStream iterate(double, java.util.function.DoubleUnaryOperator); |
| 16643 | method public java.util.PrimitiveIterator.OfDouble iterator(); |
| 16644 | method public java.util.stream.DoubleStream limit(long); |
| 16645 | method public java.util.stream.DoubleStream map(java.util.function.DoubleUnaryOperator); |
| 16646 | method public java.util.stream.IntStream mapToInt(java.util.function.DoubleToIntFunction); |
| 16647 | method public java.util.stream.LongStream mapToLong(java.util.function.DoubleToLongFunction); |
| 16648 | method public <U> java.util.stream.Stream<U> mapToObj(java.util.function.DoubleFunction<? extends U>); |
| 16649 | method public java.util.OptionalDouble max(); |
| 16650 | method public java.util.OptionalDouble min(); |
| 16651 | method public boolean noneMatch(java.util.function.DoublePredicate); |
| 16652 | method public static java.util.stream.DoubleStream of(double); |
| 16653 | method public static java.util.stream.DoubleStream of(double...); |
| 16654 | method public java.util.stream.DoubleStream parallel(); |
| 16655 | method public java.util.stream.DoubleStream peek(java.util.function.DoubleConsumer); |
| 16656 | method public double reduce(double, java.util.function.DoubleBinaryOperator); |
| 16657 | method public java.util.OptionalDouble reduce(java.util.function.DoubleBinaryOperator); |
| 16658 | method public java.util.stream.DoubleStream sequential(); |
| 16659 | method public java.util.stream.DoubleStream skip(long); |
| 16660 | method public java.util.stream.DoubleStream sorted(); |
| 16661 | method public java.util.Spliterator.OfDouble spliterator(); |
| 16662 | method public double sum(); |
| 16663 | method public java.util.DoubleSummaryStatistics summaryStatistics(); |
| 16664 | method public double[] toArray(); |
| 16665 | } |
| 16666 | |
| 16667 | public static interface DoubleStream.Builder extends java.util.function.DoubleConsumer { |
| 16668 | method public default java.util.stream.DoubleStream.Builder add(double); |
| 16669 | method public java.util.stream.DoubleStream build(); |
| 16670 | } |
| 16671 | |
| 16672 | public interface IntStream extends java.util.stream.BaseStream<java.lang.Integer,java.util.stream.IntStream> { |
| 16673 | method public boolean allMatch(java.util.function.IntPredicate); |
| 16674 | method public boolean anyMatch(java.util.function.IntPredicate); |
| 16675 | method public java.util.stream.DoubleStream asDoubleStream(); |
| 16676 | method public java.util.stream.LongStream asLongStream(); |
| 16677 | method public java.util.OptionalDouble average(); |
| 16678 | method public java.util.stream.Stream<java.lang.Integer> boxed(); |
| 16679 | method public static java.util.stream.IntStream.Builder builder(); |
| 16680 | method public <R> R collect(java.util.function.Supplier<R>, java.util.function.ObjIntConsumer<R>, java.util.function.BiConsumer<R,R>); |
| 16681 | method public static java.util.stream.IntStream concat(java.util.stream.IntStream, java.util.stream.IntStream); |
| 16682 | method public long count(); |
| 16683 | method public java.util.stream.IntStream distinct(); |
| 16684 | method public static java.util.stream.IntStream empty(); |
| 16685 | method public java.util.stream.IntStream filter(java.util.function.IntPredicate); |
| 16686 | method public java.util.OptionalInt findAny(); |
| 16687 | method public java.util.OptionalInt findFirst(); |
| 16688 | method public java.util.stream.IntStream flatMap(java.util.function.IntFunction<? extends java.util.stream.IntStream>); |
| 16689 | method public void forEach(java.util.function.IntConsumer); |
| 16690 | method public void forEachOrdered(java.util.function.IntConsumer); |
| 16691 | method public static java.util.stream.IntStream generate(java.util.function.IntSupplier); |
| 16692 | method public static java.util.stream.IntStream iterate(int, java.util.function.IntUnaryOperator); |
| 16693 | method public java.util.PrimitiveIterator.OfInt iterator(); |
| 16694 | method public java.util.stream.IntStream limit(long); |
| 16695 | method public java.util.stream.IntStream map(java.util.function.IntUnaryOperator); |
| 16696 | method public java.util.stream.DoubleStream mapToDouble(java.util.function.IntToDoubleFunction); |
| 16697 | method public java.util.stream.LongStream mapToLong(java.util.function.IntToLongFunction); |
| 16698 | method public <U> java.util.stream.Stream<U> mapToObj(java.util.function.IntFunction<? extends U>); |
| 16699 | method public java.util.OptionalInt max(); |
| 16700 | method public java.util.OptionalInt min(); |
| 16701 | method public boolean noneMatch(java.util.function.IntPredicate); |
| 16702 | method public static java.util.stream.IntStream of(int); |
| 16703 | method public static java.util.stream.IntStream of(int...); |
| 16704 | method public java.util.stream.IntStream parallel(); |
| 16705 | method public java.util.stream.IntStream peek(java.util.function.IntConsumer); |
| 16706 | method public static java.util.stream.IntStream range(int, int); |
| 16707 | method public static java.util.stream.IntStream rangeClosed(int, int); |
| 16708 | method public int reduce(int, java.util.function.IntBinaryOperator); |
| 16709 | method public java.util.OptionalInt reduce(java.util.function.IntBinaryOperator); |
| 16710 | method public java.util.stream.IntStream sequential(); |
| 16711 | method public java.util.stream.IntStream skip(long); |
| 16712 | method public java.util.stream.IntStream sorted(); |
| 16713 | method public java.util.Spliterator.OfInt spliterator(); |
| 16714 | method public int sum(); |
| 16715 | method public java.util.IntSummaryStatistics summaryStatistics(); |
| 16716 | method public int[] toArray(); |
| 16717 | } |
| 16718 | |
| 16719 | public static interface IntStream.Builder extends java.util.function.IntConsumer { |
| 16720 | method public default java.util.stream.IntStream.Builder add(int); |
| 16721 | method public java.util.stream.IntStream build(); |
| 16722 | } |
| 16723 | |
| 16724 | public interface LongStream extends java.util.stream.BaseStream<java.lang.Long,java.util.stream.LongStream> { |
| 16725 | method public boolean allMatch(java.util.function.LongPredicate); |
| 16726 | method public boolean anyMatch(java.util.function.LongPredicate); |
| 16727 | method public java.util.stream.DoubleStream asDoubleStream(); |
| 16728 | method public java.util.OptionalDouble average(); |
| 16729 | method public java.util.stream.Stream<java.lang.Long> boxed(); |
| 16730 | method public static java.util.stream.LongStream.Builder builder(); |
| 16731 | method public <R> R collect(java.util.function.Supplier<R>, java.util.function.ObjLongConsumer<R>, java.util.function.BiConsumer<R,R>); |
| 16732 | method public static java.util.stream.LongStream concat(java.util.stream.LongStream, java.util.stream.LongStream); |
| 16733 | method public long count(); |
| 16734 | method public java.util.stream.LongStream distinct(); |
| 16735 | method public static java.util.stream.LongStream empty(); |
| 16736 | method public java.util.stream.LongStream filter(java.util.function.LongPredicate); |
| 16737 | method public java.util.OptionalLong findAny(); |
| 16738 | method public java.util.OptionalLong findFirst(); |
| 16739 | method public java.util.stream.LongStream flatMap(java.util.function.LongFunction<? extends java.util.stream.LongStream>); |
| 16740 | method public void forEach(java.util.function.LongConsumer); |
| 16741 | method public void forEachOrdered(java.util.function.LongConsumer); |
| 16742 | method public static java.util.stream.LongStream generate(java.util.function.LongSupplier); |
| 16743 | method public static java.util.stream.LongStream iterate(long, java.util.function.LongUnaryOperator); |
| 16744 | method public java.util.PrimitiveIterator.OfLong iterator(); |
| 16745 | method public java.util.stream.LongStream limit(long); |
| 16746 | method public java.util.stream.LongStream map(java.util.function.LongUnaryOperator); |
| 16747 | method public java.util.stream.DoubleStream mapToDouble(java.util.function.LongToDoubleFunction); |
| 16748 | method public java.util.stream.IntStream mapToInt(java.util.function.LongToIntFunction); |
| 16749 | method public <U> java.util.stream.Stream<U> mapToObj(java.util.function.LongFunction<? extends U>); |
| 16750 | method public java.util.OptionalLong max(); |
| 16751 | method public java.util.OptionalLong min(); |
| 16752 | method public boolean noneMatch(java.util.function.LongPredicate); |
| 16753 | method public static java.util.stream.LongStream of(long); |
| 16754 | method public static java.util.stream.LongStream of(long...); |
| 16755 | method public java.util.stream.LongStream parallel(); |
| 16756 | method public java.util.stream.LongStream peek(java.util.function.LongConsumer); |
| 16757 | method public static java.util.stream.LongStream range(long, long); |
| 16758 | method public static java.util.stream.LongStream rangeClosed(long, long); |
| 16759 | method public long reduce(long, java.util.function.LongBinaryOperator); |
| 16760 | method public java.util.OptionalLong reduce(java.util.function.LongBinaryOperator); |
| 16761 | method public java.util.stream.LongStream sequential(); |
| 16762 | method public java.util.stream.LongStream skip(long); |
| 16763 | method public java.util.stream.LongStream sorted(); |
| 16764 | method public java.util.Spliterator.OfLong spliterator(); |
| 16765 | method public long sum(); |
| 16766 | method public java.util.LongSummaryStatistics summaryStatistics(); |
| 16767 | method public long[] toArray(); |
| 16768 | } |
| 16769 | |
| 16770 | public static interface LongStream.Builder extends java.util.function.LongConsumer { |
| 16771 | method public default java.util.stream.LongStream.Builder add(long); |
| 16772 | method public java.util.stream.LongStream build(); |
| 16773 | } |
| 16774 | |
| 16775 | public interface Stream<T> extends java.util.stream.BaseStream<T,java.util.stream.Stream<T>> { |
| 16776 | method public boolean allMatch(java.util.function.Predicate<? super T>); |
| 16777 | method public boolean anyMatch(java.util.function.Predicate<? super T>); |
| 16778 | method public static <T> java.util.stream.Stream.Builder<T> builder(); |
| 16779 | method public <R> R collect(java.util.function.Supplier<R>, java.util.function.BiConsumer<R,? super T>, java.util.function.BiConsumer<R,R>); |
| 16780 | method public <R, A> R collect(java.util.stream.Collector<? super T,A,R>); |
| 16781 | method public static <T> java.util.stream.Stream<T> concat(java.util.stream.Stream<? extends T>, java.util.stream.Stream<? extends T>); |
| 16782 | method public long count(); |
| 16783 | method public java.util.stream.Stream<T> distinct(); |
| 16784 | method public static <T> java.util.stream.Stream<T> empty(); |
| 16785 | method public java.util.stream.Stream<T> filter(java.util.function.Predicate<? super T>); |
| 16786 | method public java.util.Optional<T> findAny(); |
| 16787 | method public java.util.Optional<T> findFirst(); |
| 16788 | method public <R> java.util.stream.Stream<R> flatMap(java.util.function.Function<? super T,? extends java.util.stream.Stream<? extends R>>); |
| 16789 | method public java.util.stream.DoubleStream flatMapToDouble(java.util.function.Function<? super T,? extends java.util.stream.DoubleStream>); |
| 16790 | method public java.util.stream.IntStream flatMapToInt(java.util.function.Function<? super T,? extends java.util.stream.IntStream>); |
| 16791 | method public java.util.stream.LongStream flatMapToLong(java.util.function.Function<? super T,? extends java.util.stream.LongStream>); |
| 16792 | method public void forEach(java.util.function.Consumer<? super T>); |
| 16793 | method public void forEachOrdered(java.util.function.Consumer<? super T>); |
| 16794 | method public static <T> java.util.stream.Stream<T> generate(java.util.function.Supplier<T>); |
| 16795 | method public static <T> java.util.stream.Stream<T> iterate(T, java.util.function.UnaryOperator<T>); |
| 16796 | method public java.util.stream.Stream<T> limit(long); |
| 16797 | method public <R> java.util.stream.Stream<R> map(java.util.function.Function<? super T,? extends R>); |
| 16798 | method public java.util.stream.DoubleStream mapToDouble(java.util.function.ToDoubleFunction<? super T>); |
| 16799 | method public java.util.stream.IntStream mapToInt(java.util.function.ToIntFunction<? super T>); |
| 16800 | method public java.util.stream.LongStream mapToLong(java.util.function.ToLongFunction<? super T>); |
| 16801 | method public java.util.Optional<T> max(java.util.Comparator<? super T>); |
| 16802 | method public java.util.Optional<T> min(java.util.Comparator<? super T>); |
| 16803 | method public boolean noneMatch(java.util.function.Predicate<? super T>); |
| 16804 | method public static <T> java.util.stream.Stream<T> of(T); |
| 16805 | method @java.lang.SafeVarargs public static <T> java.util.stream.Stream<T> of(T...); |
| 16806 | method public java.util.stream.Stream<T> peek(java.util.function.Consumer<? super T>); |
| 16807 | method public T reduce(T, java.util.function.BinaryOperator<T>); |
| 16808 | method public java.util.Optional<T> reduce(java.util.function.BinaryOperator<T>); |
| 16809 | method public <U> U reduce(U, java.util.function.BiFunction<U,? super T,U>, java.util.function.BinaryOperator<U>); |
| 16810 | method public java.util.stream.Stream<T> skip(long); |
| 16811 | method public java.util.stream.Stream<T> sorted(); |
| 16812 | method public java.util.stream.Stream<T> sorted(java.util.Comparator<? super T>); |
| 16813 | method public Object[] toArray(); |
| 16814 | method public <A> A[] toArray(java.util.function.IntFunction<A[]>); |
| 16815 | } |
| 16816 | |
| 16817 | public static interface Stream.Builder<T> extends java.util.function.Consumer<T> { |
| 16818 | method public default java.util.stream.Stream.Builder<T> add(T); |
| 16819 | method public java.util.stream.Stream<T> build(); |
| 16820 | } |
| 16821 | |
| 16822 | public final class StreamSupport { |
| 16823 | method public static java.util.stream.DoubleStream doubleStream(java.util.Spliterator.OfDouble, boolean); |
| 16824 | method public static java.util.stream.DoubleStream doubleStream(java.util.function.Supplier<? extends java.util.Spliterator.OfDouble>, int, boolean); |
| 16825 | method public static java.util.stream.IntStream intStream(java.util.Spliterator.OfInt, boolean); |
| 16826 | method public static java.util.stream.IntStream intStream(java.util.function.Supplier<? extends java.util.Spliterator.OfInt>, int, boolean); |
| 16827 | method public static java.util.stream.LongStream longStream(java.util.Spliterator.OfLong, boolean); |
| 16828 | method public static java.util.stream.LongStream longStream(java.util.function.Supplier<? extends java.util.Spliterator.OfLong>, int, boolean); |
| 16829 | method public static <T> java.util.stream.Stream<T> stream(java.util.Spliterator<T>, boolean); |
| 16830 | method public static <T> java.util.stream.Stream<T> stream(java.util.function.Supplier<? extends java.util.Spliterator<T>>, int, boolean); |
| 16831 | } |
| 16832 | |
| 16833 | } |
| 16834 | |
| 16835 | package java.util.zip { |
| 16836 | |
| 16837 | public class Adler32 implements java.util.zip.Checksum { |
| 16838 | ctor public Adler32(); |
| 16839 | method public long getValue(); |
| 16840 | method public void reset(); |
| 16841 | method public void update(int); |
| 16842 | method public void update(byte[], int, int); |
| 16843 | method public void update(byte[]); |
| 16844 | method public void update(java.nio.ByteBuffer); |
| 16845 | } |
| 16846 | |
| 16847 | public class CRC32 implements java.util.zip.Checksum { |
| 16848 | ctor public CRC32(); |
| 16849 | method public long getValue(); |
| 16850 | method public void reset(); |
| 16851 | method public void update(int); |
| 16852 | method public void update(byte[], int, int); |
| 16853 | method public void update(byte[]); |
| 16854 | method public void update(java.nio.ByteBuffer); |
| 16855 | } |
| 16856 | |
| 16857 | public class CheckedInputStream extends java.io.FilterInputStream { |
| 16858 | ctor public CheckedInputStream(java.io.InputStream, java.util.zip.Checksum); |
| 16859 | method public java.util.zip.Checksum getChecksum(); |
| 16860 | } |
| 16861 | |
| 16862 | public class CheckedOutputStream extends java.io.FilterOutputStream { |
| 16863 | ctor public CheckedOutputStream(java.io.OutputStream, java.util.zip.Checksum); |
| 16864 | method public java.util.zip.Checksum getChecksum(); |
| 16865 | } |
| 16866 | |
| 16867 | public interface Checksum { |
| 16868 | method public long getValue(); |
| 16869 | method public void reset(); |
| 16870 | method public void update(int); |
| 16871 | method public void update(byte[], int, int); |
| 16872 | } |
| 16873 | |
| 16874 | public class DataFormatException extends java.lang.Exception { |
| 16875 | ctor public DataFormatException(); |
| 16876 | ctor public DataFormatException(String); |
| 16877 | } |
| 16878 | |
| 16879 | public class Deflater { |
| 16880 | ctor public Deflater(int, boolean); |
| 16881 | ctor public Deflater(int); |
| 16882 | ctor public Deflater(); |
| 16883 | method public int deflate(byte[], int, int); |
| 16884 | method public int deflate(byte[]); |
| 16885 | method public int deflate(byte[], int, int, int); |
| 16886 | method public void end(); |
| 16887 | method protected void finalize(); |
| 16888 | method public void finish(); |
| 16889 | method public boolean finished(); |
| 16890 | method public int getAdler(); |
| 16891 | method public long getBytesRead(); |
| 16892 | method public long getBytesWritten(); |
| 16893 | method public int getTotalIn(); |
| 16894 | method public int getTotalOut(); |
| 16895 | method public boolean needsInput(); |
| 16896 | method public void reset(); |
| 16897 | method public void setDictionary(byte[], int, int); |
| 16898 | method public void setDictionary(byte[]); |
| 16899 | method public void setInput(byte[], int, int); |
| 16900 | method public void setInput(byte[]); |
| 16901 | method public void setLevel(int); |
| 16902 | method public void setStrategy(int); |
| 16903 | field public static final int BEST_COMPRESSION = 9; // 0x9 |
| 16904 | field public static final int BEST_SPEED = 1; // 0x1 |
| 16905 | field public static final int DEFAULT_COMPRESSION = -1; // 0xffffffff |
| 16906 | field public static final int DEFAULT_STRATEGY = 0; // 0x0 |
| 16907 | field public static final int DEFLATED = 8; // 0x8 |
| 16908 | field public static final int FILTERED = 1; // 0x1 |
| 16909 | field public static final int FULL_FLUSH = 3; // 0x3 |
| 16910 | field public static final int HUFFMAN_ONLY = 2; // 0x2 |
| 16911 | field public static final int NO_COMPRESSION = 0; // 0x0 |
| 16912 | field public static final int NO_FLUSH = 0; // 0x0 |
| 16913 | field public static final int SYNC_FLUSH = 2; // 0x2 |
| 16914 | } |
| 16915 | |
| 16916 | public class DeflaterInputStream extends java.io.FilterInputStream { |
| 16917 | ctor public DeflaterInputStream(java.io.InputStream); |
| 16918 | ctor public DeflaterInputStream(java.io.InputStream, java.util.zip.Deflater); |
| 16919 | ctor public DeflaterInputStream(java.io.InputStream, java.util.zip.Deflater, int); |
| 16920 | field protected final byte[] buf; |
| 16921 | field protected final java.util.zip.Deflater def; |
| 16922 | } |
| 16923 | |
| 16924 | public class DeflaterOutputStream extends java.io.FilterOutputStream { |
| 16925 | ctor public DeflaterOutputStream(java.io.OutputStream, java.util.zip.Deflater, int, boolean); |
| 16926 | ctor public DeflaterOutputStream(java.io.OutputStream, java.util.zip.Deflater, int); |
| 16927 | ctor public DeflaterOutputStream(java.io.OutputStream, java.util.zip.Deflater, boolean); |
| 16928 | ctor public DeflaterOutputStream(java.io.OutputStream, java.util.zip.Deflater); |
| 16929 | ctor public DeflaterOutputStream(java.io.OutputStream, boolean); |
| 16930 | ctor public DeflaterOutputStream(java.io.OutputStream); |
| 16931 | method protected void deflate() throws java.io.IOException; |
| 16932 | method public void finish() throws java.io.IOException; |
| 16933 | field protected byte[] buf; |
| 16934 | field protected java.util.zip.Deflater def; |
| 16935 | } |
| 16936 | |
| 16937 | public class GZIPInputStream extends java.util.zip.InflaterInputStream { |
| 16938 | ctor public GZIPInputStream(java.io.InputStream, int) throws java.io.IOException; |
| 16939 | ctor public GZIPInputStream(java.io.InputStream) throws java.io.IOException; |
| 16940 | field public static final int GZIP_MAGIC = 35615; // 0x8b1f |
| 16941 | field protected java.util.zip.CRC32 crc; |
| 16942 | field protected boolean eos; |
| 16943 | } |
| 16944 | |
| 16945 | public class GZIPOutputStream extends java.util.zip.DeflaterOutputStream { |
| 16946 | ctor public GZIPOutputStream(java.io.OutputStream, int) throws java.io.IOException; |
| 16947 | ctor public GZIPOutputStream(java.io.OutputStream, int, boolean) throws java.io.IOException; |
| 16948 | ctor public GZIPOutputStream(java.io.OutputStream) throws java.io.IOException; |
| 16949 | ctor public GZIPOutputStream(java.io.OutputStream, boolean) throws java.io.IOException; |
| 16950 | field protected java.util.zip.CRC32 crc; |
| 16951 | } |
| 16952 | |
| 16953 | public class Inflater { |
| 16954 | ctor public Inflater(boolean); |
| 16955 | ctor public Inflater(); |
| 16956 | method public void end(); |
| 16957 | method protected void finalize(); |
| 16958 | method public boolean finished(); |
| 16959 | method public int getAdler(); |
| 16960 | method public long getBytesRead(); |
| 16961 | method public long getBytesWritten(); |
| 16962 | method public int getRemaining(); |
| 16963 | method public int getTotalIn(); |
| 16964 | method public int getTotalOut(); |
| 16965 | method public int inflate(byte[], int, int) throws java.util.zip.DataFormatException; |
| 16966 | method public int inflate(byte[]) throws java.util.zip.DataFormatException; |
| 16967 | method public boolean needsDictionary(); |
| 16968 | method public boolean needsInput(); |
| 16969 | method public void reset(); |
| 16970 | method public void setDictionary(byte[], int, int); |
| 16971 | method public void setDictionary(byte[]); |
| 16972 | method public void setInput(byte[], int, int); |
| 16973 | method public void setInput(byte[]); |
| 16974 | } |
| 16975 | |
| 16976 | public class InflaterInputStream extends java.io.FilterInputStream { |
| 16977 | ctor public InflaterInputStream(java.io.InputStream, java.util.zip.Inflater, int); |
| 16978 | ctor public InflaterInputStream(java.io.InputStream, java.util.zip.Inflater); |
| 16979 | ctor public InflaterInputStream(java.io.InputStream); |
| 16980 | method protected void fill() throws java.io.IOException; |
| 16981 | field protected byte[] buf; |
| 16982 | field @Deprecated protected boolean closed; |
| 16983 | field protected java.util.zip.Inflater inf; |
| 16984 | field protected int len; |
| 16985 | } |
| 16986 | |
| 16987 | public class InflaterOutputStream extends java.io.FilterOutputStream { |
| 16988 | ctor public InflaterOutputStream(java.io.OutputStream); |
| 16989 | ctor public InflaterOutputStream(java.io.OutputStream, java.util.zip.Inflater); |
| 16990 | ctor public InflaterOutputStream(java.io.OutputStream, java.util.zip.Inflater, int); |
| 16991 | method public void finish() throws java.io.IOException; |
| 16992 | field protected final byte[] buf; |
| 16993 | field protected final java.util.zip.Inflater inf; |
| 16994 | } |
| 16995 | |
| 16996 | public class ZipEntry implements java.lang.Cloneable { |
| 16997 | ctor public ZipEntry(String); |
| 16998 | ctor public ZipEntry(java.util.zip.ZipEntry); |
| 16999 | method public Object clone(); |
| 17000 | method public String getComment(); |
| 17001 | method public long getCompressedSize(); |
| 17002 | method public long getCrc(); |
| 17003 | method public java.nio.file.attribute.FileTime getCreationTime(); |
| 17004 | method public byte[] getExtra(); |
| 17005 | method public java.nio.file.attribute.FileTime getLastAccessTime(); |
| 17006 | method public java.nio.file.attribute.FileTime getLastModifiedTime(); |
| 17007 | method public int getMethod(); |
| 17008 | method public String getName(); |
| 17009 | method public long getSize(); |
| 17010 | method public long getTime(); |
| 17011 | method public boolean isDirectory(); |
| 17012 | method public void setComment(String); |
| 17013 | method public void setCompressedSize(long); |
| 17014 | method public void setCrc(long); |
| 17015 | method public java.util.zip.ZipEntry setCreationTime(java.nio.file.attribute.FileTime); |
| 17016 | method public void setExtra(byte[]); |
| 17017 | method public java.util.zip.ZipEntry setLastAccessTime(java.nio.file.attribute.FileTime); |
| 17018 | method public java.util.zip.ZipEntry setLastModifiedTime(java.nio.file.attribute.FileTime); |
| 17019 | method public void setMethod(int); |
| 17020 | method public void setSize(long); |
| 17021 | method public void setTime(long); |
| 17022 | field public static final int CENATT = 36; // 0x24 |
| 17023 | field public static final int CENATX = 38; // 0x26 |
| 17024 | field public static final int CENCOM = 32; // 0x20 |
| 17025 | field public static final int CENCRC = 16; // 0x10 |
| 17026 | field public static final int CENDSK = 34; // 0x22 |
| 17027 | field public static final int CENEXT = 30; // 0x1e |
| 17028 | field public static final int CENFLG = 8; // 0x8 |
| 17029 | field public static final int CENHDR = 46; // 0x2e |
| 17030 | field public static final int CENHOW = 10; // 0xa |
| 17031 | field public static final int CENLEN = 24; // 0x18 |
| 17032 | field public static final int CENNAM = 28; // 0x1c |
| 17033 | field public static final int CENOFF = 42; // 0x2a |
| 17034 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 17035 | field public static final int CENSIZ = 20; // 0x14 |
| 17036 | field public static final int CENTIM = 12; // 0xc |
| 17037 | field public static final int CENVEM = 4; // 0x4 |
| 17038 | field public static final int CENVER = 6; // 0x6 |
| 17039 | field public static final int DEFLATED = 8; // 0x8 |
| 17040 | field public static final int ENDCOM = 20; // 0x14 |
| 17041 | field public static final int ENDHDR = 22; // 0x16 |
| 17042 | field public static final int ENDOFF = 16; // 0x10 |
| 17043 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 17044 | field public static final int ENDSIZ = 12; // 0xc |
| 17045 | field public static final int ENDSUB = 8; // 0x8 |
| 17046 | field public static final int ENDTOT = 10; // 0xa |
| 17047 | field public static final int EXTCRC = 4; // 0x4 |
| 17048 | field public static final int EXTHDR = 16; // 0x10 |
| 17049 | field public static final int EXTLEN = 12; // 0xc |
| 17050 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 17051 | field public static final int EXTSIZ = 8; // 0x8 |
| 17052 | field public static final int LOCCRC = 14; // 0xe |
| 17053 | field public static final int LOCEXT = 28; // 0x1c |
| 17054 | field public static final int LOCFLG = 6; // 0x6 |
| 17055 | field public static final int LOCHDR = 30; // 0x1e |
| 17056 | field public static final int LOCHOW = 8; // 0x8 |
| 17057 | field public static final int LOCLEN = 22; // 0x16 |
| 17058 | field public static final int LOCNAM = 26; // 0x1a |
| 17059 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 17060 | field public static final int LOCSIZ = 18; // 0x12 |
| 17061 | field public static final int LOCTIM = 10; // 0xa |
| 17062 | field public static final int LOCVER = 4; // 0x4 |
| 17063 | field public static final int STORED = 0; // 0x0 |
| 17064 | } |
| 17065 | |
| 17066 | public class ZipError extends java.lang.InternalError { |
| 17067 | ctor public ZipError(String); |
| 17068 | } |
| 17069 | |
| 17070 | public class ZipException extends java.io.IOException { |
| 17071 | ctor public ZipException(); |
| 17072 | ctor public ZipException(String); |
| 17073 | } |
| 17074 | |
| 17075 | public class ZipFile implements java.io.Closeable { |
| 17076 | ctor public ZipFile(String) throws java.io.IOException; |
| 17077 | ctor public ZipFile(java.io.File, int) throws java.io.IOException; |
| 17078 | ctor public ZipFile(java.io.File) throws java.io.IOException, java.util.zip.ZipException; |
| 17079 | ctor public ZipFile(java.io.File, int, java.nio.charset.Charset) throws java.io.IOException; |
| 17080 | ctor public ZipFile(String, java.nio.charset.Charset) throws java.io.IOException; |
| 17081 | ctor public ZipFile(java.io.File, java.nio.charset.Charset) throws java.io.IOException; |
| 17082 | method public void close() throws java.io.IOException; |
| 17083 | method public java.util.Enumeration<? extends java.util.zip.ZipEntry> entries(); |
| 17084 | method protected void finalize() throws java.io.IOException; |
| 17085 | method public String getComment(); |
| 17086 | method public java.util.zip.ZipEntry getEntry(String); |
| 17087 | method public java.io.InputStream getInputStream(java.util.zip.ZipEntry) throws java.io.IOException; |
| 17088 | method public String getName(); |
| 17089 | method public int size(); |
| 17090 | method public java.util.stream.Stream<? extends java.util.zip.ZipEntry> stream(); |
| 17091 | field public static final int CENATT = 36; // 0x24 |
| 17092 | field public static final int CENATX = 38; // 0x26 |
| 17093 | field public static final int CENCOM = 32; // 0x20 |
| 17094 | field public static final int CENCRC = 16; // 0x10 |
| 17095 | field public static final int CENDSK = 34; // 0x22 |
| 17096 | field public static final int CENEXT = 30; // 0x1e |
| 17097 | field public static final int CENFLG = 8; // 0x8 |
| 17098 | field public static final int CENHDR = 46; // 0x2e |
| 17099 | field public static final int CENHOW = 10; // 0xa |
| 17100 | field public static final int CENLEN = 24; // 0x18 |
| 17101 | field public static final int CENNAM = 28; // 0x1c |
| 17102 | field public static final int CENOFF = 42; // 0x2a |
| 17103 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 17104 | field public static final int CENSIZ = 20; // 0x14 |
| 17105 | field public static final int CENTIM = 12; // 0xc |
| 17106 | field public static final int CENVEM = 4; // 0x4 |
| 17107 | field public static final int CENVER = 6; // 0x6 |
| 17108 | field public static final int ENDCOM = 20; // 0x14 |
| 17109 | field public static final int ENDHDR = 22; // 0x16 |
| 17110 | field public static final int ENDOFF = 16; // 0x10 |
| 17111 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 17112 | field public static final int ENDSIZ = 12; // 0xc |
| 17113 | field public static final int ENDSUB = 8; // 0x8 |
| 17114 | field public static final int ENDTOT = 10; // 0xa |
| 17115 | field public static final int EXTCRC = 4; // 0x4 |
| 17116 | field public static final int EXTHDR = 16; // 0x10 |
| 17117 | field public static final int EXTLEN = 12; // 0xc |
| 17118 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 17119 | field public static final int EXTSIZ = 8; // 0x8 |
| 17120 | field public static final int LOCCRC = 14; // 0xe |
| 17121 | field public static final int LOCEXT = 28; // 0x1c |
| 17122 | field public static final int LOCFLG = 6; // 0x6 |
| 17123 | field public static final int LOCHDR = 30; // 0x1e |
| 17124 | field public static final int LOCHOW = 8; // 0x8 |
| 17125 | field public static final int LOCLEN = 22; // 0x16 |
| 17126 | field public static final int LOCNAM = 26; // 0x1a |
| 17127 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 17128 | field public static final int LOCSIZ = 18; // 0x12 |
| 17129 | field public static final int LOCTIM = 10; // 0xa |
| 17130 | field public static final int LOCVER = 4; // 0x4 |
| 17131 | field public static final int OPEN_DELETE = 4; // 0x4 |
| 17132 | field public static final int OPEN_READ = 1; // 0x1 |
| 17133 | } |
| 17134 | |
| 17135 | public class ZipInputStream extends java.util.zip.InflaterInputStream { |
| 17136 | ctor public ZipInputStream(java.io.InputStream); |
| 17137 | ctor public ZipInputStream(java.io.InputStream, java.nio.charset.Charset); |
| 17138 | method public void closeEntry() throws java.io.IOException; |
| 17139 | method protected java.util.zip.ZipEntry createZipEntry(String); |
| 17140 | method public java.util.zip.ZipEntry getNextEntry() throws java.io.IOException; |
| 17141 | field public static final int CENATT = 36; // 0x24 |
| 17142 | field public static final int CENATX = 38; // 0x26 |
| 17143 | field public static final int CENCOM = 32; // 0x20 |
| 17144 | field public static final int CENCRC = 16; // 0x10 |
| 17145 | field public static final int CENDSK = 34; // 0x22 |
| 17146 | field public static final int CENEXT = 30; // 0x1e |
| 17147 | field public static final int CENFLG = 8; // 0x8 |
| 17148 | field public static final int CENHDR = 46; // 0x2e |
| 17149 | field public static final int CENHOW = 10; // 0xa |
| 17150 | field public static final int CENLEN = 24; // 0x18 |
| 17151 | field public static final int CENNAM = 28; // 0x1c |
| 17152 | field public static final int CENOFF = 42; // 0x2a |
| 17153 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 17154 | field public static final int CENSIZ = 20; // 0x14 |
| 17155 | field public static final int CENTIM = 12; // 0xc |
| 17156 | field public static final int CENVEM = 4; // 0x4 |
| 17157 | field public static final int CENVER = 6; // 0x6 |
| 17158 | field public static final int ENDCOM = 20; // 0x14 |
| 17159 | field public static final int ENDHDR = 22; // 0x16 |
| 17160 | field public static final int ENDOFF = 16; // 0x10 |
| 17161 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 17162 | field public static final int ENDSIZ = 12; // 0xc |
| 17163 | field public static final int ENDSUB = 8; // 0x8 |
| 17164 | field public static final int ENDTOT = 10; // 0xa |
| 17165 | field public static final int EXTCRC = 4; // 0x4 |
| 17166 | field public static final int EXTHDR = 16; // 0x10 |
| 17167 | field public static final int EXTLEN = 12; // 0xc |
| 17168 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 17169 | field public static final int EXTSIZ = 8; // 0x8 |
| 17170 | field public static final int LOCCRC = 14; // 0xe |
| 17171 | field public static final int LOCEXT = 28; // 0x1c |
| 17172 | field public static final int LOCFLG = 6; // 0x6 |
| 17173 | field public static final int LOCHDR = 30; // 0x1e |
| 17174 | field public static final int LOCHOW = 8; // 0x8 |
| 17175 | field public static final int LOCLEN = 22; // 0x16 |
| 17176 | field public static final int LOCNAM = 26; // 0x1a |
| 17177 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 17178 | field public static final int LOCSIZ = 18; // 0x12 |
| 17179 | field public static final int LOCTIM = 10; // 0xa |
| 17180 | field public static final int LOCVER = 4; // 0x4 |
| 17181 | } |
| 17182 | |
| 17183 | public class ZipOutputStream extends java.util.zip.DeflaterOutputStream { |
| 17184 | ctor public ZipOutputStream(java.io.OutputStream); |
| 17185 | ctor public ZipOutputStream(java.io.OutputStream, java.nio.charset.Charset); |
| 17186 | method public void closeEntry() throws java.io.IOException; |
| 17187 | method public void putNextEntry(java.util.zip.ZipEntry) throws java.io.IOException; |
| 17188 | method public void setComment(String); |
| 17189 | method public void setLevel(int); |
| 17190 | method public void setMethod(int); |
| 17191 | field public static final int CENATT = 36; // 0x24 |
| 17192 | field public static final int CENATX = 38; // 0x26 |
| 17193 | field public static final int CENCOM = 32; // 0x20 |
| 17194 | field public static final int CENCRC = 16; // 0x10 |
| 17195 | field public static final int CENDSK = 34; // 0x22 |
| 17196 | field public static final int CENEXT = 30; // 0x1e |
| 17197 | field public static final int CENFLG = 8; // 0x8 |
| 17198 | field public static final int CENHDR = 46; // 0x2e |
| 17199 | field public static final int CENHOW = 10; // 0xa |
| 17200 | field public static final int CENLEN = 24; // 0x18 |
| 17201 | field public static final int CENNAM = 28; // 0x1c |
| 17202 | field public static final int CENOFF = 42; // 0x2a |
| 17203 | field public static final long CENSIG = 33639248L; // 0x2014b50L |
| 17204 | field public static final int CENSIZ = 20; // 0x14 |
| 17205 | field public static final int CENTIM = 12; // 0xc |
| 17206 | field public static final int CENVEM = 4; // 0x4 |
| 17207 | field public static final int CENVER = 6; // 0x6 |
| 17208 | field public static final int DEFLATED = 8; // 0x8 |
| 17209 | field public static final int ENDCOM = 20; // 0x14 |
| 17210 | field public static final int ENDHDR = 22; // 0x16 |
| 17211 | field public static final int ENDOFF = 16; // 0x10 |
| 17212 | field public static final long ENDSIG = 101010256L; // 0x6054b50L |
| 17213 | field public static final int ENDSIZ = 12; // 0xc |
| 17214 | field public static final int ENDSUB = 8; // 0x8 |
| 17215 | field public static final int ENDTOT = 10; // 0xa |
| 17216 | field public static final int EXTCRC = 4; // 0x4 |
| 17217 | field public static final int EXTHDR = 16; // 0x10 |
| 17218 | field public static final int EXTLEN = 12; // 0xc |
| 17219 | field public static final long EXTSIG = 134695760L; // 0x8074b50L |
| 17220 | field public static final int EXTSIZ = 8; // 0x8 |
| 17221 | field public static final int LOCCRC = 14; // 0xe |
| 17222 | field public static final int LOCEXT = 28; // 0x1c |
| 17223 | field public static final int LOCFLG = 6; // 0x6 |
| 17224 | field public static final int LOCHDR = 30; // 0x1e |
| 17225 | field public static final int LOCHOW = 8; // 0x8 |
| 17226 | field public static final int LOCLEN = 22; // 0x16 |
| 17227 | field public static final int LOCNAM = 26; // 0x1a |
| 17228 | field public static final long LOCSIG = 67324752L; // 0x4034b50L |
| 17229 | field public static final int LOCSIZ = 18; // 0x12 |
| 17230 | field public static final int LOCTIM = 10; // 0xa |
| 17231 | field public static final int LOCVER = 4; // 0x4 |
| 17232 | field public static final int STORED = 0; // 0x0 |
| 17233 | } |
| 17234 | |
| 17235 | } |
| 17236 | |
| 17237 | package javax.crypto { |
| 17238 | |
| 17239 | public class AEADBadTagException extends javax.crypto.BadPaddingException { |
| 17240 | ctor public AEADBadTagException(); |
| 17241 | ctor public AEADBadTagException(String); |
| 17242 | } |
| 17243 | |
| 17244 | public class BadPaddingException extends java.security.GeneralSecurityException { |
| 17245 | ctor public BadPaddingException(); |
| 17246 | ctor public BadPaddingException(String); |
| 17247 | } |
| 17248 | |
| 17249 | public class Cipher { |
| 17250 | ctor protected Cipher(javax.crypto.CipherSpi, java.security.Provider, String); |
| 17251 | method public final byte[] doFinal() throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException; |
| 17252 | method public final int doFinal(byte[], int) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException, javax.crypto.ShortBufferException; |
| 17253 | method public final byte[] doFinal(byte[]) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException; |
| 17254 | method public final byte[] doFinal(byte[], int, int) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException; |
| 17255 | method public final int doFinal(byte[], int, int, byte[]) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException, javax.crypto.ShortBufferException; |
| 17256 | method public final int doFinal(byte[], int, int, byte[], int) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException, javax.crypto.ShortBufferException; |
| 17257 | method public final int doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException, javax.crypto.ShortBufferException; |
| 17258 | method public final String getAlgorithm(); |
| 17259 | method public final int getBlockSize(); |
| 17260 | method public final javax.crypto.ExemptionMechanism getExemptionMechanism(); |
| 17261 | method public final byte[] getIV(); |
| 17262 | method public static final javax.crypto.Cipher getInstance(String) throws java.security.NoSuchAlgorithmException, javax.crypto.NoSuchPaddingException; |
| 17263 | method public static final javax.crypto.Cipher getInstance(String, String) throws java.security.NoSuchAlgorithmException, javax.crypto.NoSuchPaddingException, java.security.NoSuchProviderException; |
| 17264 | method public static final javax.crypto.Cipher getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException, javax.crypto.NoSuchPaddingException; |
| 17265 | method public static final int getMaxAllowedKeyLength(String) throws java.security.NoSuchAlgorithmException; |
| 17266 | method public static final java.security.spec.AlgorithmParameterSpec getMaxAllowedParameterSpec(String) throws java.security.NoSuchAlgorithmException; |
| 17267 | method public final int getOutputSize(int); |
| 17268 | method public final java.security.AlgorithmParameters getParameters(); |
| 17269 | method public final java.security.Provider getProvider(); |
| 17270 | method public final void init(int, java.security.Key) throws java.security.InvalidKeyException; |
| 17271 | method public final void init(int, java.security.Key, java.security.SecureRandom) throws java.security.InvalidKeyException; |
| 17272 | method public final void init(int, java.security.Key, java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17273 | method public final void init(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17274 | method public final void init(int, java.security.Key, java.security.AlgorithmParameters) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17275 | method public final void init(int, java.security.Key, java.security.AlgorithmParameters, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17276 | method public final void init(int, java.security.cert.Certificate) throws java.security.InvalidKeyException; |
| 17277 | method public final void init(int, java.security.cert.Certificate, java.security.SecureRandom) throws java.security.InvalidKeyException; |
| 17278 | method public final java.security.Key unwrap(byte[], String, int) throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException; |
| 17279 | method public final byte[] update(byte[]); |
| 17280 | method public final byte[] update(byte[], int, int); |
| 17281 | method public final int update(byte[], int, int, byte[]) throws javax.crypto.ShortBufferException; |
| 17282 | method public final int update(byte[], int, int, byte[], int) throws javax.crypto.ShortBufferException; |
| 17283 | method public final int update(java.nio.ByteBuffer, java.nio.ByteBuffer) throws javax.crypto.ShortBufferException; |
| 17284 | method public final void updateAAD(byte[]); |
| 17285 | method public final void updateAAD(byte[], int, int); |
| 17286 | method public final void updateAAD(java.nio.ByteBuffer); |
| 17287 | method public final byte[] wrap(java.security.Key) throws javax.crypto.IllegalBlockSizeException, java.security.InvalidKeyException; |
| 17288 | field public static final int DECRYPT_MODE = 2; // 0x2 |
| 17289 | field public static final int ENCRYPT_MODE = 1; // 0x1 |
| 17290 | field public static final int PRIVATE_KEY = 2; // 0x2 |
| 17291 | field public static final int PUBLIC_KEY = 1; // 0x1 |
| 17292 | field public static final int SECRET_KEY = 3; // 0x3 |
| 17293 | field public static final int UNWRAP_MODE = 4; // 0x4 |
| 17294 | field public static final int WRAP_MODE = 3; // 0x3 |
| 17295 | } |
| 17296 | |
| 17297 | public class CipherInputStream extends java.io.FilterInputStream { |
| 17298 | ctor public CipherInputStream(java.io.InputStream, javax.crypto.Cipher); |
| 17299 | ctor protected CipherInputStream(java.io.InputStream); |
| 17300 | } |
| 17301 | |
| 17302 | public class CipherOutputStream extends java.io.FilterOutputStream { |
| 17303 | ctor public CipherOutputStream(java.io.OutputStream, javax.crypto.Cipher); |
| 17304 | ctor protected CipherOutputStream(java.io.OutputStream); |
| 17305 | } |
| 17306 | |
| 17307 | public abstract class CipherSpi { |
| 17308 | ctor public CipherSpi(); |
| 17309 | method protected abstract byte[] engineDoFinal(byte[], int, int) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException; |
| 17310 | method protected abstract int engineDoFinal(byte[], int, int, byte[], int) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException, javax.crypto.ShortBufferException; |
| 17311 | method protected int engineDoFinal(java.nio.ByteBuffer, java.nio.ByteBuffer) throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException, javax.crypto.ShortBufferException; |
| 17312 | method protected abstract int engineGetBlockSize(); |
| 17313 | method protected abstract byte[] engineGetIV(); |
| 17314 | method protected int engineGetKeySize(java.security.Key) throws java.security.InvalidKeyException; |
| 17315 | method protected abstract int engineGetOutputSize(int); |
| 17316 | method protected abstract java.security.AlgorithmParameters engineGetParameters(); |
| 17317 | method protected abstract void engineInit(int, java.security.Key, java.security.SecureRandom) throws java.security.InvalidKeyException; |
| 17318 | method protected abstract void engineInit(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17319 | method protected abstract void engineInit(int, java.security.Key, java.security.AlgorithmParameters, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17320 | method protected abstract void engineSetMode(String) throws java.security.NoSuchAlgorithmException; |
| 17321 | method protected abstract void engineSetPadding(String) throws javax.crypto.NoSuchPaddingException; |
| 17322 | method protected java.security.Key engineUnwrap(byte[], String, int) throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException; |
| 17323 | method protected abstract byte[] engineUpdate(byte[], int, int); |
| 17324 | method protected abstract int engineUpdate(byte[], int, int, byte[], int) throws javax.crypto.ShortBufferException; |
| 17325 | method protected int engineUpdate(java.nio.ByteBuffer, java.nio.ByteBuffer) throws javax.crypto.ShortBufferException; |
| 17326 | method protected void engineUpdateAAD(byte[], int, int); |
| 17327 | method protected void engineUpdateAAD(java.nio.ByteBuffer); |
| 17328 | method protected byte[] engineWrap(java.security.Key) throws javax.crypto.IllegalBlockSizeException, java.security.InvalidKeyException; |
| 17329 | } |
| 17330 | |
| 17331 | public class EncryptedPrivateKeyInfo { |
| 17332 | ctor public EncryptedPrivateKeyInfo(byte[]) throws java.io.IOException; |
| 17333 | ctor public EncryptedPrivateKeyInfo(String, byte[]) throws java.security.NoSuchAlgorithmException; |
| 17334 | ctor public EncryptedPrivateKeyInfo(java.security.AlgorithmParameters, byte[]) throws java.security.NoSuchAlgorithmException; |
| 17335 | method public String getAlgName(); |
| 17336 | method public java.security.AlgorithmParameters getAlgParameters(); |
| 17337 | method public byte[] getEncoded() throws java.io.IOException; |
| 17338 | method public byte[] getEncryptedData(); |
| 17339 | method public java.security.spec.PKCS8EncodedKeySpec getKeySpec(javax.crypto.Cipher) throws java.security.spec.InvalidKeySpecException; |
| 17340 | method public java.security.spec.PKCS8EncodedKeySpec getKeySpec(java.security.Key) throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException; |
| 17341 | method public java.security.spec.PKCS8EncodedKeySpec getKeySpec(java.security.Key, String) throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17342 | method public java.security.spec.PKCS8EncodedKeySpec getKeySpec(java.security.Key, java.security.Provider) throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException; |
| 17343 | } |
| 17344 | |
| 17345 | public class ExemptionMechanism { |
| 17346 | ctor protected ExemptionMechanism(javax.crypto.ExemptionMechanismSpi, java.security.Provider, String); |
| 17347 | method public final byte[] genExemptionBlob() throws javax.crypto.ExemptionMechanismException, java.lang.IllegalStateException; |
| 17348 | method public final int genExemptionBlob(byte[]) throws javax.crypto.ExemptionMechanismException, java.lang.IllegalStateException, javax.crypto.ShortBufferException; |
| 17349 | method public final int genExemptionBlob(byte[], int) throws javax.crypto.ExemptionMechanismException, java.lang.IllegalStateException, javax.crypto.ShortBufferException; |
| 17350 | method public static final javax.crypto.ExemptionMechanism getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 17351 | method public static final javax.crypto.ExemptionMechanism getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17352 | method public static final javax.crypto.ExemptionMechanism getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 17353 | method public final String getName(); |
| 17354 | method public final int getOutputSize(int) throws java.lang.IllegalStateException; |
| 17355 | method public final java.security.Provider getProvider(); |
| 17356 | method public final void init(java.security.Key) throws javax.crypto.ExemptionMechanismException, java.security.InvalidKeyException; |
| 17357 | method public final void init(java.security.Key, java.security.spec.AlgorithmParameterSpec) throws javax.crypto.ExemptionMechanismException, java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17358 | method public final void init(java.security.Key, java.security.AlgorithmParameters) throws javax.crypto.ExemptionMechanismException, java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17359 | method public final boolean isCryptoAllowed(java.security.Key) throws javax.crypto.ExemptionMechanismException; |
| 17360 | } |
| 17361 | |
| 17362 | public class ExemptionMechanismException extends java.security.GeneralSecurityException { |
| 17363 | ctor public ExemptionMechanismException(); |
| 17364 | ctor public ExemptionMechanismException(String); |
| 17365 | } |
| 17366 | |
| 17367 | public abstract class ExemptionMechanismSpi { |
| 17368 | ctor public ExemptionMechanismSpi(); |
| 17369 | method protected abstract byte[] engineGenExemptionBlob() throws javax.crypto.ExemptionMechanismException; |
| 17370 | method protected abstract int engineGenExemptionBlob(byte[], int) throws javax.crypto.ExemptionMechanismException, javax.crypto.ShortBufferException; |
| 17371 | method protected abstract int engineGetOutputSize(int); |
| 17372 | method protected abstract void engineInit(java.security.Key) throws javax.crypto.ExemptionMechanismException, java.security.InvalidKeyException; |
| 17373 | method protected abstract void engineInit(java.security.Key, java.security.spec.AlgorithmParameterSpec) throws javax.crypto.ExemptionMechanismException, java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17374 | method protected abstract void engineInit(java.security.Key, java.security.AlgorithmParameters) throws javax.crypto.ExemptionMechanismException, java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17375 | } |
| 17376 | |
| 17377 | public class IllegalBlockSizeException extends java.security.GeneralSecurityException { |
| 17378 | ctor public IllegalBlockSizeException(); |
| 17379 | ctor public IllegalBlockSizeException(String); |
| 17380 | } |
| 17381 | |
| 17382 | public class KeyAgreement { |
| 17383 | ctor protected KeyAgreement(javax.crypto.KeyAgreementSpi, java.security.Provider, String); |
| 17384 | method public final java.security.Key doPhase(java.security.Key, boolean) throws java.lang.IllegalStateException, java.security.InvalidKeyException; |
| 17385 | method public final byte[] generateSecret() throws java.lang.IllegalStateException; |
| 17386 | method public final int generateSecret(byte[], int) throws java.lang.IllegalStateException, javax.crypto.ShortBufferException; |
| 17387 | method public final javax.crypto.SecretKey generateSecret(String) throws java.lang.IllegalStateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException; |
| 17388 | method public final String getAlgorithm(); |
| 17389 | method public static final javax.crypto.KeyAgreement getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 17390 | method public static final javax.crypto.KeyAgreement getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17391 | method public static final javax.crypto.KeyAgreement getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 17392 | method public final java.security.Provider getProvider(); |
| 17393 | method public final void init(java.security.Key) throws java.security.InvalidKeyException; |
| 17394 | method public final void init(java.security.Key, java.security.SecureRandom) throws java.security.InvalidKeyException; |
| 17395 | method public final void init(java.security.Key, java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17396 | method public final void init(java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17397 | } |
| 17398 | |
| 17399 | public abstract class KeyAgreementSpi { |
| 17400 | ctor public KeyAgreementSpi(); |
| 17401 | method protected abstract java.security.Key engineDoPhase(java.security.Key, boolean) throws java.lang.IllegalStateException, java.security.InvalidKeyException; |
| 17402 | method protected abstract byte[] engineGenerateSecret() throws java.lang.IllegalStateException; |
| 17403 | method protected abstract int engineGenerateSecret(byte[], int) throws java.lang.IllegalStateException, javax.crypto.ShortBufferException; |
| 17404 | method protected abstract javax.crypto.SecretKey engineGenerateSecret(String) throws java.lang.IllegalStateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException; |
| 17405 | method protected abstract void engineInit(java.security.Key, java.security.SecureRandom) throws java.security.InvalidKeyException; |
| 17406 | method protected abstract void engineInit(java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17407 | } |
| 17408 | |
| 17409 | public class KeyGenerator { |
| 17410 | ctor protected KeyGenerator(javax.crypto.KeyGeneratorSpi, java.security.Provider, String); |
| 17411 | method public final javax.crypto.SecretKey generateKey(); |
| 17412 | method public final String getAlgorithm(); |
| 17413 | method public static final javax.crypto.KeyGenerator getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 17414 | method public static final javax.crypto.KeyGenerator getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17415 | method public static final javax.crypto.KeyGenerator getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 17416 | method public final java.security.Provider getProvider(); |
| 17417 | method public final void init(java.security.SecureRandom); |
| 17418 | method public final void init(java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException; |
| 17419 | method public final void init(java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException; |
| 17420 | method public final void init(int); |
| 17421 | method public final void init(int, java.security.SecureRandom); |
| 17422 | } |
| 17423 | |
| 17424 | public abstract class KeyGeneratorSpi { |
| 17425 | ctor public KeyGeneratorSpi(); |
| 17426 | method protected abstract javax.crypto.SecretKey engineGenerateKey(); |
| 17427 | method protected abstract void engineInit(java.security.SecureRandom); |
| 17428 | method protected abstract void engineInit(java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom) throws java.security.InvalidAlgorithmParameterException; |
| 17429 | method protected abstract void engineInit(int, java.security.SecureRandom); |
| 17430 | } |
| 17431 | |
| 17432 | public class Mac implements java.lang.Cloneable { |
| 17433 | ctor protected Mac(javax.crypto.MacSpi, java.security.Provider, String); |
| 17434 | method public final Object clone() throws java.lang.CloneNotSupportedException; |
| 17435 | method public final byte[] doFinal() throws java.lang.IllegalStateException; |
| 17436 | method public final void doFinal(byte[], int) throws java.lang.IllegalStateException, javax.crypto.ShortBufferException; |
| 17437 | method public final byte[] doFinal(byte[]) throws java.lang.IllegalStateException; |
| 17438 | method public final String getAlgorithm(); |
| 17439 | method public static final javax.crypto.Mac getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 17440 | method public static final javax.crypto.Mac getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17441 | method public static final javax.crypto.Mac getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 17442 | method public final int getMacLength(); |
| 17443 | method public final java.security.Provider getProvider(); |
| 17444 | method public final void init(java.security.Key) throws java.security.InvalidKeyException; |
| 17445 | method public final void init(java.security.Key, java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17446 | method public final void reset(); |
| 17447 | method public final void update(byte) throws java.lang.IllegalStateException; |
| 17448 | method public final void update(byte[]) throws java.lang.IllegalStateException; |
| 17449 | method public final void update(byte[], int, int) throws java.lang.IllegalStateException; |
| 17450 | method public final void update(java.nio.ByteBuffer); |
| 17451 | } |
| 17452 | |
| 17453 | public abstract class MacSpi { |
| 17454 | ctor public MacSpi(); |
| 17455 | method public Object clone() throws java.lang.CloneNotSupportedException; |
| 17456 | method protected abstract byte[] engineDoFinal(); |
| 17457 | method protected abstract int engineGetMacLength(); |
| 17458 | method protected abstract void engineInit(java.security.Key, java.security.spec.AlgorithmParameterSpec) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException; |
| 17459 | method protected abstract void engineReset(); |
| 17460 | method protected abstract void engineUpdate(byte); |
| 17461 | method protected abstract void engineUpdate(byte[], int, int); |
| 17462 | method protected void engineUpdate(java.nio.ByteBuffer); |
| 17463 | } |
| 17464 | |
| 17465 | public class NoSuchPaddingException extends java.security.GeneralSecurityException { |
| 17466 | ctor public NoSuchPaddingException(); |
| 17467 | ctor public NoSuchPaddingException(String); |
| 17468 | } |
| 17469 | |
| 17470 | public class NullCipher extends javax.crypto.Cipher { |
| 17471 | ctor public NullCipher(); |
| 17472 | } |
| 17473 | |
| 17474 | public class SealedObject implements java.io.Serializable { |
| 17475 | ctor public SealedObject(java.io.Serializable, javax.crypto.Cipher) throws java.io.IOException, javax.crypto.IllegalBlockSizeException; |
| 17476 | ctor protected SealedObject(javax.crypto.SealedObject); |
| 17477 | method public final String getAlgorithm(); |
| 17478 | method public final Object getObject(java.security.Key) throws java.lang.ClassNotFoundException, java.io.IOException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException; |
| 17479 | method public final Object getObject(javax.crypto.Cipher) throws javax.crypto.BadPaddingException, java.lang.ClassNotFoundException, java.io.IOException, javax.crypto.IllegalBlockSizeException; |
| 17480 | method public final Object getObject(java.security.Key, String) throws java.lang.ClassNotFoundException, java.io.IOException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17481 | field protected byte[] encodedParams; |
| 17482 | } |
| 17483 | |
| 17484 | public interface SecretKey extends java.security.Key javax.security.auth.Destroyable { |
| 17485 | field public static final long serialVersionUID = -4795878709595146952L; // 0xbd719db928b8f538L |
| 17486 | } |
| 17487 | |
| 17488 | public class SecretKeyFactory { |
| 17489 | ctor protected SecretKeyFactory(javax.crypto.SecretKeyFactorySpi, java.security.Provider, String); |
| 17490 | method public final javax.crypto.SecretKey generateSecret(java.security.spec.KeySpec) throws java.security.spec.InvalidKeySpecException; |
| 17491 | method public final String getAlgorithm(); |
| 17492 | method public static final javax.crypto.SecretKeyFactory getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 17493 | method public static final javax.crypto.SecretKeyFactory getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17494 | method public static final javax.crypto.SecretKeyFactory getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 17495 | method public final java.security.spec.KeySpec getKeySpec(javax.crypto.SecretKey, Class<?>) throws java.security.spec.InvalidKeySpecException; |
| 17496 | method public final java.security.Provider getProvider(); |
| 17497 | method public final javax.crypto.SecretKey translateKey(javax.crypto.SecretKey) throws java.security.InvalidKeyException; |
| 17498 | } |
| 17499 | |
| 17500 | public abstract class SecretKeyFactorySpi { |
| 17501 | ctor public SecretKeyFactorySpi(); |
| 17502 | method protected abstract javax.crypto.SecretKey engineGenerateSecret(java.security.spec.KeySpec) throws java.security.spec.InvalidKeySpecException; |
| 17503 | method protected abstract java.security.spec.KeySpec engineGetKeySpec(javax.crypto.SecretKey, Class<?>) throws java.security.spec.InvalidKeySpecException; |
| 17504 | method protected abstract javax.crypto.SecretKey engineTranslateKey(javax.crypto.SecretKey) throws java.security.InvalidKeyException; |
| 17505 | } |
| 17506 | |
| 17507 | public class ShortBufferException extends java.security.GeneralSecurityException { |
| 17508 | ctor public ShortBufferException(); |
| 17509 | ctor public ShortBufferException(String); |
| 17510 | } |
| 17511 | |
| 17512 | } |
| 17513 | |
| 17514 | package javax.crypto.interfaces { |
| 17515 | |
| 17516 | public interface DHKey { |
| 17517 | method public javax.crypto.spec.DHParameterSpec getParams(); |
| 17518 | } |
| 17519 | |
| 17520 | public interface DHPrivateKey extends javax.crypto.interfaces.DHKey java.security.PrivateKey { |
| 17521 | method public java.math.BigInteger getX(); |
| 17522 | field public static final long serialVersionUID = 2211791113380396553L; // 0x1eb1dc4c8e677e09L |
| 17523 | } |
| 17524 | |
| 17525 | public interface DHPublicKey extends javax.crypto.interfaces.DHKey java.security.PublicKey { |
| 17526 | method public java.math.BigInteger getY(); |
| 17527 | field public static final long serialVersionUID = -6628103563352519193L; // 0xa4043eed23df4de7L |
| 17528 | } |
| 17529 | |
| 17530 | public interface PBEKey extends javax.crypto.SecretKey { |
| 17531 | method public int getIterationCount(); |
| 17532 | method public char[] getPassword(); |
| 17533 | method public byte[] getSalt(); |
| 17534 | field public static final long serialVersionUID = -1430015993304333921L; // 0xec279007d7f7c19fL |
| 17535 | } |
| 17536 | |
| 17537 | } |
| 17538 | |
| 17539 | package javax.crypto.spec { |
| 17540 | |
| 17541 | public class DESKeySpec implements java.security.spec.KeySpec { |
| 17542 | ctor public DESKeySpec(byte[]) throws java.security.InvalidKeyException; |
| 17543 | ctor public DESKeySpec(byte[], int) throws java.security.InvalidKeyException; |
| 17544 | method public byte[] getKey(); |
| 17545 | method public static boolean isParityAdjusted(byte[], int) throws java.security.InvalidKeyException; |
| 17546 | method public static boolean isWeak(byte[], int) throws java.security.InvalidKeyException; |
| 17547 | field public static final int DES_KEY_LEN = 8; // 0x8 |
| 17548 | } |
| 17549 | |
| 17550 | public class DESedeKeySpec implements java.security.spec.KeySpec { |
| 17551 | ctor public DESedeKeySpec(byte[]) throws java.security.InvalidKeyException; |
| 17552 | ctor public DESedeKeySpec(byte[], int) throws java.security.InvalidKeyException; |
| 17553 | method public byte[] getKey(); |
| 17554 | method public static boolean isParityAdjusted(byte[], int) throws java.security.InvalidKeyException; |
| 17555 | field public static final int DES_EDE_KEY_LEN = 24; // 0x18 |
| 17556 | } |
| 17557 | |
| 17558 | public class DHGenParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17559 | ctor public DHGenParameterSpec(int, int); |
| 17560 | method public int getExponentSize(); |
| 17561 | method public int getPrimeSize(); |
| 17562 | } |
| 17563 | |
| 17564 | public class DHParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17565 | ctor public DHParameterSpec(java.math.BigInteger, java.math.BigInteger); |
| 17566 | ctor public DHParameterSpec(java.math.BigInteger, java.math.BigInteger, int); |
| 17567 | method public java.math.BigInteger getG(); |
| 17568 | method public int getL(); |
| 17569 | method public java.math.BigInteger getP(); |
| 17570 | } |
| 17571 | |
| 17572 | public class DHPrivateKeySpec implements java.security.spec.KeySpec { |
| 17573 | ctor public DHPrivateKeySpec(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 17574 | method public java.math.BigInteger getG(); |
| 17575 | method public java.math.BigInteger getP(); |
| 17576 | method public java.math.BigInteger getX(); |
| 17577 | } |
| 17578 | |
| 17579 | public class DHPublicKeySpec implements java.security.spec.KeySpec { |
| 17580 | ctor public DHPublicKeySpec(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 17581 | method public java.math.BigInteger getG(); |
| 17582 | method public java.math.BigInteger getP(); |
| 17583 | method public java.math.BigInteger getY(); |
| 17584 | } |
| 17585 | |
| 17586 | public class GCMParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17587 | ctor public GCMParameterSpec(int, byte[]); |
| 17588 | ctor public GCMParameterSpec(int, byte[], int, int); |
| 17589 | method public byte[] getIV(); |
| 17590 | method public int getTLen(); |
| 17591 | } |
| 17592 | |
| 17593 | public class IvParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17594 | ctor public IvParameterSpec(byte[]); |
| 17595 | ctor public IvParameterSpec(byte[], int, int); |
| 17596 | method public byte[] getIV(); |
| 17597 | } |
| 17598 | |
| 17599 | public class OAEPParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17600 | ctor public OAEPParameterSpec(String, String, java.security.spec.AlgorithmParameterSpec, javax.crypto.spec.PSource); |
| 17601 | method public String getDigestAlgorithm(); |
| 17602 | method public String getMGFAlgorithm(); |
| 17603 | method public java.security.spec.AlgorithmParameterSpec getMGFParameters(); |
| 17604 | method public javax.crypto.spec.PSource getPSource(); |
| 17605 | field public static final javax.crypto.spec.OAEPParameterSpec DEFAULT; |
| 17606 | } |
| 17607 | |
| 17608 | public class PBEKeySpec implements java.security.spec.KeySpec { |
| 17609 | ctor public PBEKeySpec(char[]); |
| 17610 | ctor public PBEKeySpec(char[], byte[], int, int); |
| 17611 | ctor public PBEKeySpec(char[], byte[], int); |
| 17612 | method public final void clearPassword(); |
| 17613 | method public final int getIterationCount(); |
| 17614 | method public final int getKeyLength(); |
| 17615 | method public final char[] getPassword(); |
| 17616 | method public final byte[] getSalt(); |
| 17617 | } |
| 17618 | |
| 17619 | public class PBEParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17620 | ctor public PBEParameterSpec(byte[], int); |
| 17621 | ctor public PBEParameterSpec(byte[], int, java.security.spec.AlgorithmParameterSpec); |
| 17622 | method public int getIterationCount(); |
| 17623 | method public java.security.spec.AlgorithmParameterSpec getParameterSpec(); |
| 17624 | method public byte[] getSalt(); |
| 17625 | } |
| 17626 | |
| 17627 | public class PSource { |
| 17628 | ctor protected PSource(String); |
| 17629 | method public String getAlgorithm(); |
| 17630 | } |
| 17631 | |
| 17632 | public static final class PSource.PSpecified extends javax.crypto.spec.PSource { |
| 17633 | ctor public PSource.PSpecified(byte[]); |
| 17634 | method public byte[] getValue(); |
| 17635 | field public static final javax.crypto.spec.PSource.PSpecified DEFAULT; |
| 17636 | } |
| 17637 | |
| 17638 | public class RC2ParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17639 | ctor public RC2ParameterSpec(int); |
| 17640 | ctor public RC2ParameterSpec(int, byte[]); |
| 17641 | ctor public RC2ParameterSpec(int, byte[], int); |
| 17642 | method public int getEffectiveKeyBits(); |
| 17643 | method public byte[] getIV(); |
| 17644 | } |
| 17645 | |
| 17646 | public class RC5ParameterSpec implements java.security.spec.AlgorithmParameterSpec { |
| 17647 | ctor public RC5ParameterSpec(int, int, int); |
| 17648 | ctor public RC5ParameterSpec(int, int, int, byte[]); |
| 17649 | ctor public RC5ParameterSpec(int, int, int, byte[], int); |
| 17650 | method public byte[] getIV(); |
| 17651 | method public int getRounds(); |
| 17652 | method public int getVersion(); |
| 17653 | method public int getWordSize(); |
| 17654 | } |
| 17655 | |
| 17656 | public class SecretKeySpec implements java.security.spec.KeySpec javax.crypto.SecretKey { |
| 17657 | ctor public SecretKeySpec(byte[], String); |
| 17658 | ctor public SecretKeySpec(byte[], int, int, String); |
| 17659 | method public String getAlgorithm(); |
| 17660 | method public byte[] getEncoded(); |
| 17661 | method public String getFormat(); |
| 17662 | } |
| 17663 | |
| 17664 | } |
| 17665 | |
| 17666 | package javax.net { |
| 17667 | |
| 17668 | public abstract class ServerSocketFactory { |
| 17669 | ctor protected ServerSocketFactory(); |
| 17670 | method public java.net.ServerSocket createServerSocket() throws java.io.IOException; |
| 17671 | method public abstract java.net.ServerSocket createServerSocket(int) throws java.io.IOException; |
| 17672 | method public abstract java.net.ServerSocket createServerSocket(int, int) throws java.io.IOException; |
| 17673 | method public abstract java.net.ServerSocket createServerSocket(int, int, java.net.InetAddress) throws java.io.IOException; |
| 17674 | method public static javax.net.ServerSocketFactory getDefault(); |
| 17675 | } |
| 17676 | |
| 17677 | public abstract class SocketFactory { |
| 17678 | ctor protected SocketFactory(); |
| 17679 | method public java.net.Socket createSocket() throws java.io.IOException; |
| 17680 | method public abstract java.net.Socket createSocket(String, int) throws java.io.IOException, java.net.UnknownHostException; |
| 17681 | method public abstract java.net.Socket createSocket(String, int, java.net.InetAddress, int) throws java.io.IOException, java.net.UnknownHostException; |
| 17682 | method public abstract java.net.Socket createSocket(java.net.InetAddress, int) throws java.io.IOException; |
| 17683 | method public abstract java.net.Socket createSocket(java.net.InetAddress, int, java.net.InetAddress, int) throws java.io.IOException; |
| 17684 | method public static javax.net.SocketFactory getDefault(); |
| 17685 | } |
| 17686 | |
| 17687 | } |
| 17688 | |
| 17689 | package javax.net.ssl { |
| 17690 | |
| 17691 | public class CertPathTrustManagerParameters implements javax.net.ssl.ManagerFactoryParameters { |
| 17692 | ctor public CertPathTrustManagerParameters(java.security.cert.CertPathParameters); |
| 17693 | method public java.security.cert.CertPathParameters getParameters(); |
| 17694 | } |
| 17695 | |
| 17696 | public abstract class ExtendedSSLSession implements javax.net.ssl.SSLSession { |
| 17697 | ctor public ExtendedSSLSession(); |
| 17698 | method public abstract String[] getLocalSupportedSignatureAlgorithms(); |
| 17699 | method public abstract String[] getPeerSupportedSignatureAlgorithms(); |
| 17700 | method public java.util.List<javax.net.ssl.SNIServerName> getRequestedServerNames(); |
| 17701 | } |
| 17702 | |
| 17703 | public class HandshakeCompletedEvent extends java.util.EventObject { |
| 17704 | ctor public HandshakeCompletedEvent(javax.net.ssl.SSLSocket, javax.net.ssl.SSLSession); |
| 17705 | method public String getCipherSuite(); |
| 17706 | method public java.security.cert.Certificate[] getLocalCertificates(); |
| 17707 | method public java.security.Principal getLocalPrincipal(); |
| 17708 | method public javax.security.cert.X509Certificate[] getPeerCertificateChain() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17709 | method public java.security.cert.Certificate[] getPeerCertificates() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17710 | method public java.security.Principal getPeerPrincipal() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17711 | method public javax.net.ssl.SSLSession getSession(); |
| 17712 | method public javax.net.ssl.SSLSocket getSocket(); |
| 17713 | } |
| 17714 | |
| 17715 | public interface HandshakeCompletedListener extends java.util.EventListener { |
| 17716 | method public void handshakeCompleted(javax.net.ssl.HandshakeCompletedEvent); |
| 17717 | } |
| 17718 | |
| 17719 | public interface HostnameVerifier { |
| 17720 | method public boolean verify(String, javax.net.ssl.SSLSession); |
| 17721 | } |
| 17722 | |
| 17723 | public abstract class HttpsURLConnection extends java.net.HttpURLConnection { |
| 17724 | ctor protected HttpsURLConnection(java.net.URL); |
| 17725 | method public abstract String getCipherSuite(); |
| 17726 | method public static javax.net.ssl.HostnameVerifier getDefaultHostnameVerifier(); |
| 17727 | method public static javax.net.ssl.SSLSocketFactory getDefaultSSLSocketFactory(); |
| 17728 | method public javax.net.ssl.HostnameVerifier getHostnameVerifier(); |
| 17729 | method public abstract java.security.cert.Certificate[] getLocalCertificates(); |
| 17730 | method public java.security.Principal getLocalPrincipal(); |
| 17731 | method public java.security.Principal getPeerPrincipal() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17732 | method public javax.net.ssl.SSLSocketFactory getSSLSocketFactory(); |
| 17733 | method public abstract java.security.cert.Certificate[] getServerCertificates() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17734 | method public static void setDefaultHostnameVerifier(javax.net.ssl.HostnameVerifier); |
| 17735 | method public static void setDefaultSSLSocketFactory(javax.net.ssl.SSLSocketFactory); |
| 17736 | method public void setHostnameVerifier(javax.net.ssl.HostnameVerifier); |
| 17737 | method public void setSSLSocketFactory(javax.net.ssl.SSLSocketFactory); |
| 17738 | field protected javax.net.ssl.HostnameVerifier hostnameVerifier; |
| 17739 | } |
| 17740 | |
| 17741 | public interface KeyManager { |
| 17742 | } |
| 17743 | |
| 17744 | public class KeyManagerFactory { |
| 17745 | ctor protected KeyManagerFactory(javax.net.ssl.KeyManagerFactorySpi, java.security.Provider, String); |
| 17746 | method public final String getAlgorithm(); |
| 17747 | method public static final String getDefaultAlgorithm(); |
| 17748 | method public static final javax.net.ssl.KeyManagerFactory getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 17749 | method public static final javax.net.ssl.KeyManagerFactory getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17750 | method public static final javax.net.ssl.KeyManagerFactory getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 17751 | method public final javax.net.ssl.KeyManager[] getKeyManagers(); |
| 17752 | method public final java.security.Provider getProvider(); |
| 17753 | method public final void init(java.security.KeyStore, char[]) throws java.security.KeyStoreException, java.security.NoSuchAlgorithmException, java.security.UnrecoverableKeyException; |
| 17754 | method public final void init(javax.net.ssl.ManagerFactoryParameters) throws java.security.InvalidAlgorithmParameterException; |
| 17755 | } |
| 17756 | |
| 17757 | public abstract class KeyManagerFactorySpi { |
| 17758 | ctor public KeyManagerFactorySpi(); |
| 17759 | method protected abstract javax.net.ssl.KeyManager[] engineGetKeyManagers(); |
| 17760 | method protected abstract void engineInit(java.security.KeyStore, char[]) throws java.security.KeyStoreException, java.security.NoSuchAlgorithmException, java.security.UnrecoverableKeyException; |
| 17761 | method protected abstract void engineInit(javax.net.ssl.ManagerFactoryParameters) throws java.security.InvalidAlgorithmParameterException; |
| 17762 | } |
| 17763 | |
| 17764 | public class KeyStoreBuilderParameters implements javax.net.ssl.ManagerFactoryParameters { |
| 17765 | ctor public KeyStoreBuilderParameters(java.security.KeyStore.Builder); |
| 17766 | ctor public KeyStoreBuilderParameters(java.util.List<java.security.KeyStore.Builder>); |
| 17767 | method public java.util.List<java.security.KeyStore.Builder> getParameters(); |
| 17768 | } |
| 17769 | |
| 17770 | public interface ManagerFactoryParameters { |
| 17771 | } |
| 17772 | |
| 17773 | public final class SNIHostName extends javax.net.ssl.SNIServerName { |
| 17774 | ctor public SNIHostName(String); |
| 17775 | ctor public SNIHostName(byte[]); |
| 17776 | method public static javax.net.ssl.SNIMatcher createSNIMatcher(String); |
| 17777 | method public String getAsciiName(); |
| 17778 | } |
| 17779 | |
| 17780 | public abstract class SNIMatcher { |
| 17781 | ctor protected SNIMatcher(int); |
| 17782 | method public final int getType(); |
| 17783 | method public abstract boolean matches(javax.net.ssl.SNIServerName); |
| 17784 | } |
| 17785 | |
| 17786 | public abstract class SNIServerName { |
| 17787 | ctor protected SNIServerName(int, byte[]); |
| 17788 | method public final byte[] getEncoded(); |
| 17789 | method public final int getType(); |
| 17790 | } |
| 17791 | |
| 17792 | public class SSLContext { |
| 17793 | ctor protected SSLContext(javax.net.ssl.SSLContextSpi, java.security.Provider, String); |
| 17794 | method public final javax.net.ssl.SSLEngine createSSLEngine(); |
| 17795 | method public final javax.net.ssl.SSLEngine createSSLEngine(String, int); |
| 17796 | method public final javax.net.ssl.SSLSessionContext getClientSessionContext(); |
| 17797 | method public static javax.net.ssl.SSLContext getDefault() throws java.security.NoSuchAlgorithmException; |
| 17798 | method public final javax.net.ssl.SSLParameters getDefaultSSLParameters(); |
| 17799 | method public static javax.net.ssl.SSLContext getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 17800 | method public static javax.net.ssl.SSLContext getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 17801 | method public static javax.net.ssl.SSLContext getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 17802 | method public final String getProtocol(); |
| 17803 | method public final java.security.Provider getProvider(); |
| 17804 | method public final javax.net.ssl.SSLSessionContext getServerSessionContext(); |
| 17805 | method public final javax.net.ssl.SSLServerSocketFactory getServerSocketFactory(); |
| 17806 | method public final javax.net.ssl.SSLSocketFactory getSocketFactory(); |
| 17807 | method public final javax.net.ssl.SSLParameters getSupportedSSLParameters(); |
| 17808 | method public final void init(javax.net.ssl.KeyManager[], javax.net.ssl.TrustManager[], java.security.SecureRandom) throws java.security.KeyManagementException; |
| 17809 | method public static void setDefault(javax.net.ssl.SSLContext); |
| 17810 | } |
| 17811 | |
| 17812 | public abstract class SSLContextSpi { |
| 17813 | ctor public SSLContextSpi(); |
| 17814 | method protected abstract javax.net.ssl.SSLEngine engineCreateSSLEngine(); |
| 17815 | method protected abstract javax.net.ssl.SSLEngine engineCreateSSLEngine(String, int); |
| 17816 | method protected abstract javax.net.ssl.SSLSessionContext engineGetClientSessionContext(); |
| 17817 | method protected javax.net.ssl.SSLParameters engineGetDefaultSSLParameters(); |
| 17818 | method protected abstract javax.net.ssl.SSLSessionContext engineGetServerSessionContext(); |
| 17819 | method protected abstract javax.net.ssl.SSLServerSocketFactory engineGetServerSocketFactory(); |
| 17820 | method protected abstract javax.net.ssl.SSLSocketFactory engineGetSocketFactory(); |
| 17821 | method protected javax.net.ssl.SSLParameters engineGetSupportedSSLParameters(); |
| 17822 | method protected abstract void engineInit(javax.net.ssl.KeyManager[], javax.net.ssl.TrustManager[], java.security.SecureRandom) throws java.security.KeyManagementException; |
| 17823 | } |
| 17824 | |
| 17825 | public abstract class SSLEngine { |
| 17826 | ctor protected SSLEngine(); |
| 17827 | ctor protected SSLEngine(String, int); |
| 17828 | method public abstract void beginHandshake() throws javax.net.ssl.SSLException; |
| 17829 | method public abstract void closeInbound() throws javax.net.ssl.SSLException; |
| 17830 | method public abstract void closeOutbound(); |
| 17831 | method public String getApplicationProtocol(); |
| 17832 | method public abstract Runnable getDelegatedTask(); |
| 17833 | method public abstract boolean getEnableSessionCreation(); |
| 17834 | method public abstract String[] getEnabledCipherSuites(); |
| 17835 | method public abstract String[] getEnabledProtocols(); |
| 17836 | method public String getHandshakeApplicationProtocol(); |
| 17837 | method public java.util.function.BiFunction<javax.net.ssl.SSLEngine,java.util.List<java.lang.String>,java.lang.String> getHandshakeApplicationProtocolSelector(); |
| 17838 | method public javax.net.ssl.SSLSession getHandshakeSession(); |
| 17839 | method public abstract javax.net.ssl.SSLEngineResult.HandshakeStatus getHandshakeStatus(); |
| 17840 | method public abstract boolean getNeedClientAuth(); |
| 17841 | method public String getPeerHost(); |
| 17842 | method public int getPeerPort(); |
| 17843 | method public javax.net.ssl.SSLParameters getSSLParameters(); |
| 17844 | method public abstract javax.net.ssl.SSLSession getSession(); |
| 17845 | method public abstract String[] getSupportedCipherSuites(); |
| 17846 | method public abstract String[] getSupportedProtocols(); |
| 17847 | method public abstract boolean getUseClientMode(); |
| 17848 | method public abstract boolean getWantClientAuth(); |
| 17849 | method public abstract boolean isInboundDone(); |
| 17850 | method public abstract boolean isOutboundDone(); |
| 17851 | method public abstract void setEnableSessionCreation(boolean); |
| 17852 | method public abstract void setEnabledCipherSuites(String[]); |
| 17853 | method public abstract void setEnabledProtocols(String[]); |
| 17854 | method public void setHandshakeApplicationProtocolSelector(java.util.function.BiFunction<javax.net.ssl.SSLEngine,java.util.List<java.lang.String>,java.lang.String>); |
| 17855 | method public abstract void setNeedClientAuth(boolean); |
| 17856 | method public void setSSLParameters(javax.net.ssl.SSLParameters); |
| 17857 | method public abstract void setUseClientMode(boolean); |
| 17858 | method public abstract void setWantClientAuth(boolean); |
| 17859 | method public javax.net.ssl.SSLEngineResult unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer) throws javax.net.ssl.SSLException; |
| 17860 | method public javax.net.ssl.SSLEngineResult unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer[]) throws javax.net.ssl.SSLException; |
| 17861 | method public abstract javax.net.ssl.SSLEngineResult unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer[], int, int) throws javax.net.ssl.SSLException; |
| 17862 | method public javax.net.ssl.SSLEngineResult wrap(java.nio.ByteBuffer, java.nio.ByteBuffer) throws javax.net.ssl.SSLException; |
| 17863 | method public javax.net.ssl.SSLEngineResult wrap(java.nio.ByteBuffer[], java.nio.ByteBuffer) throws javax.net.ssl.SSLException; |
| 17864 | method public abstract javax.net.ssl.SSLEngineResult wrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer) throws javax.net.ssl.SSLException; |
| 17865 | } |
| 17866 | |
| 17867 | public class SSLEngineResult { |
| 17868 | ctor public SSLEngineResult(javax.net.ssl.SSLEngineResult.Status, javax.net.ssl.SSLEngineResult.HandshakeStatus, int, int); |
| 17869 | method public final int bytesConsumed(); |
| 17870 | method public final int bytesProduced(); |
| 17871 | method public final javax.net.ssl.SSLEngineResult.HandshakeStatus getHandshakeStatus(); |
| 17872 | method public final javax.net.ssl.SSLEngineResult.Status getStatus(); |
| 17873 | } |
| 17874 | |
| 17875 | public enum SSLEngineResult.HandshakeStatus { |
| 17876 | enum_constant public static final javax.net.ssl.SSLEngineResult.HandshakeStatus FINISHED; |
| 17877 | enum_constant public static final javax.net.ssl.SSLEngineResult.HandshakeStatus NEED_TASK; |
| 17878 | enum_constant public static final javax.net.ssl.SSLEngineResult.HandshakeStatus NEED_UNWRAP; |
| 17879 | enum_constant public static final javax.net.ssl.SSLEngineResult.HandshakeStatus NEED_WRAP; |
| 17880 | enum_constant public static final javax.net.ssl.SSLEngineResult.HandshakeStatus NOT_HANDSHAKING; |
| 17881 | } |
| 17882 | |
| 17883 | public enum SSLEngineResult.Status { |
| 17884 | enum_constant public static final javax.net.ssl.SSLEngineResult.Status BUFFER_OVERFLOW; |
| 17885 | enum_constant public static final javax.net.ssl.SSLEngineResult.Status BUFFER_UNDERFLOW; |
| 17886 | enum_constant public static final javax.net.ssl.SSLEngineResult.Status CLOSED; |
| 17887 | enum_constant public static final javax.net.ssl.SSLEngineResult.Status OK; |
| 17888 | } |
| 17889 | |
| 17890 | public class SSLException extends java.io.IOException { |
| 17891 | ctor public SSLException(String); |
| 17892 | ctor public SSLException(String, Throwable); |
| 17893 | ctor public SSLException(Throwable); |
| 17894 | } |
| 17895 | |
| 17896 | public class SSLHandshakeException extends javax.net.ssl.SSLException { |
| 17897 | ctor public SSLHandshakeException(String); |
| 17898 | } |
| 17899 | |
| 17900 | public class SSLKeyException extends javax.net.ssl.SSLException { |
| 17901 | ctor public SSLKeyException(String); |
| 17902 | } |
| 17903 | |
| 17904 | public class SSLParameters { |
| 17905 | ctor public SSLParameters(); |
| 17906 | ctor public SSLParameters(String[]); |
| 17907 | ctor public SSLParameters(String[], String[]); |
| 17908 | method public java.security.AlgorithmConstraints getAlgorithmConstraints(); |
| 17909 | method public String[] getApplicationProtocols(); |
| 17910 | method public String[] getCipherSuites(); |
| 17911 | method public String getEndpointIdentificationAlgorithm(); |
| 17912 | method public boolean getNeedClientAuth(); |
| 17913 | method public String[] getProtocols(); |
| 17914 | method public final java.util.Collection<javax.net.ssl.SNIMatcher> getSNIMatchers(); |
| 17915 | method public final java.util.List<javax.net.ssl.SNIServerName> getServerNames(); |
| 17916 | method public final boolean getUseCipherSuitesOrder(); |
| 17917 | method public boolean getWantClientAuth(); |
| 17918 | method public void setAlgorithmConstraints(java.security.AlgorithmConstraints); |
| 17919 | method public void setApplicationProtocols(String[]); |
| 17920 | method public void setCipherSuites(String[]); |
| 17921 | method public void setEndpointIdentificationAlgorithm(String); |
| 17922 | method public void setNeedClientAuth(boolean); |
| 17923 | method public void setProtocols(String[]); |
| 17924 | method public final void setSNIMatchers(java.util.Collection<javax.net.ssl.SNIMatcher>); |
| 17925 | method public final void setServerNames(java.util.List<javax.net.ssl.SNIServerName>); |
| 17926 | method public final void setUseCipherSuitesOrder(boolean); |
| 17927 | method public void setWantClientAuth(boolean); |
| 17928 | } |
| 17929 | |
| 17930 | public class SSLPeerUnverifiedException extends javax.net.ssl.SSLException { |
| 17931 | ctor public SSLPeerUnverifiedException(String); |
| 17932 | } |
| 17933 | |
| 17934 | public final class SSLPermission extends java.security.BasicPermission { |
| 17935 | ctor public SSLPermission(String); |
| 17936 | ctor public SSLPermission(String, String); |
| 17937 | } |
| 17938 | |
| 17939 | public class SSLProtocolException extends javax.net.ssl.SSLException { |
| 17940 | ctor public SSLProtocolException(String); |
| 17941 | } |
| 17942 | |
| 17943 | public abstract class SSLServerSocket extends java.net.ServerSocket { |
| 17944 | ctor protected SSLServerSocket() throws java.io.IOException; |
| 17945 | ctor protected SSLServerSocket(int) throws java.io.IOException; |
| 17946 | ctor protected SSLServerSocket(int, int) throws java.io.IOException; |
| 17947 | ctor protected SSLServerSocket(int, int, java.net.InetAddress) throws java.io.IOException; |
| 17948 | method public abstract boolean getEnableSessionCreation(); |
| 17949 | method public abstract String[] getEnabledCipherSuites(); |
| 17950 | method public abstract String[] getEnabledProtocols(); |
| 17951 | method public abstract boolean getNeedClientAuth(); |
| 17952 | method public javax.net.ssl.SSLParameters getSSLParameters(); |
| 17953 | method public abstract String[] getSupportedCipherSuites(); |
| 17954 | method public abstract String[] getSupportedProtocols(); |
| 17955 | method public abstract boolean getUseClientMode(); |
| 17956 | method public abstract boolean getWantClientAuth(); |
| 17957 | method public abstract void setEnableSessionCreation(boolean); |
| 17958 | method public abstract void setEnabledCipherSuites(String[]); |
| 17959 | method public abstract void setEnabledProtocols(String[]); |
| 17960 | method public abstract void setNeedClientAuth(boolean); |
| 17961 | method public void setSSLParameters(javax.net.ssl.SSLParameters); |
| 17962 | method public abstract void setUseClientMode(boolean); |
| 17963 | method public abstract void setWantClientAuth(boolean); |
| 17964 | } |
| 17965 | |
| 17966 | public abstract class SSLServerSocketFactory extends javax.net.ServerSocketFactory { |
| 17967 | ctor protected SSLServerSocketFactory(); |
| 17968 | method public static javax.net.ServerSocketFactory getDefault(); |
| 17969 | method public abstract String[] getDefaultCipherSuites(); |
| 17970 | method public abstract String[] getSupportedCipherSuites(); |
| 17971 | } |
| 17972 | |
| 17973 | public interface SSLSession { |
| 17974 | method public int getApplicationBufferSize(); |
| 17975 | method public String getCipherSuite(); |
| 17976 | method public long getCreationTime(); |
| 17977 | method public byte[] getId(); |
| 17978 | method public long getLastAccessedTime(); |
| 17979 | method public java.security.cert.Certificate[] getLocalCertificates(); |
| 17980 | method public java.security.Principal getLocalPrincipal(); |
| 17981 | method public int getPacketBufferSize(); |
| 17982 | method public javax.security.cert.X509Certificate[] getPeerCertificateChain() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17983 | method public java.security.cert.Certificate[] getPeerCertificates() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17984 | method public String getPeerHost(); |
| 17985 | method public int getPeerPort(); |
| 17986 | method public java.security.Principal getPeerPrincipal() throws javax.net.ssl.SSLPeerUnverifiedException; |
| 17987 | method public String getProtocol(); |
| 17988 | method public javax.net.ssl.SSLSessionContext getSessionContext(); |
| 17989 | method public Object getValue(String); |
| 17990 | method public String[] getValueNames(); |
| 17991 | method public void invalidate(); |
| 17992 | method public boolean isValid(); |
| 17993 | method public void putValue(String, Object); |
| 17994 | method public void removeValue(String); |
| 17995 | } |
| 17996 | |
| 17997 | public class SSLSessionBindingEvent extends java.util.EventObject { |
| 17998 | ctor public SSLSessionBindingEvent(javax.net.ssl.SSLSession, String); |
| 17999 | method public String getName(); |
| 18000 | method public javax.net.ssl.SSLSession getSession(); |
| 18001 | } |
| 18002 | |
| 18003 | public interface SSLSessionBindingListener extends java.util.EventListener { |
| 18004 | method public void valueBound(javax.net.ssl.SSLSessionBindingEvent); |
| 18005 | method public void valueUnbound(javax.net.ssl.SSLSessionBindingEvent); |
| 18006 | } |
| 18007 | |
| 18008 | public interface SSLSessionContext { |
| 18009 | method public java.util.Enumeration<byte[]> getIds(); |
| 18010 | method public javax.net.ssl.SSLSession getSession(byte[]); |
| 18011 | method public int getSessionCacheSize(); |
| 18012 | method public int getSessionTimeout(); |
| 18013 | method public void setSessionCacheSize(int) throws java.lang.IllegalArgumentException; |
| 18014 | method public void setSessionTimeout(int) throws java.lang.IllegalArgumentException; |
| 18015 | } |
| 18016 | |
| 18017 | public abstract class SSLSocket extends java.net.Socket { |
| 18018 | ctor protected SSLSocket(); |
| 18019 | ctor protected SSLSocket(String, int) throws java.io.IOException, java.net.UnknownHostException; |
| 18020 | ctor protected SSLSocket(java.net.InetAddress, int) throws java.io.IOException; |
| 18021 | ctor protected SSLSocket(String, int, java.net.InetAddress, int) throws java.io.IOException, java.net.UnknownHostException; |
| 18022 | ctor protected SSLSocket(java.net.InetAddress, int, java.net.InetAddress, int) throws java.io.IOException; |
| 18023 | method public abstract void addHandshakeCompletedListener(javax.net.ssl.HandshakeCompletedListener); |
| 18024 | method public String getApplicationProtocol(); |
| 18025 | method public abstract boolean getEnableSessionCreation(); |
| 18026 | method public abstract String[] getEnabledCipherSuites(); |
| 18027 | method public abstract String[] getEnabledProtocols(); |
| 18028 | method public String getHandshakeApplicationProtocol(); |
| 18029 | method public java.util.function.BiFunction<javax.net.ssl.SSLSocket,java.util.List<java.lang.String>,java.lang.String> getHandshakeApplicationProtocolSelector(); |
| 18030 | method public javax.net.ssl.SSLSession getHandshakeSession(); |
| 18031 | method public abstract boolean getNeedClientAuth(); |
| 18032 | method public javax.net.ssl.SSLParameters getSSLParameters(); |
| 18033 | method public abstract javax.net.ssl.SSLSession getSession(); |
| 18034 | method public abstract String[] getSupportedCipherSuites(); |
| 18035 | method public abstract String[] getSupportedProtocols(); |
| 18036 | method public abstract boolean getUseClientMode(); |
| 18037 | method public abstract boolean getWantClientAuth(); |
| 18038 | method public abstract void removeHandshakeCompletedListener(javax.net.ssl.HandshakeCompletedListener); |
| 18039 | method public abstract void setEnableSessionCreation(boolean); |
| 18040 | method public abstract void setEnabledCipherSuites(String[]); |
| 18041 | method public abstract void setEnabledProtocols(String[]); |
| 18042 | method public void setHandshakeApplicationProtocolSelector(java.util.function.BiFunction<javax.net.ssl.SSLSocket,java.util.List<java.lang.String>,java.lang.String>); |
| 18043 | method public abstract void setNeedClientAuth(boolean); |
| 18044 | method public void setSSLParameters(javax.net.ssl.SSLParameters); |
| 18045 | method public abstract void setUseClientMode(boolean); |
| 18046 | method public abstract void setWantClientAuth(boolean); |
| 18047 | method public abstract void startHandshake() throws java.io.IOException; |
| 18048 | } |
| 18049 | |
| 18050 | public abstract class SSLSocketFactory extends javax.net.SocketFactory { |
| 18051 | ctor public SSLSocketFactory(); |
| 18052 | method public abstract java.net.Socket createSocket(java.net.Socket, String, int, boolean) throws java.io.IOException; |
| 18053 | method public static javax.net.SocketFactory getDefault(); |
| 18054 | method public abstract String[] getDefaultCipherSuites(); |
| 18055 | method public abstract String[] getSupportedCipherSuites(); |
| 18056 | } |
| 18057 | |
| 18058 | public final class StandardConstants { |
| 18059 | field public static final int SNI_HOST_NAME = 0; // 0x0 |
| 18060 | } |
| 18061 | |
| 18062 | public interface TrustManager { |
| 18063 | } |
| 18064 | |
| 18065 | public class TrustManagerFactory { |
| 18066 | ctor protected TrustManagerFactory(javax.net.ssl.TrustManagerFactorySpi, java.security.Provider, String); |
| 18067 | method public final String getAlgorithm(); |
| 18068 | method public static final String getDefaultAlgorithm(); |
| 18069 | method public static final javax.net.ssl.TrustManagerFactory getInstance(String) throws java.security.NoSuchAlgorithmException; |
| 18070 | method public static final javax.net.ssl.TrustManagerFactory getInstance(String, String) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; |
| 18071 | method public static final javax.net.ssl.TrustManagerFactory getInstance(String, java.security.Provider) throws java.security.NoSuchAlgorithmException; |
| 18072 | method public final java.security.Provider getProvider(); |
| 18073 | method public final javax.net.ssl.TrustManager[] getTrustManagers(); |
| 18074 | method public final void init(java.security.KeyStore) throws java.security.KeyStoreException; |
| 18075 | method public final void init(javax.net.ssl.ManagerFactoryParameters) throws java.security.InvalidAlgorithmParameterException; |
| 18076 | } |
| 18077 | |
| 18078 | public abstract class TrustManagerFactorySpi { |
| 18079 | ctor public TrustManagerFactorySpi(); |
| 18080 | method protected abstract javax.net.ssl.TrustManager[] engineGetTrustManagers(); |
| 18081 | method protected abstract void engineInit(java.security.KeyStore) throws java.security.KeyStoreException; |
| 18082 | method protected abstract void engineInit(javax.net.ssl.ManagerFactoryParameters) throws java.security.InvalidAlgorithmParameterException; |
| 18083 | } |
| 18084 | |
| 18085 | public abstract class X509ExtendedKeyManager implements javax.net.ssl.X509KeyManager { |
| 18086 | ctor protected X509ExtendedKeyManager(); |
| 18087 | method public String chooseEngineClientAlias(String[], java.security.Principal[], javax.net.ssl.SSLEngine); |
| 18088 | method public String chooseEngineServerAlias(String, java.security.Principal[], javax.net.ssl.SSLEngine); |
| 18089 | } |
| 18090 | |
| 18091 | public abstract class X509ExtendedTrustManager implements javax.net.ssl.X509TrustManager { |
| 18092 | ctor public X509ExtendedTrustManager(); |
| 18093 | method public abstract void checkClientTrusted(java.security.cert.X509Certificate[], String, java.net.Socket) throws java.security.cert.CertificateException; |
| 18094 | method public abstract void checkClientTrusted(java.security.cert.X509Certificate[], String, javax.net.ssl.SSLEngine) throws java.security.cert.CertificateException; |
| 18095 | method public abstract void checkServerTrusted(java.security.cert.X509Certificate[], String, java.net.Socket) throws java.security.cert.CertificateException; |
| 18096 | method public abstract void checkServerTrusted(java.security.cert.X509Certificate[], String, javax.net.ssl.SSLEngine) throws java.security.cert.CertificateException; |
| 18097 | } |
| 18098 | |
| 18099 | public interface X509KeyManager extends javax.net.ssl.KeyManager { |
| 18100 | method public String chooseClientAlias(String[], java.security.Principal[], java.net.Socket); |
| 18101 | method public String chooseServerAlias(String, java.security.Principal[], java.net.Socket); |
| 18102 | method public java.security.cert.X509Certificate[] getCertificateChain(String); |
| 18103 | method public String[] getClientAliases(String, java.security.Principal[]); |
| 18104 | method public java.security.PrivateKey getPrivateKey(String); |
| 18105 | method public String[] getServerAliases(String, java.security.Principal[]); |
| 18106 | } |
| 18107 | |
| 18108 | public interface X509TrustManager extends javax.net.ssl.TrustManager { |
| 18109 | method public void checkClientTrusted(java.security.cert.X509Certificate[], String) throws java.security.cert.CertificateException; |
| 18110 | method public void checkServerTrusted(java.security.cert.X509Certificate[], String) throws java.security.cert.CertificateException; |
| 18111 | method public java.security.cert.X509Certificate[] getAcceptedIssuers(); |
| 18112 | } |
| 18113 | |
| 18114 | } |
| 18115 | |
| 18116 | package javax.security.auth { |
| 18117 | |
| 18118 | public final class AuthPermission extends java.security.BasicPermission { |
| 18119 | ctor public AuthPermission(String); |
| 18120 | ctor public AuthPermission(String, String); |
| 18121 | } |
| 18122 | |
| 18123 | public class DestroyFailedException extends java.lang.Exception { |
| 18124 | ctor public DestroyFailedException(); |
| 18125 | ctor public DestroyFailedException(String); |
| 18126 | } |
| 18127 | |
| 18128 | public interface Destroyable { |
| 18129 | method public default void destroy() throws javax.security.auth.DestroyFailedException; |
| 18130 | method public default boolean isDestroyed(); |
| 18131 | } |
| 18132 | |
| 18133 | public final class PrivateCredentialPermission extends java.security.Permission { |
| 18134 | ctor public PrivateCredentialPermission(String, String); |
| 18135 | method public String getActions(); |
| 18136 | method public String getCredentialClass(); |
| 18137 | method public String[][] getPrincipals(); |
| 18138 | method public boolean implies(java.security.Permission); |
| 18139 | } |
| 18140 | |
| 18141 | public final class Subject implements java.io.Serializable { |
| 18142 | ctor public Subject(); |
| 18143 | ctor public Subject(boolean, java.util.Set<? extends java.security.Principal>, java.util.Set<?>, java.util.Set<?>); |
| 18144 | method public static <T> T doAs(javax.security.auth.Subject, java.security.PrivilegedAction<T>); |
| 18145 | method public static <T> T doAs(javax.security.auth.Subject, java.security.PrivilegedExceptionAction<T>) throws java.security.PrivilegedActionException; |
| 18146 | method public static <T> T doAsPrivileged(javax.security.auth.Subject, java.security.PrivilegedAction<T>, java.security.AccessControlContext); |
| 18147 | method public static <T> T doAsPrivileged(javax.security.auth.Subject, java.security.PrivilegedExceptionAction<T>, java.security.AccessControlContext) throws java.security.PrivilegedActionException; |
| 18148 | method public java.util.Set<java.security.Principal> getPrincipals(); |
| 18149 | method public <T extends java.security.Principal> java.util.Set<T> getPrincipals(Class<T>); |
| 18150 | method public java.util.Set<java.lang.Object> getPrivateCredentials(); |
| 18151 | method public <T> java.util.Set<T> getPrivateCredentials(Class<T>); |
| 18152 | method public java.util.Set<java.lang.Object> getPublicCredentials(); |
| 18153 | method public <T> java.util.Set<T> getPublicCredentials(Class<T>); |
| 18154 | method public static javax.security.auth.Subject getSubject(java.security.AccessControlContext); |
| 18155 | method public boolean isReadOnly(); |
| 18156 | method public void setReadOnly(); |
| 18157 | } |
| 18158 | |
| 18159 | public class SubjectDomainCombiner implements java.security.DomainCombiner { |
| 18160 | ctor public SubjectDomainCombiner(javax.security.auth.Subject); |
| 18161 | method public java.security.ProtectionDomain[] combine(java.security.ProtectionDomain[], java.security.ProtectionDomain[]); |
| 18162 | method public javax.security.auth.Subject getSubject(); |
| 18163 | } |
| 18164 | |
| 18165 | } |
| 18166 | |
| 18167 | package javax.security.auth.callback { |
| 18168 | |
| 18169 | public interface Callback { |
| 18170 | } |
| 18171 | |
| 18172 | public interface CallbackHandler { |
| 18173 | method public void handle(javax.security.auth.callback.Callback[]) throws java.io.IOException, javax.security.auth.callback.UnsupportedCallbackException; |
| 18174 | } |
| 18175 | |
| 18176 | public class PasswordCallback implements javax.security.auth.callback.Callback java.io.Serializable { |
| 18177 | ctor public PasswordCallback(String, boolean); |
| 18178 | method public void clearPassword(); |
| 18179 | method public char[] getPassword(); |
| 18180 | method public String getPrompt(); |
| 18181 | method public boolean isEchoOn(); |
| 18182 | method public void setPassword(char[]); |
| 18183 | } |
| 18184 | |
| 18185 | public class UnsupportedCallbackException extends java.lang.Exception { |
| 18186 | ctor public UnsupportedCallbackException(javax.security.auth.callback.Callback); |
| 18187 | ctor public UnsupportedCallbackException(javax.security.auth.callback.Callback, String); |
| 18188 | method public javax.security.auth.callback.Callback getCallback(); |
| 18189 | } |
| 18190 | |
| 18191 | } |
| 18192 | |
| 18193 | package javax.security.auth.login { |
| 18194 | |
| 18195 | public class LoginException extends java.security.GeneralSecurityException { |
| 18196 | ctor public LoginException(); |
| 18197 | ctor public LoginException(String); |
| 18198 | } |
| 18199 | |
| 18200 | } |
| 18201 | |
| 18202 | package javax.security.auth.x500 { |
| 18203 | |
| 18204 | public final class X500Principal implements java.security.Principal java.io.Serializable { |
| 18205 | ctor public X500Principal(String); |
| 18206 | ctor public X500Principal(String, java.util.Map<java.lang.String,java.lang.String>); |
| 18207 | ctor public X500Principal(byte[]); |
| 18208 | ctor public X500Principal(java.io.InputStream); |
| 18209 | method public byte[] getEncoded(); |
| 18210 | method public String getName(); |
| 18211 | method public String getName(String); |
| 18212 | method public String getName(String, java.util.Map<java.lang.String,java.lang.String>); |
| 18213 | field public static final String CANONICAL = "CANONICAL"; |
| 18214 | field public static final String RFC1779 = "RFC1779"; |
| 18215 | field public static final String RFC2253 = "RFC2253"; |
| 18216 | } |
| 18217 | |
| 18218 | } |
| 18219 | |
| 18220 | package javax.security.cert { |
| 18221 | |
| 18222 | public abstract class Certificate { |
| 18223 | ctor public Certificate(); |
| 18224 | method public abstract byte[] getEncoded() throws javax.security.cert.CertificateEncodingException; |
| 18225 | method public abstract java.security.PublicKey getPublicKey(); |
| 18226 | method public abstract String toString(); |
| 18227 | method public abstract void verify(java.security.PublicKey) throws javax.security.cert.CertificateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.SignatureException; |
| 18228 | method public abstract void verify(java.security.PublicKey, String) throws javax.security.cert.CertificateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.SignatureException; |
| 18229 | } |
| 18230 | |
| 18231 | public class CertificateEncodingException extends javax.security.cert.CertificateException { |
| 18232 | ctor public CertificateEncodingException(); |
| 18233 | ctor public CertificateEncodingException(String); |
| 18234 | } |
| 18235 | |
| 18236 | public class CertificateException extends java.lang.Exception { |
| 18237 | ctor public CertificateException(); |
| 18238 | ctor public CertificateException(String); |
| 18239 | } |
| 18240 | |
| 18241 | public class CertificateExpiredException extends javax.security.cert.CertificateException { |
| 18242 | ctor public CertificateExpiredException(); |
| 18243 | ctor public CertificateExpiredException(String); |
| 18244 | } |
| 18245 | |
| 18246 | public class CertificateNotYetValidException extends javax.security.cert.CertificateException { |
| 18247 | ctor public CertificateNotYetValidException(); |
| 18248 | ctor public CertificateNotYetValidException(String); |
| 18249 | } |
| 18250 | |
| 18251 | public class CertificateParsingException extends javax.security.cert.CertificateException { |
| 18252 | ctor public CertificateParsingException(); |
| 18253 | ctor public CertificateParsingException(String); |
| 18254 | } |
| 18255 | |
| 18256 | public abstract class X509Certificate extends javax.security.cert.Certificate { |
| 18257 | ctor public X509Certificate(); |
| 18258 | method public abstract void checkValidity() throws javax.security.cert.CertificateExpiredException, javax.security.cert.CertificateNotYetValidException; |
| 18259 | method public abstract void checkValidity(java.util.Date) throws javax.security.cert.CertificateExpiredException, javax.security.cert.CertificateNotYetValidException; |
| 18260 | method public static final javax.security.cert.X509Certificate getInstance(java.io.InputStream) throws javax.security.cert.CertificateException; |
| 18261 | method public static final javax.security.cert.X509Certificate getInstance(byte[]) throws javax.security.cert.CertificateException; |
| 18262 | method public abstract java.security.Principal getIssuerDN(); |
| 18263 | method public abstract java.util.Date getNotAfter(); |
| 18264 | method public abstract java.util.Date getNotBefore(); |
| 18265 | method public abstract java.math.BigInteger getSerialNumber(); |
| 18266 | method public abstract String getSigAlgName(); |
| 18267 | method public abstract String getSigAlgOID(); |
| 18268 | method public abstract byte[] getSigAlgParams(); |
| 18269 | method public abstract java.security.Principal getSubjectDN(); |
| 18270 | method public abstract int getVersion(); |
| 18271 | } |
| 18272 | |
| 18273 | } |
| 18274 | |
| 18275 | package javax.sql { |
| 18276 | |
| 18277 | public interface CommonDataSource { |
| 18278 | method public java.io.PrintWriter getLogWriter() throws java.sql.SQLException; |
| 18279 | method public int getLoginTimeout() throws java.sql.SQLException; |
| 18280 | method public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException; |
| 18281 | method public void setLogWriter(java.io.PrintWriter) throws java.sql.SQLException; |
| 18282 | method public void setLoginTimeout(int) throws java.sql.SQLException; |
| 18283 | } |
| 18284 | |
| 18285 | public class ConnectionEvent extends java.util.EventObject { |
| 18286 | ctor public ConnectionEvent(javax.sql.PooledConnection); |
| 18287 | ctor public ConnectionEvent(javax.sql.PooledConnection, java.sql.SQLException); |
| 18288 | method public java.sql.SQLException getSQLException(); |
| 18289 | } |
| 18290 | |
| 18291 | public interface ConnectionEventListener extends java.util.EventListener { |
| 18292 | method public void connectionClosed(javax.sql.ConnectionEvent); |
| 18293 | method public void connectionErrorOccurred(javax.sql.ConnectionEvent); |
| 18294 | } |
| 18295 | |
| 18296 | public interface ConnectionPoolDataSource extends javax.sql.CommonDataSource { |
| 18297 | method public javax.sql.PooledConnection getPooledConnection() throws java.sql.SQLException; |
| 18298 | method public javax.sql.PooledConnection getPooledConnection(String, String) throws java.sql.SQLException; |
| 18299 | } |
| 18300 | |
| 18301 | public interface DataSource extends javax.sql.CommonDataSource java.sql.Wrapper { |
| 18302 | method public java.sql.Connection getConnection() throws java.sql.SQLException; |
| 18303 | method public java.sql.Connection getConnection(String, String) throws java.sql.SQLException; |
| 18304 | } |
| 18305 | |
| 18306 | public interface PooledConnection { |
| 18307 | method public void addConnectionEventListener(javax.sql.ConnectionEventListener); |
| 18308 | method public void addStatementEventListener(javax.sql.StatementEventListener); |
| 18309 | method public void close() throws java.sql.SQLException; |
| 18310 | method public java.sql.Connection getConnection() throws java.sql.SQLException; |
| 18311 | method public void removeConnectionEventListener(javax.sql.ConnectionEventListener); |
| 18312 | method public void removeStatementEventListener(javax.sql.StatementEventListener); |
| 18313 | } |
| 18314 | |
| 18315 | public interface RowSet extends java.sql.ResultSet { |
| 18316 | method public void addRowSetListener(javax.sql.RowSetListener); |
| 18317 | method public void clearParameters() throws java.sql.SQLException; |
| 18318 | method public void execute() throws java.sql.SQLException; |
| 18319 | method public String getCommand(); |
| 18320 | method public String getDataSourceName(); |
| 18321 | method public boolean getEscapeProcessing() throws java.sql.SQLException; |
| 18322 | method public int getMaxFieldSize() throws java.sql.SQLException; |
| 18323 | method public int getMaxRows() throws java.sql.SQLException; |
| 18324 | method public String getPassword(); |
| 18325 | method public int getQueryTimeout() throws java.sql.SQLException; |
| 18326 | method public int getTransactionIsolation(); |
| 18327 | method public java.util.Map<java.lang.String,java.lang.Class<?>> getTypeMap() throws java.sql.SQLException; |
| 18328 | method public String getUrl() throws java.sql.SQLException; |
| 18329 | method public String getUsername(); |
| 18330 | method public boolean isReadOnly(); |
| 18331 | method public void removeRowSetListener(javax.sql.RowSetListener); |
| 18332 | method public void setArray(int, java.sql.Array) throws java.sql.SQLException; |
| 18333 | method public void setAsciiStream(int, java.io.InputStream, int) throws java.sql.SQLException; |
| 18334 | method public void setAsciiStream(String, java.io.InputStream, int) throws java.sql.SQLException; |
| 18335 | method public void setAsciiStream(int, java.io.InputStream) throws java.sql.SQLException; |
| 18336 | method public void setAsciiStream(String, java.io.InputStream) throws java.sql.SQLException; |
| 18337 | method public void setBigDecimal(int, java.math.BigDecimal) throws java.sql.SQLException; |
| 18338 | method public void setBigDecimal(String, java.math.BigDecimal) throws java.sql.SQLException; |
| 18339 | method public void setBinaryStream(int, java.io.InputStream, int) throws java.sql.SQLException; |
| 18340 | method public void setBinaryStream(String, java.io.InputStream, int) throws java.sql.SQLException; |
| 18341 | method public void setBinaryStream(int, java.io.InputStream) throws java.sql.SQLException; |
| 18342 | method public void setBinaryStream(String, java.io.InputStream) throws java.sql.SQLException; |
| 18343 | method public void setBlob(int, java.sql.Blob) throws java.sql.SQLException; |
| 18344 | method public void setBlob(int, java.io.InputStream, long) throws java.sql.SQLException; |
| 18345 | method public void setBlob(int, java.io.InputStream) throws java.sql.SQLException; |
| 18346 | method public void setBlob(String, java.io.InputStream, long) throws java.sql.SQLException; |
| 18347 | method public void setBlob(String, java.sql.Blob) throws java.sql.SQLException; |
| 18348 | method public void setBlob(String, java.io.InputStream) throws java.sql.SQLException; |
| 18349 | method public void setBoolean(int, boolean) throws java.sql.SQLException; |
| 18350 | method public void setBoolean(String, boolean) throws java.sql.SQLException; |
| 18351 | method public void setByte(int, byte) throws java.sql.SQLException; |
| 18352 | method public void setByte(String, byte) throws java.sql.SQLException; |
| 18353 | method public void setBytes(int, byte[]) throws java.sql.SQLException; |
| 18354 | method public void setBytes(String, byte[]) throws java.sql.SQLException; |
| 18355 | method public void setCharacterStream(int, java.io.Reader, int) throws java.sql.SQLException; |
| 18356 | method public void setCharacterStream(String, java.io.Reader, int) throws java.sql.SQLException; |
| 18357 | method public void setCharacterStream(int, java.io.Reader) throws java.sql.SQLException; |
| 18358 | method public void setCharacterStream(String, java.io.Reader) throws java.sql.SQLException; |
| 18359 | method public void setClob(int, java.sql.Clob) throws java.sql.SQLException; |
| 18360 | method public void setClob(int, java.io.Reader, long) throws java.sql.SQLException; |
| 18361 | method public void setClob(int, java.io.Reader) throws java.sql.SQLException; |
| 18362 | method public void setClob(String, java.io.Reader, long) throws java.sql.SQLException; |
| 18363 | method public void setClob(String, java.sql.Clob) throws java.sql.SQLException; |
| 18364 | method public void setClob(String, java.io.Reader) throws java.sql.SQLException; |
| 18365 | method public void setCommand(String) throws java.sql.SQLException; |
| 18366 | method public void setConcurrency(int) throws java.sql.SQLException; |
| 18367 | method public void setDataSourceName(String) throws java.sql.SQLException; |
| 18368 | method public void setDate(int, java.sql.Date) throws java.sql.SQLException; |
| 18369 | method public void setDate(int, java.sql.Date, java.util.Calendar) throws java.sql.SQLException; |
| 18370 | method public void setDate(String, java.sql.Date) throws java.sql.SQLException; |
| 18371 | method public void setDate(String, java.sql.Date, java.util.Calendar) throws java.sql.SQLException; |
| 18372 | method public void setDouble(int, double) throws java.sql.SQLException; |
| 18373 | method public void setDouble(String, double) throws java.sql.SQLException; |
| 18374 | method public void setEscapeProcessing(boolean) throws java.sql.SQLException; |
| 18375 | method public void setFloat(int, float) throws java.sql.SQLException; |
| 18376 | method public void setFloat(String, float) throws java.sql.SQLException; |
| 18377 | method public void setInt(int, int) throws java.sql.SQLException; |
| 18378 | method public void setInt(String, int) throws java.sql.SQLException; |
| 18379 | method public void setLong(int, long) throws java.sql.SQLException; |
| 18380 | method public void setLong(String, long) throws java.sql.SQLException; |
| 18381 | method public void setMaxFieldSize(int) throws java.sql.SQLException; |
| 18382 | method public void setMaxRows(int) throws java.sql.SQLException; |
| 18383 | method public void setNCharacterStream(int, java.io.Reader) throws java.sql.SQLException; |
| 18384 | method public void setNCharacterStream(int, java.io.Reader, long) throws java.sql.SQLException; |
| 18385 | method public void setNCharacterStream(String, java.io.Reader, long) throws java.sql.SQLException; |
| 18386 | method public void setNCharacterStream(String, java.io.Reader) throws java.sql.SQLException; |
| 18387 | method public void setNClob(String, java.sql.NClob) throws java.sql.SQLException; |
| 18388 | method public void setNClob(String, java.io.Reader, long) throws java.sql.SQLException; |
| 18389 | method public void setNClob(String, java.io.Reader) throws java.sql.SQLException; |
| 18390 | method public void setNClob(int, java.io.Reader, long) throws java.sql.SQLException; |
| 18391 | method public void setNClob(int, java.sql.NClob) throws java.sql.SQLException; |
| 18392 | method public void setNClob(int, java.io.Reader) throws java.sql.SQLException; |
| 18393 | method public void setNString(int, String) throws java.sql.SQLException; |
| 18394 | method public void setNString(String, String) throws java.sql.SQLException; |
| 18395 | method public void setNull(int, int) throws java.sql.SQLException; |
| 18396 | method public void setNull(String, int) throws java.sql.SQLException; |
| 18397 | method public void setNull(int, int, String) throws java.sql.SQLException; |
| 18398 | method public void setNull(String, int, String) throws java.sql.SQLException; |
| 18399 | method public void setObject(int, Object, int, int) throws java.sql.SQLException; |
| 18400 | method public void setObject(String, Object, int, int) throws java.sql.SQLException; |
| 18401 | method public void setObject(int, Object, int) throws java.sql.SQLException; |
| 18402 | method public void setObject(String, Object, int) throws java.sql.SQLException; |
| 18403 | method public void setObject(String, Object) throws java.sql.SQLException; |
| 18404 | method public void setObject(int, Object) throws java.sql.SQLException; |
| 18405 | method public void setPassword(String) throws java.sql.SQLException; |
| 18406 | method public void setQueryTimeout(int) throws java.sql.SQLException; |
| 18407 | method public void setReadOnly(boolean) throws java.sql.SQLException; |
| 18408 | method public void setRef(int, java.sql.Ref) throws java.sql.SQLException; |
| 18409 | method public void setRowId(int, java.sql.RowId) throws java.sql.SQLException; |
| 18410 | method public void setRowId(String, java.sql.RowId) throws java.sql.SQLException; |
| 18411 | method public void setSQLXML(int, java.sql.SQLXML) throws java.sql.SQLException; |
| 18412 | method public void setSQLXML(String, java.sql.SQLXML) throws java.sql.SQLException; |
| 18413 | method public void setShort(int, short) throws java.sql.SQLException; |
| 18414 | method public void setShort(String, short) throws java.sql.SQLException; |
| 18415 | method public void setString(int, String) throws java.sql.SQLException; |
| 18416 | method public void setString(String, String) throws java.sql.SQLException; |
| 18417 | method public void setTime(int, java.sql.Time) throws java.sql.SQLException; |
| 18418 | method public void setTime(int, java.sql.Time, java.util.Calendar) throws java.sql.SQLException; |
| 18419 | method public void setTime(String, java.sql.Time) throws java.sql.SQLException; |
| 18420 | method public void setTime(String, java.sql.Time, java.util.Calendar) throws java.sql.SQLException; |
| 18421 | method public void setTimestamp(int, java.sql.Timestamp) throws java.sql.SQLException; |
| 18422 | method public void setTimestamp(String, java.sql.Timestamp) throws java.sql.SQLException; |
| 18423 | method public void setTimestamp(int, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException; |
| 18424 | method public void setTimestamp(String, java.sql.Timestamp, java.util.Calendar) throws java.sql.SQLException; |
| 18425 | method public void setTransactionIsolation(int) throws java.sql.SQLException; |
| 18426 | method public void setType(int) throws java.sql.SQLException; |
| 18427 | method public void setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>>) throws java.sql.SQLException; |
| 18428 | method public void setURL(int, java.net.URL) throws java.sql.SQLException; |
| 18429 | method public void setUrl(String) throws java.sql.SQLException; |
| 18430 | method public void setUsername(String) throws java.sql.SQLException; |
| 18431 | } |
| 18432 | |
| 18433 | public class RowSetEvent extends java.util.EventObject { |
| 18434 | ctor public RowSetEvent(javax.sql.RowSet); |
| 18435 | } |
| 18436 | |
| 18437 | public interface RowSetInternal { |
| 18438 | method public java.sql.Connection getConnection() throws java.sql.SQLException; |
| 18439 | method public java.sql.ResultSet getOriginal() throws java.sql.SQLException; |
| 18440 | method public java.sql.ResultSet getOriginalRow() throws java.sql.SQLException; |
| 18441 | method public Object[] getParams() throws java.sql.SQLException; |
| 18442 | method public void setMetaData(javax.sql.RowSetMetaData) throws java.sql.SQLException; |
| 18443 | } |
| 18444 | |
| 18445 | public interface RowSetListener extends java.util.EventListener { |
| 18446 | method public void cursorMoved(javax.sql.RowSetEvent); |
| 18447 | method public void rowChanged(javax.sql.RowSetEvent); |
| 18448 | method public void rowSetChanged(javax.sql.RowSetEvent); |
| 18449 | } |
| 18450 | |
| 18451 | public interface RowSetMetaData extends java.sql.ResultSetMetaData { |
| 18452 | method public void setAutoIncrement(int, boolean) throws java.sql.SQLException; |
| 18453 | method public void setCaseSensitive(int, boolean) throws java.sql.SQLException; |
| 18454 | method public void setCatalogName(int, String) throws java.sql.SQLException; |
| 18455 | method public void setColumnCount(int) throws java.sql.SQLException; |
| 18456 | method public void setColumnDisplaySize(int, int) throws java.sql.SQLException; |
| 18457 | method public void setColumnLabel(int, String) throws java.sql.SQLException; |
| 18458 | method public void setColumnName(int, String) throws java.sql.SQLException; |
| 18459 | method public void setColumnType(int, int) throws java.sql.SQLException; |
| 18460 | method public void setColumnTypeName(int, String) throws java.sql.SQLException; |
| 18461 | method public void setCurrency(int, boolean) throws java.sql.SQLException; |
| 18462 | method public void setNullable(int, int) throws java.sql.SQLException; |
| 18463 | method public void setPrecision(int, int) throws java.sql.SQLException; |
| 18464 | method public void setScale(int, int) throws java.sql.SQLException; |
| 18465 | method public void setSchemaName(int, String) throws java.sql.SQLException; |
| 18466 | method public void setSearchable(int, boolean) throws java.sql.SQLException; |
| 18467 | method public void setSigned(int, boolean) throws java.sql.SQLException; |
| 18468 | method public void setTableName(int, String) throws java.sql.SQLException; |
| 18469 | } |
| 18470 | |
| 18471 | public interface RowSetReader { |
| 18472 | method public void readData(javax.sql.RowSetInternal) throws java.sql.SQLException; |
| 18473 | } |
| 18474 | |
| 18475 | public interface RowSetWriter { |
| 18476 | method public boolean writeData(javax.sql.RowSetInternal) throws java.sql.SQLException; |
| 18477 | } |
| 18478 | |
| 18479 | public class StatementEvent extends java.util.EventObject { |
| 18480 | ctor public StatementEvent(javax.sql.PooledConnection, java.sql.PreparedStatement); |
| 18481 | ctor public StatementEvent(javax.sql.PooledConnection, java.sql.PreparedStatement, java.sql.SQLException); |
| 18482 | method public java.sql.SQLException getSQLException(); |
| 18483 | method public java.sql.PreparedStatement getStatement(); |
| 18484 | } |
| 18485 | |
| 18486 | public interface StatementEventListener extends java.util.EventListener { |
| 18487 | method public void statementClosed(javax.sql.StatementEvent); |
| 18488 | method public void statementErrorOccurred(javax.sql.StatementEvent); |
| 18489 | } |
| 18490 | |
| 18491 | } |
| 18492 | |
| 18493 | package javax.xml { |
| 18494 | |
| 18495 | public final class XMLConstants { |
| 18496 | field public static final String DEFAULT_NS_PREFIX = ""; |
| 18497 | field public static final String FEATURE_SECURE_PROCESSING = "http://javax.xml.XMLConstants/feature/secure-processing"; |
| 18498 | field public static final String NULL_NS_URI = ""; |
| 18499 | field public static final String RELAXNG_NS_URI = "http://relaxng.org/ns/structure/1.0"; |
| 18500 | field public static final String W3C_XML_SCHEMA_INSTANCE_NS_URI = "http://www.w3.org/2001/XMLSchema-instance"; |
| 18501 | field public static final String W3C_XML_SCHEMA_NS_URI = "http://www.w3.org/2001/XMLSchema"; |
| 18502 | field public static final String W3C_XPATH_DATATYPE_NS_URI = "http://www.w3.org/2003/11/xpath-datatypes"; |
| 18503 | field public static final String XMLNS_ATTRIBUTE = "xmlns"; |
| 18504 | field public static final String XMLNS_ATTRIBUTE_NS_URI = "http://www.w3.org/2000/xmlns/"; |
| 18505 | field public static final String XML_DTD_NS_URI = "http://www.w3.org/TR/REC-xml"; |
| 18506 | field public static final String XML_NS_PREFIX = "xml"; |
| 18507 | field public static final String XML_NS_URI = "http://www.w3.org/XML/1998/namespace"; |
| 18508 | } |
| 18509 | |
| 18510 | } |
| 18511 | |
| 18512 | package javax.xml.datatype { |
| 18513 | |
| 18514 | public class DatatypeConfigurationException extends java.lang.Exception { |
| 18515 | ctor public DatatypeConfigurationException(); |
| 18516 | ctor public DatatypeConfigurationException(String); |
| 18517 | ctor public DatatypeConfigurationException(String, Throwable); |
| 18518 | ctor public DatatypeConfigurationException(Throwable); |
| 18519 | } |
| 18520 | |
| 18521 | public final class DatatypeConstants { |
| 18522 | field public static final int APRIL = 4; // 0x4 |
| 18523 | field public static final int AUGUST = 8; // 0x8 |
| 18524 | field public static final javax.xml.namespace.QName DATE; |
| 18525 | field public static final javax.xml.namespace.QName DATETIME; |
| 18526 | field public static final javax.xml.datatype.DatatypeConstants.Field DAYS; |
| 18527 | field public static final int DECEMBER = 12; // 0xc |
| 18528 | field public static final javax.xml.namespace.QName DURATION; |
| 18529 | field public static final javax.xml.namespace.QName DURATION_DAYTIME; |
| 18530 | field public static final javax.xml.namespace.QName DURATION_YEARMONTH; |
| 18531 | field public static final int EQUAL = 0; // 0x0 |
| 18532 | field public static final int FEBRUARY = 2; // 0x2 |
| 18533 | field public static final int FIELD_UNDEFINED = -2147483648; // 0x80000000 |
| 18534 | field public static final javax.xml.namespace.QName GDAY; |
| 18535 | field public static final javax.xml.namespace.QName GMONTH; |
| 18536 | field public static final javax.xml.namespace.QName GMONTHDAY; |
| 18537 | field public static final int GREATER = 1; // 0x1 |
| 18538 | field public static final javax.xml.namespace.QName GYEAR; |
| 18539 | field public static final javax.xml.namespace.QName GYEARMONTH; |
| 18540 | field public static final javax.xml.datatype.DatatypeConstants.Field HOURS; |
| 18541 | field public static final int INDETERMINATE = 2; // 0x2 |
| 18542 | field public static final int JANUARY = 1; // 0x1 |
| 18543 | field public static final int JULY = 7; // 0x7 |
| 18544 | field public static final int JUNE = 6; // 0x6 |
| 18545 | field public static final int LESSER = -1; // 0xffffffff |
| 18546 | field public static final int MARCH = 3; // 0x3 |
| 18547 | field public static final int MAX_TIMEZONE_OFFSET = -840; // 0xfffffcb8 |
| 18548 | field public static final int MAY = 5; // 0x5 |
| 18549 | field public static final javax.xml.datatype.DatatypeConstants.Field MINUTES; |
| 18550 | field public static final int MIN_TIMEZONE_OFFSET = 840; // 0x348 |
| 18551 | field public static final javax.xml.datatype.DatatypeConstants.Field MONTHS; |
| 18552 | field public static final int NOVEMBER = 11; // 0xb |
| 18553 | field public static final int OCTOBER = 10; // 0xa |
| 18554 | field public static final javax.xml.datatype.DatatypeConstants.Field SECONDS; |
| 18555 | field public static final int SEPTEMBER = 9; // 0x9 |
| 18556 | field public static final javax.xml.namespace.QName TIME; |
| 18557 | field public static final javax.xml.datatype.DatatypeConstants.Field YEARS; |
| 18558 | } |
| 18559 | |
| 18560 | public static final class DatatypeConstants.Field { |
| 18561 | method public int getId(); |
| 18562 | } |
| 18563 | |
| 18564 | public abstract class DatatypeFactory { |
| 18565 | ctor protected DatatypeFactory(); |
| 18566 | method public abstract javax.xml.datatype.Duration newDuration(String); |
| 18567 | method public abstract javax.xml.datatype.Duration newDuration(long); |
| 18568 | method public abstract javax.xml.datatype.Duration newDuration(boolean, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigDecimal); |
| 18569 | method public javax.xml.datatype.Duration newDuration(boolean, int, int, int, int, int, int); |
| 18570 | method public javax.xml.datatype.Duration newDurationDayTime(String); |
| 18571 | method public javax.xml.datatype.Duration newDurationDayTime(long); |
| 18572 | method public javax.xml.datatype.Duration newDurationDayTime(boolean, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger); |
| 18573 | method public javax.xml.datatype.Duration newDurationDayTime(boolean, int, int, int, int); |
| 18574 | method public javax.xml.datatype.Duration newDurationYearMonth(String); |
| 18575 | method public javax.xml.datatype.Duration newDurationYearMonth(long); |
| 18576 | method public javax.xml.datatype.Duration newDurationYearMonth(boolean, java.math.BigInteger, java.math.BigInteger); |
| 18577 | method public javax.xml.datatype.Duration newDurationYearMonth(boolean, int, int); |
| 18578 | method public static javax.xml.datatype.DatatypeFactory newInstance() throws javax.xml.datatype.DatatypeConfigurationException; |
| 18579 | method public static javax.xml.datatype.DatatypeFactory newInstance(String, ClassLoader) throws javax.xml.datatype.DatatypeConfigurationException; |
| 18580 | method public abstract javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(); |
| 18581 | method public abstract javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(String); |
| 18582 | method public abstract javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(java.util.GregorianCalendar); |
| 18583 | method public abstract javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(java.math.BigInteger, int, int, int, int, int, java.math.BigDecimal, int); |
| 18584 | method public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(int, int, int, int, int, int, int, int); |
| 18585 | method public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendarDate(int, int, int, int); |
| 18586 | method public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendarTime(int, int, int, int); |
| 18587 | method public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendarTime(int, int, int, java.math.BigDecimal, int); |
| 18588 | method public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendarTime(int, int, int, int, int); |
| 18589 | field public static final String DATATYPEFACTORY_IMPLEMENTATION_CLASS; |
| 18590 | field public static final String DATATYPEFACTORY_PROPERTY = "javax.xml.datatype.DatatypeFactory"; |
| 18591 | } |
| 18592 | |
| 18593 | public abstract class Duration { |
| 18594 | ctor public Duration(); |
| 18595 | method public abstract javax.xml.datatype.Duration add(javax.xml.datatype.Duration); |
| 18596 | method public abstract void addTo(java.util.Calendar); |
| 18597 | method public void addTo(java.util.Date); |
| 18598 | method public abstract int compare(javax.xml.datatype.Duration); |
| 18599 | method public int getDays(); |
| 18600 | method public abstract Number getField(javax.xml.datatype.DatatypeConstants.Field); |
| 18601 | method public int getHours(); |
| 18602 | method public int getMinutes(); |
| 18603 | method public int getMonths(); |
| 18604 | method public int getSeconds(); |
| 18605 | method public abstract int getSign(); |
| 18606 | method public long getTimeInMillis(java.util.Calendar); |
| 18607 | method public long getTimeInMillis(java.util.Date); |
| 18608 | method public javax.xml.namespace.QName getXMLSchemaType(); |
| 18609 | method public int getYears(); |
| 18610 | method public abstract int hashCode(); |
| 18611 | method public boolean isLongerThan(javax.xml.datatype.Duration); |
| 18612 | method public abstract boolean isSet(javax.xml.datatype.DatatypeConstants.Field); |
| 18613 | method public boolean isShorterThan(javax.xml.datatype.Duration); |
| 18614 | method public javax.xml.datatype.Duration multiply(int); |
| 18615 | method public abstract javax.xml.datatype.Duration multiply(java.math.BigDecimal); |
| 18616 | method public abstract javax.xml.datatype.Duration negate(); |
| 18617 | method public abstract javax.xml.datatype.Duration normalizeWith(java.util.Calendar); |
| 18618 | method public javax.xml.datatype.Duration subtract(javax.xml.datatype.Duration); |
| 18619 | } |
| 18620 | |
| 18621 | public abstract class XMLGregorianCalendar implements java.lang.Cloneable { |
| 18622 | ctor public XMLGregorianCalendar(); |
| 18623 | method public abstract void add(javax.xml.datatype.Duration); |
| 18624 | method public abstract void clear(); |
| 18625 | method public abstract Object clone(); |
| 18626 | method public abstract int compare(javax.xml.datatype.XMLGregorianCalendar); |
| 18627 | method public abstract int getDay(); |
| 18628 | method public abstract java.math.BigInteger getEon(); |
| 18629 | method public abstract java.math.BigInteger getEonAndYear(); |
| 18630 | method public abstract java.math.BigDecimal getFractionalSecond(); |
| 18631 | method public abstract int getHour(); |
| 18632 | method public int getMillisecond(); |
| 18633 | method public abstract int getMinute(); |
| 18634 | method public abstract int getMonth(); |
| 18635 | method public abstract int getSecond(); |
| 18636 | method public abstract java.util.TimeZone getTimeZone(int); |
| 18637 | method public abstract int getTimezone(); |
| 18638 | method public abstract javax.xml.namespace.QName getXMLSchemaType(); |
| 18639 | method public abstract int getYear(); |
| 18640 | method public abstract boolean isValid(); |
| 18641 | method public abstract javax.xml.datatype.XMLGregorianCalendar normalize(); |
| 18642 | method public abstract void reset(); |
| 18643 | method public abstract void setDay(int); |
| 18644 | method public abstract void setFractionalSecond(java.math.BigDecimal); |
| 18645 | method public abstract void setHour(int); |
| 18646 | method public abstract void setMillisecond(int); |
| 18647 | method public abstract void setMinute(int); |
| 18648 | method public abstract void setMonth(int); |
| 18649 | method public abstract void setSecond(int); |
| 18650 | method public void setTime(int, int, int); |
| 18651 | method public void setTime(int, int, int, java.math.BigDecimal); |
| 18652 | method public void setTime(int, int, int, int); |
| 18653 | method public abstract void setTimezone(int); |
| 18654 | method public abstract void setYear(java.math.BigInteger); |
| 18655 | method public abstract void setYear(int); |
| 18656 | method public abstract java.util.GregorianCalendar toGregorianCalendar(); |
| 18657 | method public abstract java.util.GregorianCalendar toGregorianCalendar(java.util.TimeZone, java.util.Locale, javax.xml.datatype.XMLGregorianCalendar); |
| 18658 | method public abstract String toXMLFormat(); |
| 18659 | } |
| 18660 | |
| 18661 | } |
| 18662 | |
| 18663 | package javax.xml.namespace { |
| 18664 | |
| 18665 | public interface NamespaceContext { |
| 18666 | method public String getNamespaceURI(String); |
| 18667 | method public String getPrefix(String); |
| 18668 | method public java.util.Iterator getPrefixes(String); |
| 18669 | } |
| 18670 | |
| 18671 | public class QName implements java.io.Serializable { |
| 18672 | ctor public QName(String, String); |
| 18673 | ctor public QName(String, String, String); |
| 18674 | ctor public QName(String); |
| 18675 | method public final boolean equals(Object); |
| 18676 | method public String getLocalPart(); |
| 18677 | method public String getNamespaceURI(); |
| 18678 | method public String getPrefix(); |
| 18679 | method public final int hashCode(); |
| 18680 | method public static javax.xml.namespace.QName valueOf(String); |
| 18681 | } |
| 18682 | |
| 18683 | } |
| 18684 | |
| 18685 | package javax.xml.parsers { |
| 18686 | |
| 18687 | public abstract class DocumentBuilder { |
| 18688 | ctor protected DocumentBuilder(); |
| 18689 | method public abstract org.w3c.dom.DOMImplementation getDOMImplementation(); |
| 18690 | method public javax.xml.validation.Schema getSchema(); |
| 18691 | method public abstract boolean isNamespaceAware(); |
| 18692 | method public abstract boolean isValidating(); |
| 18693 | method public boolean isXIncludeAware(); |
| 18694 | method public abstract org.w3c.dom.Document newDocument(); |
| 18695 | method public org.w3c.dom.Document parse(java.io.InputStream) throws java.io.IOException, org.xml.sax.SAXException; |
| 18696 | method public org.w3c.dom.Document parse(java.io.InputStream, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 18697 | method public org.w3c.dom.Document parse(String) throws java.io.IOException, org.xml.sax.SAXException; |
| 18698 | method public org.w3c.dom.Document parse(java.io.File) throws java.io.IOException, org.xml.sax.SAXException; |
| 18699 | method public abstract org.w3c.dom.Document parse(org.xml.sax.InputSource) throws java.io.IOException, org.xml.sax.SAXException; |
| 18700 | method public void reset(); |
| 18701 | method public abstract void setEntityResolver(org.xml.sax.EntityResolver); |
| 18702 | method public abstract void setErrorHandler(org.xml.sax.ErrorHandler); |
| 18703 | } |
| 18704 | |
| 18705 | public abstract class DocumentBuilderFactory { |
| 18706 | ctor protected DocumentBuilderFactory(); |
| 18707 | method public abstract Object getAttribute(String) throws java.lang.IllegalArgumentException; |
| 18708 | method public abstract boolean getFeature(String) throws javax.xml.parsers.ParserConfigurationException; |
| 18709 | method public javax.xml.validation.Schema getSchema(); |
| 18710 | method public boolean isCoalescing(); |
| 18711 | method public boolean isExpandEntityReferences(); |
| 18712 | method public boolean isIgnoringComments(); |
| 18713 | method public boolean isIgnoringElementContentWhitespace(); |
| 18714 | method public boolean isNamespaceAware(); |
| 18715 | method public boolean isValidating(); |
| 18716 | method public boolean isXIncludeAware(); |
| 18717 | method public abstract javax.xml.parsers.DocumentBuilder newDocumentBuilder() throws javax.xml.parsers.ParserConfigurationException; |
| 18718 | method public static javax.xml.parsers.DocumentBuilderFactory newInstance(); |
| 18719 | method public static javax.xml.parsers.DocumentBuilderFactory newInstance(String, ClassLoader); |
| 18720 | method public abstract void setAttribute(String, Object) throws java.lang.IllegalArgumentException; |
| 18721 | method public void setCoalescing(boolean); |
| 18722 | method public void setExpandEntityReferences(boolean); |
| 18723 | method public abstract void setFeature(String, boolean) throws javax.xml.parsers.ParserConfigurationException; |
| 18724 | method public void setIgnoringComments(boolean); |
| 18725 | method public void setIgnoringElementContentWhitespace(boolean); |
| 18726 | method public void setNamespaceAware(boolean); |
| 18727 | method public void setSchema(javax.xml.validation.Schema); |
| 18728 | method public void setValidating(boolean); |
| 18729 | method public void setXIncludeAware(boolean); |
| 18730 | } |
| 18731 | |
| 18732 | public class FactoryConfigurationError extends java.lang.Error { |
| 18733 | ctor public FactoryConfigurationError(); |
| 18734 | ctor public FactoryConfigurationError(String); |
| 18735 | ctor public FactoryConfigurationError(Exception); |
| 18736 | ctor public FactoryConfigurationError(Exception, String); |
| 18737 | method public Exception getException(); |
| 18738 | } |
| 18739 | |
| 18740 | public class ParserConfigurationException extends java.lang.Exception { |
| 18741 | ctor public ParserConfigurationException(); |
| 18742 | ctor public ParserConfigurationException(String); |
| 18743 | } |
| 18744 | |
| 18745 | public abstract class SAXParser { |
| 18746 | ctor protected SAXParser(); |
| 18747 | method public abstract org.xml.sax.Parser getParser() throws org.xml.sax.SAXException; |
| 18748 | method public abstract Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 18749 | method public javax.xml.validation.Schema getSchema(); |
| 18750 | method public abstract org.xml.sax.XMLReader getXMLReader() throws org.xml.sax.SAXException; |
| 18751 | method public abstract boolean isNamespaceAware(); |
| 18752 | method public abstract boolean isValidating(); |
| 18753 | method public boolean isXIncludeAware(); |
| 18754 | method public void parse(java.io.InputStream, org.xml.sax.HandlerBase) throws java.io.IOException, org.xml.sax.SAXException; |
| 18755 | method public void parse(java.io.InputStream, org.xml.sax.HandlerBase, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 18756 | method public void parse(java.io.InputStream, org.xml.sax.helpers.DefaultHandler) throws java.io.IOException, org.xml.sax.SAXException; |
| 18757 | method public void parse(java.io.InputStream, org.xml.sax.helpers.DefaultHandler, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 18758 | method public void parse(String, org.xml.sax.HandlerBase) throws java.io.IOException, org.xml.sax.SAXException; |
| 18759 | method public void parse(String, org.xml.sax.helpers.DefaultHandler) throws java.io.IOException, org.xml.sax.SAXException; |
| 18760 | method public void parse(java.io.File, org.xml.sax.HandlerBase) throws java.io.IOException, org.xml.sax.SAXException; |
| 18761 | method public void parse(java.io.File, org.xml.sax.helpers.DefaultHandler) throws java.io.IOException, org.xml.sax.SAXException; |
| 18762 | method public void parse(org.xml.sax.InputSource, org.xml.sax.HandlerBase) throws java.io.IOException, org.xml.sax.SAXException; |
| 18763 | method public void parse(org.xml.sax.InputSource, org.xml.sax.helpers.DefaultHandler) throws java.io.IOException, org.xml.sax.SAXException; |
| 18764 | method public void reset(); |
| 18765 | method public abstract void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 18766 | } |
| 18767 | |
| 18768 | public abstract class SAXParserFactory { |
| 18769 | ctor protected SAXParserFactory(); |
| 18770 | method public abstract boolean getFeature(String) throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 18771 | method public javax.xml.validation.Schema getSchema(); |
| 18772 | method public boolean isNamespaceAware(); |
| 18773 | method public boolean isValidating(); |
| 18774 | method public boolean isXIncludeAware(); |
| 18775 | method public static javax.xml.parsers.SAXParserFactory newInstance(); |
| 18776 | method public static javax.xml.parsers.SAXParserFactory newInstance(String, ClassLoader); |
| 18777 | method public abstract javax.xml.parsers.SAXParser newSAXParser() throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException; |
| 18778 | method public abstract void setFeature(String, boolean) throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 18779 | method public void setNamespaceAware(boolean); |
| 18780 | method public void setSchema(javax.xml.validation.Schema); |
| 18781 | method public void setValidating(boolean); |
| 18782 | method public void setXIncludeAware(boolean); |
| 18783 | } |
| 18784 | |
| 18785 | } |
| 18786 | |
| 18787 | package javax.xml.transform { |
| 18788 | |
| 18789 | public interface ErrorListener { |
| 18790 | method public void error(javax.xml.transform.TransformerException) throws javax.xml.transform.TransformerException; |
| 18791 | method public void fatalError(javax.xml.transform.TransformerException) throws javax.xml.transform.TransformerException; |
| 18792 | method public void warning(javax.xml.transform.TransformerException) throws javax.xml.transform.TransformerException; |
| 18793 | } |
| 18794 | |
| 18795 | public class OutputKeys { |
| 18796 | field public static final String CDATA_SECTION_ELEMENTS = "cdata-section-elements"; |
| 18797 | field public static final String DOCTYPE_PUBLIC = "doctype-public"; |
| 18798 | field public static final String DOCTYPE_SYSTEM = "doctype-system"; |
| 18799 | field public static final String ENCODING = "encoding"; |
| 18800 | field public static final String INDENT = "indent"; |
| 18801 | field public static final String MEDIA_TYPE = "media-type"; |
| 18802 | field public static final String METHOD = "method"; |
| 18803 | field public static final String OMIT_XML_DECLARATION = "omit-xml-declaration"; |
| 18804 | field public static final String STANDALONE = "standalone"; |
| 18805 | field public static final String VERSION = "version"; |
| 18806 | } |
| 18807 | |
| 18808 | public interface Result { |
| 18809 | method public String getSystemId(); |
| 18810 | method public void setSystemId(String); |
| 18811 | field public static final String PI_DISABLE_OUTPUT_ESCAPING = "javax.xml.transform.disable-output-escaping"; |
| 18812 | field public static final String PI_ENABLE_OUTPUT_ESCAPING = "javax.xml.transform.enable-output-escaping"; |
| 18813 | } |
| 18814 | |
| 18815 | public interface Source { |
| 18816 | method public String getSystemId(); |
| 18817 | method public void setSystemId(String); |
| 18818 | } |
| 18819 | |
| 18820 | public interface SourceLocator { |
| 18821 | method public int getColumnNumber(); |
| 18822 | method public int getLineNumber(); |
| 18823 | method public String getPublicId(); |
| 18824 | method public String getSystemId(); |
| 18825 | } |
| 18826 | |
| 18827 | public interface Templates { |
| 18828 | method public java.util.Properties getOutputProperties(); |
| 18829 | method public javax.xml.transform.Transformer newTransformer() throws javax.xml.transform.TransformerConfigurationException; |
| 18830 | } |
| 18831 | |
| 18832 | public abstract class Transformer { |
| 18833 | ctor protected Transformer(); |
| 18834 | method public abstract void clearParameters(); |
| 18835 | method public abstract javax.xml.transform.ErrorListener getErrorListener(); |
| 18836 | method public abstract java.util.Properties getOutputProperties(); |
| 18837 | method public abstract String getOutputProperty(String) throws java.lang.IllegalArgumentException; |
| 18838 | method public abstract Object getParameter(String); |
| 18839 | method public abstract javax.xml.transform.URIResolver getURIResolver(); |
| 18840 | method public void reset(); |
| 18841 | method public abstract void setErrorListener(javax.xml.transform.ErrorListener) throws java.lang.IllegalArgumentException; |
| 18842 | method public abstract void setOutputProperties(java.util.Properties); |
| 18843 | method public abstract void setOutputProperty(String, String) throws java.lang.IllegalArgumentException; |
| 18844 | method public abstract void setParameter(String, Object); |
| 18845 | method public abstract void setURIResolver(javax.xml.transform.URIResolver); |
| 18846 | method public abstract void transform(javax.xml.transform.Source, javax.xml.transform.Result) throws javax.xml.transform.TransformerException; |
| 18847 | } |
| 18848 | |
| 18849 | public class TransformerConfigurationException extends javax.xml.transform.TransformerException { |
| 18850 | ctor public TransformerConfigurationException(); |
| 18851 | ctor public TransformerConfigurationException(String); |
| 18852 | ctor public TransformerConfigurationException(Throwable); |
| 18853 | ctor public TransformerConfigurationException(String, Throwable); |
| 18854 | ctor public TransformerConfigurationException(String, javax.xml.transform.SourceLocator); |
| 18855 | ctor public TransformerConfigurationException(String, javax.xml.transform.SourceLocator, Throwable); |
| 18856 | } |
| 18857 | |
| 18858 | public class TransformerException extends java.lang.Exception { |
| 18859 | ctor public TransformerException(String); |
| 18860 | ctor public TransformerException(Throwable); |
| 18861 | ctor public TransformerException(String, Throwable); |
| 18862 | ctor public TransformerException(String, javax.xml.transform.SourceLocator); |
| 18863 | ctor public TransformerException(String, javax.xml.transform.SourceLocator, Throwable); |
| 18864 | method public Throwable getException(); |
| 18865 | method public String getLocationAsString(); |
| 18866 | method public javax.xml.transform.SourceLocator getLocator(); |
| 18867 | method public String getMessageAndLocation(); |
| 18868 | method public void setLocator(javax.xml.transform.SourceLocator); |
| 18869 | } |
| 18870 | |
| 18871 | public abstract class TransformerFactory { |
| 18872 | ctor protected TransformerFactory(); |
| 18873 | method public abstract javax.xml.transform.Source getAssociatedStylesheet(javax.xml.transform.Source, String, String, String) throws javax.xml.transform.TransformerConfigurationException; |
| 18874 | method public abstract Object getAttribute(String); |
| 18875 | method public abstract javax.xml.transform.ErrorListener getErrorListener(); |
| 18876 | method public abstract boolean getFeature(String); |
| 18877 | method public abstract javax.xml.transform.URIResolver getURIResolver(); |
| 18878 | method public static javax.xml.transform.TransformerFactory newInstance() throws javax.xml.transform.TransformerFactoryConfigurationError; |
| 18879 | method public static javax.xml.transform.TransformerFactory newInstance(String, ClassLoader) throws javax.xml.transform.TransformerFactoryConfigurationError; |
| 18880 | method public abstract javax.xml.transform.Templates newTemplates(javax.xml.transform.Source) throws javax.xml.transform.TransformerConfigurationException; |
| 18881 | method public abstract javax.xml.transform.Transformer newTransformer(javax.xml.transform.Source) throws javax.xml.transform.TransformerConfigurationException; |
| 18882 | method public abstract javax.xml.transform.Transformer newTransformer() throws javax.xml.transform.TransformerConfigurationException; |
| 18883 | method public abstract void setAttribute(String, Object); |
| 18884 | method public abstract void setErrorListener(javax.xml.transform.ErrorListener); |
| 18885 | method public abstract void setFeature(String, boolean) throws javax.xml.transform.TransformerConfigurationException; |
| 18886 | method public abstract void setURIResolver(javax.xml.transform.URIResolver); |
| 18887 | } |
| 18888 | |
| 18889 | public class TransformerFactoryConfigurationError extends java.lang.Error { |
| 18890 | ctor public TransformerFactoryConfigurationError(); |
| 18891 | ctor public TransformerFactoryConfigurationError(String); |
| 18892 | ctor public TransformerFactoryConfigurationError(Exception); |
| 18893 | ctor public TransformerFactoryConfigurationError(Exception, String); |
| 18894 | method public Exception getException(); |
| 18895 | } |
| 18896 | |
| 18897 | public interface URIResolver { |
| 18898 | method public javax.xml.transform.Source resolve(String, String) throws javax.xml.transform.TransformerException; |
| 18899 | } |
| 18900 | |
| 18901 | } |
| 18902 | |
| 18903 | package javax.xml.transform.dom { |
| 18904 | |
| 18905 | public interface DOMLocator extends javax.xml.transform.SourceLocator { |
| 18906 | method public org.w3c.dom.Node getOriginatingNode(); |
| 18907 | } |
| 18908 | |
| 18909 | public class DOMResult implements javax.xml.transform.Result { |
| 18910 | ctor public DOMResult(); |
| 18911 | ctor public DOMResult(org.w3c.dom.Node); |
| 18912 | ctor public DOMResult(org.w3c.dom.Node, String); |
| 18913 | ctor public DOMResult(org.w3c.dom.Node, org.w3c.dom.Node); |
| 18914 | ctor public DOMResult(org.w3c.dom.Node, org.w3c.dom.Node, String); |
| 18915 | method public org.w3c.dom.Node getNextSibling(); |
| 18916 | method public org.w3c.dom.Node getNode(); |
| 18917 | method public String getSystemId(); |
| 18918 | method public void setNextSibling(org.w3c.dom.Node); |
| 18919 | method public void setNode(org.w3c.dom.Node); |
| 18920 | method public void setSystemId(String); |
| 18921 | field public static final String FEATURE = "http://javax.xml.transform.dom.DOMResult/feature"; |
| 18922 | } |
| 18923 | |
| 18924 | public class DOMSource implements javax.xml.transform.Source { |
| 18925 | ctor public DOMSource(); |
| 18926 | ctor public DOMSource(org.w3c.dom.Node); |
| 18927 | ctor public DOMSource(org.w3c.dom.Node, String); |
| 18928 | method public org.w3c.dom.Node getNode(); |
| 18929 | method public String getSystemId(); |
| 18930 | method public void setNode(org.w3c.dom.Node); |
| 18931 | method public void setSystemId(String); |
| 18932 | field public static final String FEATURE = "http://javax.xml.transform.dom.DOMSource/feature"; |
| 18933 | } |
| 18934 | |
| 18935 | } |
| 18936 | |
| 18937 | package javax.xml.transform.sax { |
| 18938 | |
| 18939 | public class SAXResult implements javax.xml.transform.Result { |
| 18940 | ctor public SAXResult(); |
| 18941 | ctor public SAXResult(org.xml.sax.ContentHandler); |
| 18942 | method public org.xml.sax.ContentHandler getHandler(); |
| 18943 | method public org.xml.sax.ext.LexicalHandler getLexicalHandler(); |
| 18944 | method public String getSystemId(); |
| 18945 | method public void setHandler(org.xml.sax.ContentHandler); |
| 18946 | method public void setLexicalHandler(org.xml.sax.ext.LexicalHandler); |
| 18947 | method public void setSystemId(String); |
| 18948 | field public static final String FEATURE = "http://javax.xml.transform.sax.SAXResult/feature"; |
| 18949 | } |
| 18950 | |
| 18951 | public class SAXSource implements javax.xml.transform.Source { |
| 18952 | ctor public SAXSource(); |
| 18953 | ctor public SAXSource(org.xml.sax.XMLReader, org.xml.sax.InputSource); |
| 18954 | ctor public SAXSource(org.xml.sax.InputSource); |
| 18955 | method public org.xml.sax.InputSource getInputSource(); |
| 18956 | method public String getSystemId(); |
| 18957 | method public org.xml.sax.XMLReader getXMLReader(); |
| 18958 | method public void setInputSource(org.xml.sax.InputSource); |
| 18959 | method public void setSystemId(String); |
| 18960 | method public void setXMLReader(org.xml.sax.XMLReader); |
| 18961 | method public static org.xml.sax.InputSource sourceToInputSource(javax.xml.transform.Source); |
| 18962 | field public static final String FEATURE = "http://javax.xml.transform.sax.SAXSource/feature"; |
| 18963 | } |
| 18964 | |
| 18965 | public abstract class SAXTransformerFactory extends javax.xml.transform.TransformerFactory { |
| 18966 | ctor protected SAXTransformerFactory(); |
| 18967 | method public abstract javax.xml.transform.sax.TemplatesHandler newTemplatesHandler() throws javax.xml.transform.TransformerConfigurationException; |
| 18968 | method public abstract javax.xml.transform.sax.TransformerHandler newTransformerHandler(javax.xml.transform.Source) throws javax.xml.transform.TransformerConfigurationException; |
| 18969 | method public abstract javax.xml.transform.sax.TransformerHandler newTransformerHandler(javax.xml.transform.Templates) throws javax.xml.transform.TransformerConfigurationException; |
| 18970 | method public abstract javax.xml.transform.sax.TransformerHandler newTransformerHandler() throws javax.xml.transform.TransformerConfigurationException; |
| 18971 | method public abstract org.xml.sax.XMLFilter newXMLFilter(javax.xml.transform.Source) throws javax.xml.transform.TransformerConfigurationException; |
| 18972 | method public abstract org.xml.sax.XMLFilter newXMLFilter(javax.xml.transform.Templates) throws javax.xml.transform.TransformerConfigurationException; |
| 18973 | field public static final String FEATURE = "http://javax.xml.transform.sax.SAXTransformerFactory/feature"; |
| 18974 | field public static final String FEATURE_XMLFILTER = "http://javax.xml.transform.sax.SAXTransformerFactory/feature/xmlfilter"; |
| 18975 | } |
| 18976 | |
| 18977 | public interface TemplatesHandler extends org.xml.sax.ContentHandler { |
| 18978 | method public String getSystemId(); |
| 18979 | method public javax.xml.transform.Templates getTemplates(); |
| 18980 | method public void setSystemId(String); |
| 18981 | } |
| 18982 | |
| 18983 | public interface TransformerHandler extends org.xml.sax.ContentHandler org.xml.sax.DTDHandler org.xml.sax.ext.LexicalHandler { |
| 18984 | method public String getSystemId(); |
| 18985 | method public javax.xml.transform.Transformer getTransformer(); |
| 18986 | method public void setResult(javax.xml.transform.Result) throws java.lang.IllegalArgumentException; |
| 18987 | method public void setSystemId(String); |
| 18988 | } |
| 18989 | |
| 18990 | } |
| 18991 | |
| 18992 | package javax.xml.transform.stream { |
| 18993 | |
| 18994 | public class StreamResult implements javax.xml.transform.Result { |
| 18995 | ctor public StreamResult(); |
| 18996 | ctor public StreamResult(java.io.OutputStream); |
| 18997 | ctor public StreamResult(java.io.Writer); |
| 18998 | ctor public StreamResult(String); |
| 18999 | ctor public StreamResult(java.io.File); |
| 19000 | method public java.io.OutputStream getOutputStream(); |
| 19001 | method public String getSystemId(); |
| 19002 | method public java.io.Writer getWriter(); |
| 19003 | method public void setOutputStream(java.io.OutputStream); |
| 19004 | method public void setSystemId(String); |
| 19005 | method public void setSystemId(java.io.File); |
| 19006 | method public void setWriter(java.io.Writer); |
| 19007 | field public static final String FEATURE = "http://javax.xml.transform.stream.StreamResult/feature"; |
| 19008 | } |
| 19009 | |
| 19010 | public class StreamSource implements javax.xml.transform.Source { |
| 19011 | ctor public StreamSource(); |
| 19012 | ctor public StreamSource(java.io.InputStream); |
| 19013 | ctor public StreamSource(java.io.InputStream, String); |
| 19014 | ctor public StreamSource(java.io.Reader); |
| 19015 | ctor public StreamSource(java.io.Reader, String); |
| 19016 | ctor public StreamSource(String); |
| 19017 | ctor public StreamSource(java.io.File); |
| 19018 | method public java.io.InputStream getInputStream(); |
| 19019 | method public String getPublicId(); |
| 19020 | method public java.io.Reader getReader(); |
| 19021 | method public String getSystemId(); |
| 19022 | method public void setInputStream(java.io.InputStream); |
| 19023 | method public void setPublicId(String); |
| 19024 | method public void setReader(java.io.Reader); |
| 19025 | method public void setSystemId(String); |
| 19026 | method public void setSystemId(java.io.File); |
| 19027 | field public static final String FEATURE = "http://javax.xml.transform.stream.StreamSource/feature"; |
| 19028 | } |
| 19029 | |
| 19030 | } |
| 19031 | |
| 19032 | package javax.xml.validation { |
| 19033 | |
| 19034 | public abstract class Schema { |
| 19035 | ctor protected Schema(); |
| 19036 | method public abstract javax.xml.validation.Validator newValidator(); |
| 19037 | method public abstract javax.xml.validation.ValidatorHandler newValidatorHandler(); |
| 19038 | } |
| 19039 | |
| 19040 | public abstract class SchemaFactory { |
| 19041 | ctor protected SchemaFactory(); |
| 19042 | method public abstract org.xml.sax.ErrorHandler getErrorHandler(); |
| 19043 | method public boolean getFeature(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19044 | method public Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19045 | method public abstract org.w3c.dom.ls.LSResourceResolver getResourceResolver(); |
| 19046 | method public abstract boolean isSchemaLanguageSupported(String); |
| 19047 | method public static javax.xml.validation.SchemaFactory newInstance(String); |
| 19048 | method public static javax.xml.validation.SchemaFactory newInstance(String, String, ClassLoader); |
| 19049 | method public javax.xml.validation.Schema newSchema(javax.xml.transform.Source) throws org.xml.sax.SAXException; |
| 19050 | method public javax.xml.validation.Schema newSchema(java.io.File) throws org.xml.sax.SAXException; |
| 19051 | method public javax.xml.validation.Schema newSchema(java.net.URL) throws org.xml.sax.SAXException; |
| 19052 | method public abstract javax.xml.validation.Schema newSchema(javax.xml.transform.Source[]) throws org.xml.sax.SAXException; |
| 19053 | method public abstract javax.xml.validation.Schema newSchema() throws org.xml.sax.SAXException; |
| 19054 | method public abstract void setErrorHandler(org.xml.sax.ErrorHandler); |
| 19055 | method public void setFeature(String, boolean) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19056 | method public void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19057 | method public abstract void setResourceResolver(org.w3c.dom.ls.LSResourceResolver); |
| 19058 | } |
| 19059 | |
| 19060 | public abstract class SchemaFactoryLoader { |
| 19061 | ctor protected SchemaFactoryLoader(); |
| 19062 | method public abstract javax.xml.validation.SchemaFactory newFactory(String); |
| 19063 | } |
| 19064 | |
| 19065 | public abstract class TypeInfoProvider { |
| 19066 | ctor protected TypeInfoProvider(); |
| 19067 | method public abstract org.w3c.dom.TypeInfo getAttributeTypeInfo(int); |
| 19068 | method public abstract org.w3c.dom.TypeInfo getElementTypeInfo(); |
| 19069 | method public abstract boolean isIdAttribute(int); |
| 19070 | method public abstract boolean isSpecified(int); |
| 19071 | } |
| 19072 | |
| 19073 | public abstract class Validator { |
| 19074 | ctor protected Validator(); |
| 19075 | method public abstract org.xml.sax.ErrorHandler getErrorHandler(); |
| 19076 | method public boolean getFeature(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19077 | method public Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19078 | method public abstract org.w3c.dom.ls.LSResourceResolver getResourceResolver(); |
| 19079 | method public abstract void reset(); |
| 19080 | method public abstract void setErrorHandler(org.xml.sax.ErrorHandler); |
| 19081 | method public void setFeature(String, boolean) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19082 | method public void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19083 | method public abstract void setResourceResolver(org.w3c.dom.ls.LSResourceResolver); |
| 19084 | method public void validate(javax.xml.transform.Source) throws java.io.IOException, org.xml.sax.SAXException; |
| 19085 | method public abstract void validate(javax.xml.transform.Source, javax.xml.transform.Result) throws java.io.IOException, org.xml.sax.SAXException; |
| 19086 | } |
| 19087 | |
| 19088 | public abstract class ValidatorHandler implements org.xml.sax.ContentHandler { |
| 19089 | ctor protected ValidatorHandler(); |
| 19090 | method public abstract org.xml.sax.ContentHandler getContentHandler(); |
| 19091 | method public abstract org.xml.sax.ErrorHandler getErrorHandler(); |
| 19092 | method public boolean getFeature(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19093 | method public Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19094 | method public abstract org.w3c.dom.ls.LSResourceResolver getResourceResolver(); |
| 19095 | method public abstract javax.xml.validation.TypeInfoProvider getTypeInfoProvider(); |
| 19096 | method public abstract void setContentHandler(org.xml.sax.ContentHandler); |
| 19097 | method public abstract void setErrorHandler(org.xml.sax.ErrorHandler); |
| 19098 | method public void setFeature(String, boolean) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19099 | method public void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19100 | method public abstract void setResourceResolver(org.w3c.dom.ls.LSResourceResolver); |
| 19101 | } |
| 19102 | |
| 19103 | } |
| 19104 | |
| 19105 | package javax.xml.xpath { |
| 19106 | |
| 19107 | public interface XPath { |
| 19108 | method public javax.xml.xpath.XPathExpression compile(String) throws javax.xml.xpath.XPathExpressionException; |
| 19109 | method public Object evaluate(String, Object, javax.xml.namespace.QName) throws javax.xml.xpath.XPathExpressionException; |
| 19110 | method public String evaluate(String, Object) throws javax.xml.xpath.XPathExpressionException; |
| 19111 | method public Object evaluate(String, org.xml.sax.InputSource, javax.xml.namespace.QName) throws javax.xml.xpath.XPathExpressionException; |
| 19112 | method public String evaluate(String, org.xml.sax.InputSource) throws javax.xml.xpath.XPathExpressionException; |
| 19113 | method public javax.xml.namespace.NamespaceContext getNamespaceContext(); |
| 19114 | method public javax.xml.xpath.XPathFunctionResolver getXPathFunctionResolver(); |
| 19115 | method public javax.xml.xpath.XPathVariableResolver getXPathVariableResolver(); |
| 19116 | method public void reset(); |
| 19117 | method public void setNamespaceContext(javax.xml.namespace.NamespaceContext); |
| 19118 | method public void setXPathFunctionResolver(javax.xml.xpath.XPathFunctionResolver); |
| 19119 | method public void setXPathVariableResolver(javax.xml.xpath.XPathVariableResolver); |
| 19120 | } |
| 19121 | |
| 19122 | public class XPathConstants { |
| 19123 | field public static final javax.xml.namespace.QName BOOLEAN; |
| 19124 | field public static final String DOM_OBJECT_MODEL = "http://java.sun.com/jaxp/xpath/dom"; |
| 19125 | field public static final javax.xml.namespace.QName NODE; |
| 19126 | field public static final javax.xml.namespace.QName NODESET; |
| 19127 | field public static final javax.xml.namespace.QName NUMBER; |
| 19128 | field public static final javax.xml.namespace.QName STRING; |
| 19129 | } |
| 19130 | |
| 19131 | public class XPathException extends java.lang.Exception { |
| 19132 | ctor public XPathException(String); |
| 19133 | ctor public XPathException(Throwable); |
| 19134 | } |
| 19135 | |
| 19136 | public interface XPathExpression { |
| 19137 | method public Object evaluate(Object, javax.xml.namespace.QName) throws javax.xml.xpath.XPathExpressionException; |
| 19138 | method public String evaluate(Object) throws javax.xml.xpath.XPathExpressionException; |
| 19139 | method public Object evaluate(org.xml.sax.InputSource, javax.xml.namespace.QName) throws javax.xml.xpath.XPathExpressionException; |
| 19140 | method public String evaluate(org.xml.sax.InputSource) throws javax.xml.xpath.XPathExpressionException; |
| 19141 | } |
| 19142 | |
| 19143 | public class XPathExpressionException extends javax.xml.xpath.XPathException { |
| 19144 | ctor public XPathExpressionException(String); |
| 19145 | ctor public XPathExpressionException(Throwable); |
| 19146 | } |
| 19147 | |
| 19148 | public abstract class XPathFactory { |
| 19149 | ctor protected XPathFactory(); |
| 19150 | method public abstract boolean getFeature(String) throws javax.xml.xpath.XPathFactoryConfigurationException; |
| 19151 | method public abstract boolean isObjectModelSupported(String); |
| 19152 | method public static final javax.xml.xpath.XPathFactory newInstance(); |
| 19153 | method public static final javax.xml.xpath.XPathFactory newInstance(String) throws javax.xml.xpath.XPathFactoryConfigurationException; |
| 19154 | method public static javax.xml.xpath.XPathFactory newInstance(String, String, ClassLoader) throws javax.xml.xpath.XPathFactoryConfigurationException; |
| 19155 | method public abstract javax.xml.xpath.XPath newXPath(); |
| 19156 | method public abstract void setFeature(String, boolean) throws javax.xml.xpath.XPathFactoryConfigurationException; |
| 19157 | method public abstract void setXPathFunctionResolver(javax.xml.xpath.XPathFunctionResolver); |
| 19158 | method public abstract void setXPathVariableResolver(javax.xml.xpath.XPathVariableResolver); |
| 19159 | field public static final String DEFAULT_OBJECT_MODEL_URI = "http://java.sun.com/jaxp/xpath/dom"; |
| 19160 | field public static final String DEFAULT_PROPERTY_NAME = "javax.xml.xpath.XPathFactory"; |
| 19161 | } |
| 19162 | |
| 19163 | public class XPathFactoryConfigurationException extends javax.xml.xpath.XPathException { |
| 19164 | ctor public XPathFactoryConfigurationException(String); |
| 19165 | ctor public XPathFactoryConfigurationException(Throwable); |
| 19166 | } |
| 19167 | |
| 19168 | public interface XPathFunction { |
| 19169 | method public Object evaluate(java.util.List) throws javax.xml.xpath.XPathFunctionException; |
| 19170 | } |
| 19171 | |
| 19172 | public class XPathFunctionException extends javax.xml.xpath.XPathExpressionException { |
| 19173 | ctor public XPathFunctionException(String); |
| 19174 | ctor public XPathFunctionException(Throwable); |
| 19175 | } |
| 19176 | |
| 19177 | public interface XPathFunctionResolver { |
| 19178 | method public javax.xml.xpath.XPathFunction resolveFunction(javax.xml.namespace.QName, int); |
| 19179 | } |
| 19180 | |
| 19181 | public interface XPathVariableResolver { |
| 19182 | method public Object resolveVariable(javax.xml.namespace.QName); |
| 19183 | } |
| 19184 | |
| 19185 | } |
| 19186 | |
| 19187 | package org.json { |
| 19188 | |
| 19189 | public class JSONArray { |
| 19190 | ctor public JSONArray(); |
| 19191 | ctor public JSONArray(java.util.Collection); |
| 19192 | ctor public JSONArray(org.json.JSONTokener) throws org.json.JSONException; |
| 19193 | ctor public JSONArray(String) throws org.json.JSONException; |
| 19194 | ctor public JSONArray(Object) throws org.json.JSONException; |
| 19195 | method public Object get(int) throws org.json.JSONException; |
| 19196 | method public boolean getBoolean(int) throws org.json.JSONException; |
| 19197 | method public double getDouble(int) throws org.json.JSONException; |
| 19198 | method public int getInt(int) throws org.json.JSONException; |
| 19199 | method public org.json.JSONArray getJSONArray(int) throws org.json.JSONException; |
| 19200 | method public org.json.JSONObject getJSONObject(int) throws org.json.JSONException; |
| 19201 | method public long getLong(int) throws org.json.JSONException; |
| 19202 | method public String getString(int) throws org.json.JSONException; |
| 19203 | method public boolean isNull(int); |
| 19204 | method public String join(String) throws org.json.JSONException; |
| 19205 | method public int length(); |
| 19206 | method public Object opt(int); |
| 19207 | method public boolean optBoolean(int); |
| 19208 | method public boolean optBoolean(int, boolean); |
| 19209 | method public double optDouble(int); |
| 19210 | method public double optDouble(int, double); |
| 19211 | method public int optInt(int); |
| 19212 | method public int optInt(int, int); |
| 19213 | method public org.json.JSONArray optJSONArray(int); |
| 19214 | method public org.json.JSONObject optJSONObject(int); |
| 19215 | method public long optLong(int); |
| 19216 | method public long optLong(int, long); |
| 19217 | method public String optString(int); |
| 19218 | method public String optString(int, String); |
| 19219 | method public org.json.JSONArray put(boolean); |
| 19220 | method public org.json.JSONArray put(double) throws org.json.JSONException; |
| 19221 | method public org.json.JSONArray put(int); |
| 19222 | method public org.json.JSONArray put(long); |
| 19223 | method public org.json.JSONArray put(Object); |
| 19224 | method public org.json.JSONArray put(int, boolean) throws org.json.JSONException; |
| 19225 | method public org.json.JSONArray put(int, double) throws org.json.JSONException; |
| 19226 | method public org.json.JSONArray put(int, int) throws org.json.JSONException; |
| 19227 | method public org.json.JSONArray put(int, long) throws org.json.JSONException; |
| 19228 | method public org.json.JSONArray put(int, Object) throws org.json.JSONException; |
| 19229 | method public Object remove(int); |
| 19230 | method public org.json.JSONObject toJSONObject(org.json.JSONArray) throws org.json.JSONException; |
| 19231 | method public String toString(int) throws org.json.JSONException; |
| 19232 | } |
| 19233 | |
| 19234 | public class JSONException extends java.lang.Exception { |
| 19235 | ctor public JSONException(String); |
| 19236 | ctor public JSONException(String, Throwable); |
| 19237 | ctor public JSONException(Throwable); |
| 19238 | } |
| 19239 | |
| 19240 | public class JSONObject { |
| 19241 | ctor public JSONObject(); |
| 19242 | ctor public JSONObject(@NonNull java.util.Map); |
| 19243 | ctor public JSONObject(@NonNull org.json.JSONTokener) throws org.json.JSONException; |
| 19244 | ctor public JSONObject(@NonNull String) throws org.json.JSONException; |
| 19245 | ctor public JSONObject(@NonNull org.json.JSONObject, @NonNull String[]) throws org.json.JSONException; |
| 19246 | method @NonNull public org.json.JSONObject accumulate(@NonNull String, @Nullable Object) throws org.json.JSONException; |
| 19247 | method @NonNull public Object get(@NonNull String) throws org.json.JSONException; |
| 19248 | method public boolean getBoolean(@NonNull String) throws org.json.JSONException; |
| 19249 | method public double getDouble(@NonNull String) throws org.json.JSONException; |
| 19250 | method public int getInt(@NonNull String) throws org.json.JSONException; |
| 19251 | method @NonNull public org.json.JSONArray getJSONArray(@NonNull String) throws org.json.JSONException; |
| 19252 | method @NonNull public org.json.JSONObject getJSONObject(@NonNull String) throws org.json.JSONException; |
| 19253 | method public long getLong(@NonNull String) throws org.json.JSONException; |
| 19254 | method @NonNull public String getString(@NonNull String) throws org.json.JSONException; |
| 19255 | method public boolean has(@Nullable String); |
| 19256 | method public boolean isNull(@Nullable String); |
| 19257 | method @NonNull public java.util.Iterator<java.lang.String> keys(); |
| 19258 | method public int length(); |
| 19259 | method @Nullable public org.json.JSONArray names(); |
| 19260 | method @NonNull public static String numberToString(@NonNull Number) throws org.json.JSONException; |
| 19261 | method @Nullable public Object opt(@Nullable String); |
| 19262 | method public boolean optBoolean(@Nullable String); |
| 19263 | method public boolean optBoolean(@Nullable String, boolean); |
| 19264 | method public double optDouble(@Nullable String); |
| 19265 | method public double optDouble(@Nullable String, double); |
| 19266 | method public int optInt(@Nullable String); |
| 19267 | method public int optInt(@Nullable String, int); |
| 19268 | method @Nullable public org.json.JSONArray optJSONArray(@Nullable String); |
| 19269 | method @Nullable public org.json.JSONObject optJSONObject(@Nullable String); |
| 19270 | method public long optLong(@Nullable String); |
| 19271 | method public long optLong(@Nullable String, long); |
| 19272 | method @NonNull public String optString(@Nullable String); |
| 19273 | method @NonNull public String optString(@Nullable String, @NonNull String); |
| 19274 | method @NonNull public org.json.JSONObject put(@NonNull String, boolean) throws org.json.JSONException; |
| 19275 | method @NonNull public org.json.JSONObject put(@NonNull String, double) throws org.json.JSONException; |
| 19276 | method @NonNull public org.json.JSONObject put(@NonNull String, int) throws org.json.JSONException; |
| 19277 | method @NonNull public org.json.JSONObject put(@NonNull String, long) throws org.json.JSONException; |
| 19278 | method @NonNull public org.json.JSONObject put(@NonNull String, @Nullable Object) throws org.json.JSONException; |
| 19279 | method @NonNull public org.json.JSONObject putOpt(@Nullable String, @Nullable Object) throws org.json.JSONException; |
| 19280 | method @NonNull public static String quote(@Nullable String); |
| 19281 | method @Nullable public Object remove(@Nullable String); |
| 19282 | method @Nullable public org.json.JSONArray toJSONArray(@Nullable org.json.JSONArray) throws org.json.JSONException; |
| 19283 | method @NonNull public String toString(int) throws org.json.JSONException; |
| 19284 | method @Nullable public static Object wrap(@Nullable Object); |
| 19285 | field @NonNull public static final Object NULL; |
| 19286 | } |
| 19287 | |
| 19288 | public class JSONStringer { |
| 19289 | ctor public JSONStringer(); |
| 19290 | method public org.json.JSONStringer array() throws org.json.JSONException; |
| 19291 | method public org.json.JSONStringer endArray() throws org.json.JSONException; |
| 19292 | method public org.json.JSONStringer endObject() throws org.json.JSONException; |
| 19293 | method public org.json.JSONStringer key(String) throws org.json.JSONException; |
| 19294 | method public org.json.JSONStringer object() throws org.json.JSONException; |
| 19295 | method public org.json.JSONStringer value(Object) throws org.json.JSONException; |
| 19296 | method public org.json.JSONStringer value(boolean) throws org.json.JSONException; |
| 19297 | method public org.json.JSONStringer value(double) throws org.json.JSONException; |
| 19298 | method public org.json.JSONStringer value(long) throws org.json.JSONException; |
| 19299 | } |
| 19300 | |
| 19301 | public class JSONTokener { |
| 19302 | ctor public JSONTokener(String); |
| 19303 | method public void back(); |
| 19304 | method public static int dehexchar(char); |
| 19305 | method public boolean more(); |
| 19306 | method public char next(); |
| 19307 | method public char next(char) throws org.json.JSONException; |
| 19308 | method public String next(int) throws org.json.JSONException; |
| 19309 | method public char nextClean() throws org.json.JSONException; |
| 19310 | method public String nextString(char) throws org.json.JSONException; |
| 19311 | method public String nextTo(String); |
| 19312 | method public String nextTo(char); |
| 19313 | method public Object nextValue() throws org.json.JSONException; |
| 19314 | method public void skipPast(String); |
| 19315 | method public char skipTo(char); |
| 19316 | method public org.json.JSONException syntaxError(String); |
| 19317 | } |
| 19318 | |
| 19319 | } |
| 19320 | |
| 19321 | package org.w3c.dom { |
| 19322 | |
| 19323 | public interface Attr extends org.w3c.dom.Node { |
| 19324 | method public String getName(); |
| 19325 | method public org.w3c.dom.Element getOwnerElement(); |
| 19326 | method public org.w3c.dom.TypeInfo getSchemaTypeInfo(); |
| 19327 | method public boolean getSpecified(); |
| 19328 | method public String getValue(); |
| 19329 | method public boolean isId(); |
| 19330 | method public void setValue(String) throws org.w3c.dom.DOMException; |
| 19331 | } |
| 19332 | |
| 19333 | public interface CDATASection extends org.w3c.dom.Text { |
| 19334 | } |
| 19335 | |
| 19336 | public interface CharacterData extends org.w3c.dom.Node { |
| 19337 | method public void appendData(String) throws org.w3c.dom.DOMException; |
| 19338 | method public void deleteData(int, int) throws org.w3c.dom.DOMException; |
| 19339 | method public String getData() throws org.w3c.dom.DOMException; |
| 19340 | method public int getLength(); |
| 19341 | method public void insertData(int, String) throws org.w3c.dom.DOMException; |
| 19342 | method public void replaceData(int, int, String) throws org.w3c.dom.DOMException; |
| 19343 | method public void setData(String) throws org.w3c.dom.DOMException; |
| 19344 | method public String substringData(int, int) throws org.w3c.dom.DOMException; |
| 19345 | } |
| 19346 | |
| 19347 | public interface Comment extends org.w3c.dom.CharacterData { |
| 19348 | } |
| 19349 | |
| 19350 | public interface DOMConfiguration { |
| 19351 | method public boolean canSetParameter(String, Object); |
| 19352 | method public Object getParameter(String) throws org.w3c.dom.DOMException; |
| 19353 | method public org.w3c.dom.DOMStringList getParameterNames(); |
| 19354 | method public void setParameter(String, Object) throws org.w3c.dom.DOMException; |
| 19355 | } |
| 19356 | |
| 19357 | public interface DOMError { |
| 19358 | method public org.w3c.dom.DOMLocator getLocation(); |
| 19359 | method public String getMessage(); |
| 19360 | method public Object getRelatedData(); |
| 19361 | method public Object getRelatedException(); |
| 19362 | method public short getSeverity(); |
| 19363 | method public String getType(); |
| 19364 | field public static final short SEVERITY_ERROR = 2; // 0x2 |
| 19365 | field public static final short SEVERITY_FATAL_ERROR = 3; // 0x3 |
| 19366 | field public static final short SEVERITY_WARNING = 1; // 0x1 |
| 19367 | } |
| 19368 | |
| 19369 | public interface DOMErrorHandler { |
| 19370 | method public boolean handleError(org.w3c.dom.DOMError); |
| 19371 | } |
| 19372 | |
| 19373 | public class DOMException extends java.lang.RuntimeException { |
| 19374 | ctor public DOMException(short, String); |
| 19375 | field public static final short DOMSTRING_SIZE_ERR = 2; // 0x2 |
| 19376 | field public static final short HIERARCHY_REQUEST_ERR = 3; // 0x3 |
| 19377 | field public static final short INDEX_SIZE_ERR = 1; // 0x1 |
| 19378 | field public static final short INUSE_ATTRIBUTE_ERR = 10; // 0xa |
| 19379 | field public static final short INVALID_ACCESS_ERR = 15; // 0xf |
| 19380 | field public static final short INVALID_CHARACTER_ERR = 5; // 0x5 |
| 19381 | field public static final short INVALID_MODIFICATION_ERR = 13; // 0xd |
| 19382 | field public static final short INVALID_STATE_ERR = 11; // 0xb |
| 19383 | field public static final short NAMESPACE_ERR = 14; // 0xe |
| 19384 | field public static final short NOT_FOUND_ERR = 8; // 0x8 |
| 19385 | field public static final short NOT_SUPPORTED_ERR = 9; // 0x9 |
| 19386 | field public static final short NO_DATA_ALLOWED_ERR = 6; // 0x6 |
| 19387 | field public static final short NO_MODIFICATION_ALLOWED_ERR = 7; // 0x7 |
| 19388 | field public static final short SYNTAX_ERR = 12; // 0xc |
| 19389 | field public static final short TYPE_MISMATCH_ERR = 17; // 0x11 |
| 19390 | field public static final short VALIDATION_ERR = 16; // 0x10 |
| 19391 | field public static final short WRONG_DOCUMENT_ERR = 4; // 0x4 |
| 19392 | field public short code; |
| 19393 | } |
| 19394 | |
| 19395 | public interface DOMImplementation { |
| 19396 | method public org.w3c.dom.Document createDocument(String, String, org.w3c.dom.DocumentType) throws org.w3c.dom.DOMException; |
| 19397 | method public org.w3c.dom.DocumentType createDocumentType(String, String, String) throws org.w3c.dom.DOMException; |
| 19398 | method public Object getFeature(String, String); |
| 19399 | method public boolean hasFeature(String, String); |
| 19400 | } |
| 19401 | |
| 19402 | public interface DOMImplementationList { |
| 19403 | method public int getLength(); |
| 19404 | method public org.w3c.dom.DOMImplementation item(int); |
| 19405 | } |
| 19406 | |
| 19407 | public interface DOMImplementationSource { |
| 19408 | method public org.w3c.dom.DOMImplementation getDOMImplementation(String); |
| 19409 | method public org.w3c.dom.DOMImplementationList getDOMImplementationList(String); |
| 19410 | } |
| 19411 | |
| 19412 | public interface DOMLocator { |
| 19413 | method public int getByteOffset(); |
| 19414 | method public int getColumnNumber(); |
| 19415 | method public int getLineNumber(); |
| 19416 | method public org.w3c.dom.Node getRelatedNode(); |
| 19417 | method public String getUri(); |
| 19418 | method public int getUtf16Offset(); |
| 19419 | } |
| 19420 | |
| 19421 | public interface DOMStringList { |
| 19422 | method public boolean contains(String); |
| 19423 | method public int getLength(); |
| 19424 | method public String item(int); |
| 19425 | } |
| 19426 | |
| 19427 | public interface Document extends org.w3c.dom.Node { |
| 19428 | method public org.w3c.dom.Node adoptNode(org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19429 | method public org.w3c.dom.Attr createAttribute(String) throws org.w3c.dom.DOMException; |
| 19430 | method public org.w3c.dom.Attr createAttributeNS(String, String) throws org.w3c.dom.DOMException; |
| 19431 | method public org.w3c.dom.CDATASection createCDATASection(String) throws org.w3c.dom.DOMException; |
| 19432 | method public org.w3c.dom.Comment createComment(String); |
| 19433 | method public org.w3c.dom.DocumentFragment createDocumentFragment(); |
| 19434 | method public org.w3c.dom.Element createElement(String) throws org.w3c.dom.DOMException; |
| 19435 | method public org.w3c.dom.Element createElementNS(String, String) throws org.w3c.dom.DOMException; |
| 19436 | method public org.w3c.dom.EntityReference createEntityReference(String) throws org.w3c.dom.DOMException; |
| 19437 | method public org.w3c.dom.ProcessingInstruction createProcessingInstruction(String, String) throws org.w3c.dom.DOMException; |
| 19438 | method public org.w3c.dom.Text createTextNode(String); |
| 19439 | method public org.w3c.dom.DocumentType getDoctype(); |
| 19440 | method public org.w3c.dom.Element getDocumentElement(); |
| 19441 | method public String getDocumentURI(); |
| 19442 | method public org.w3c.dom.DOMConfiguration getDomConfig(); |
| 19443 | method public org.w3c.dom.Element getElementById(String); |
| 19444 | method public org.w3c.dom.NodeList getElementsByTagName(String); |
| 19445 | method public org.w3c.dom.NodeList getElementsByTagNameNS(String, String); |
| 19446 | method public org.w3c.dom.DOMImplementation getImplementation(); |
| 19447 | method public String getInputEncoding(); |
| 19448 | method public boolean getStrictErrorChecking(); |
| 19449 | method public String getXmlEncoding(); |
| 19450 | method public boolean getXmlStandalone(); |
| 19451 | method public String getXmlVersion(); |
| 19452 | method public org.w3c.dom.Node importNode(org.w3c.dom.Node, boolean) throws org.w3c.dom.DOMException; |
| 19453 | method public void normalizeDocument(); |
| 19454 | method public org.w3c.dom.Node renameNode(org.w3c.dom.Node, String, String) throws org.w3c.dom.DOMException; |
| 19455 | method public void setDocumentURI(String); |
| 19456 | method public void setStrictErrorChecking(boolean); |
| 19457 | method public void setXmlStandalone(boolean) throws org.w3c.dom.DOMException; |
| 19458 | method public void setXmlVersion(String) throws org.w3c.dom.DOMException; |
| 19459 | } |
| 19460 | |
| 19461 | public interface DocumentFragment extends org.w3c.dom.Node { |
| 19462 | } |
| 19463 | |
| 19464 | public interface DocumentType extends org.w3c.dom.Node { |
| 19465 | method public org.w3c.dom.NamedNodeMap getEntities(); |
| 19466 | method public String getInternalSubset(); |
| 19467 | method public String getName(); |
| 19468 | method public org.w3c.dom.NamedNodeMap getNotations(); |
| 19469 | method public String getPublicId(); |
| 19470 | method public String getSystemId(); |
| 19471 | } |
| 19472 | |
| 19473 | public interface Element extends org.w3c.dom.Node { |
| 19474 | method public String getAttribute(String); |
| 19475 | method public String getAttributeNS(String, String) throws org.w3c.dom.DOMException; |
| 19476 | method public org.w3c.dom.Attr getAttributeNode(String); |
| 19477 | method public org.w3c.dom.Attr getAttributeNodeNS(String, String) throws org.w3c.dom.DOMException; |
| 19478 | method public org.w3c.dom.NodeList getElementsByTagName(String); |
| 19479 | method public org.w3c.dom.NodeList getElementsByTagNameNS(String, String) throws org.w3c.dom.DOMException; |
| 19480 | method public org.w3c.dom.TypeInfo getSchemaTypeInfo(); |
| 19481 | method public String getTagName(); |
| 19482 | method public boolean hasAttribute(String); |
| 19483 | method public boolean hasAttributeNS(String, String) throws org.w3c.dom.DOMException; |
| 19484 | method public void removeAttribute(String) throws org.w3c.dom.DOMException; |
| 19485 | method public void removeAttributeNS(String, String) throws org.w3c.dom.DOMException; |
| 19486 | method public org.w3c.dom.Attr removeAttributeNode(org.w3c.dom.Attr) throws org.w3c.dom.DOMException; |
| 19487 | method public void setAttribute(String, String) throws org.w3c.dom.DOMException; |
| 19488 | method public void setAttributeNS(String, String, String) throws org.w3c.dom.DOMException; |
| 19489 | method public org.w3c.dom.Attr setAttributeNode(org.w3c.dom.Attr) throws org.w3c.dom.DOMException; |
| 19490 | method public org.w3c.dom.Attr setAttributeNodeNS(org.w3c.dom.Attr) throws org.w3c.dom.DOMException; |
| 19491 | method public void setIdAttribute(String, boolean) throws org.w3c.dom.DOMException; |
| 19492 | method public void setIdAttributeNS(String, String, boolean) throws org.w3c.dom.DOMException; |
| 19493 | method public void setIdAttributeNode(org.w3c.dom.Attr, boolean) throws org.w3c.dom.DOMException; |
| 19494 | } |
| 19495 | |
| 19496 | public interface Entity extends org.w3c.dom.Node { |
| 19497 | method public String getInputEncoding(); |
| 19498 | method public String getNotationName(); |
| 19499 | method public String getPublicId(); |
| 19500 | method public String getSystemId(); |
| 19501 | method public String getXmlEncoding(); |
| 19502 | method public String getXmlVersion(); |
| 19503 | } |
| 19504 | |
| 19505 | public interface EntityReference extends org.w3c.dom.Node { |
| 19506 | } |
| 19507 | |
| 19508 | public interface NameList { |
| 19509 | method public boolean contains(String); |
| 19510 | method public boolean containsNS(String, String); |
| 19511 | method public int getLength(); |
| 19512 | method public String getName(int); |
| 19513 | method public String getNamespaceURI(int); |
| 19514 | } |
| 19515 | |
| 19516 | public interface NamedNodeMap { |
| 19517 | method public int getLength(); |
| 19518 | method public org.w3c.dom.Node getNamedItem(String); |
| 19519 | method public org.w3c.dom.Node getNamedItemNS(String, String) throws org.w3c.dom.DOMException; |
| 19520 | method public org.w3c.dom.Node item(int); |
| 19521 | method public org.w3c.dom.Node removeNamedItem(String) throws org.w3c.dom.DOMException; |
| 19522 | method public org.w3c.dom.Node removeNamedItemNS(String, String) throws org.w3c.dom.DOMException; |
| 19523 | method public org.w3c.dom.Node setNamedItem(org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19524 | method public org.w3c.dom.Node setNamedItemNS(org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19525 | } |
| 19526 | |
| 19527 | public interface Node { |
| 19528 | method public org.w3c.dom.Node appendChild(org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19529 | method public org.w3c.dom.Node cloneNode(boolean); |
| 19530 | method public short compareDocumentPosition(org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19531 | method public org.w3c.dom.NamedNodeMap getAttributes(); |
| 19532 | method public String getBaseURI(); |
| 19533 | method public org.w3c.dom.NodeList getChildNodes(); |
| 19534 | method public Object getFeature(String, String); |
| 19535 | method public org.w3c.dom.Node getFirstChild(); |
| 19536 | method public org.w3c.dom.Node getLastChild(); |
| 19537 | method public String getLocalName(); |
| 19538 | method public String getNamespaceURI(); |
| 19539 | method public org.w3c.dom.Node getNextSibling(); |
| 19540 | method public String getNodeName(); |
| 19541 | method public short getNodeType(); |
| 19542 | method public String getNodeValue() throws org.w3c.dom.DOMException; |
| 19543 | method public org.w3c.dom.Document getOwnerDocument(); |
| 19544 | method public org.w3c.dom.Node getParentNode(); |
| 19545 | method public String getPrefix(); |
| 19546 | method public org.w3c.dom.Node getPreviousSibling(); |
| 19547 | method public String getTextContent() throws org.w3c.dom.DOMException; |
| 19548 | method public Object getUserData(String); |
| 19549 | method public boolean hasAttributes(); |
| 19550 | method public boolean hasChildNodes(); |
| 19551 | method public org.w3c.dom.Node insertBefore(org.w3c.dom.Node, org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19552 | method public boolean isDefaultNamespace(String); |
| 19553 | method public boolean isEqualNode(org.w3c.dom.Node); |
| 19554 | method public boolean isSameNode(org.w3c.dom.Node); |
| 19555 | method public boolean isSupported(String, String); |
| 19556 | method public String lookupNamespaceURI(String); |
| 19557 | method public String lookupPrefix(String); |
| 19558 | method public void normalize(); |
| 19559 | method public org.w3c.dom.Node removeChild(org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19560 | method public org.w3c.dom.Node replaceChild(org.w3c.dom.Node, org.w3c.dom.Node) throws org.w3c.dom.DOMException; |
| 19561 | method public void setNodeValue(String) throws org.w3c.dom.DOMException; |
| 19562 | method public void setPrefix(String) throws org.w3c.dom.DOMException; |
| 19563 | method public void setTextContent(String) throws org.w3c.dom.DOMException; |
| 19564 | method public Object setUserData(String, Object, org.w3c.dom.UserDataHandler); |
| 19565 | field public static final short ATTRIBUTE_NODE = 2; // 0x2 |
| 19566 | field public static final short CDATA_SECTION_NODE = 4; // 0x4 |
| 19567 | field public static final short COMMENT_NODE = 8; // 0x8 |
| 19568 | field public static final short DOCUMENT_FRAGMENT_NODE = 11; // 0xb |
| 19569 | field public static final short DOCUMENT_NODE = 9; // 0x9 |
| 19570 | field public static final short DOCUMENT_POSITION_CONTAINED_BY = 16; // 0x10 |
| 19571 | field public static final short DOCUMENT_POSITION_CONTAINS = 8; // 0x8 |
| 19572 | field public static final short DOCUMENT_POSITION_DISCONNECTED = 1; // 0x1 |
| 19573 | field public static final short DOCUMENT_POSITION_FOLLOWING = 4; // 0x4 |
| 19574 | field public static final short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 32; // 0x20 |
| 19575 | field public static final short DOCUMENT_POSITION_PRECEDING = 2; // 0x2 |
| 19576 | field public static final short DOCUMENT_TYPE_NODE = 10; // 0xa |
| 19577 | field public static final short ELEMENT_NODE = 1; // 0x1 |
| 19578 | field public static final short ENTITY_NODE = 6; // 0x6 |
| 19579 | field public static final short ENTITY_REFERENCE_NODE = 5; // 0x5 |
| 19580 | field public static final short NOTATION_NODE = 12; // 0xc |
| 19581 | field public static final short PROCESSING_INSTRUCTION_NODE = 7; // 0x7 |
| 19582 | field public static final short TEXT_NODE = 3; // 0x3 |
| 19583 | } |
| 19584 | |
| 19585 | public interface NodeList { |
| 19586 | method public int getLength(); |
| 19587 | method public org.w3c.dom.Node item(int); |
| 19588 | } |
| 19589 | |
| 19590 | public interface Notation extends org.w3c.dom.Node { |
| 19591 | method public String getPublicId(); |
| 19592 | method public String getSystemId(); |
| 19593 | } |
| 19594 | |
| 19595 | public interface ProcessingInstruction extends org.w3c.dom.Node { |
| 19596 | method public String getData(); |
| 19597 | method public String getTarget(); |
| 19598 | method public void setData(String) throws org.w3c.dom.DOMException; |
| 19599 | } |
| 19600 | |
| 19601 | public interface Text extends org.w3c.dom.CharacterData { |
| 19602 | method public String getWholeText(); |
| 19603 | method public boolean isElementContentWhitespace(); |
| 19604 | method public org.w3c.dom.Text replaceWholeText(String) throws org.w3c.dom.DOMException; |
| 19605 | method public org.w3c.dom.Text splitText(int) throws org.w3c.dom.DOMException; |
| 19606 | } |
| 19607 | |
| 19608 | public interface TypeInfo { |
| 19609 | method public String getTypeName(); |
| 19610 | method public String getTypeNamespace(); |
| 19611 | method public boolean isDerivedFrom(String, String, int); |
| 19612 | field public static final int DERIVATION_EXTENSION = 2; // 0x2 |
| 19613 | field public static final int DERIVATION_LIST = 8; // 0x8 |
| 19614 | field public static final int DERIVATION_RESTRICTION = 1; // 0x1 |
| 19615 | field public static final int DERIVATION_UNION = 4; // 0x4 |
| 19616 | } |
| 19617 | |
| 19618 | public interface UserDataHandler { |
| 19619 | method public void handle(short, String, Object, org.w3c.dom.Node, org.w3c.dom.Node); |
| 19620 | field public static final short NODE_ADOPTED = 5; // 0x5 |
| 19621 | field public static final short NODE_CLONED = 1; // 0x1 |
| 19622 | field public static final short NODE_DELETED = 3; // 0x3 |
| 19623 | field public static final short NODE_IMPORTED = 2; // 0x2 |
| 19624 | field public static final short NODE_RENAMED = 4; // 0x4 |
| 19625 | } |
| 19626 | |
| 19627 | } |
| 19628 | |
| 19629 | package org.w3c.dom.ls { |
| 19630 | |
| 19631 | public interface DOMImplementationLS { |
| 19632 | method public org.w3c.dom.ls.LSInput createLSInput(); |
| 19633 | method public org.w3c.dom.ls.LSOutput createLSOutput(); |
| 19634 | method public org.w3c.dom.ls.LSParser createLSParser(short, String) throws org.w3c.dom.DOMException; |
| 19635 | method public org.w3c.dom.ls.LSSerializer createLSSerializer(); |
| 19636 | field public static final short MODE_ASYNCHRONOUS = 2; // 0x2 |
| 19637 | field public static final short MODE_SYNCHRONOUS = 1; // 0x1 |
| 19638 | } |
| 19639 | |
| 19640 | public class LSException extends java.lang.RuntimeException { |
| 19641 | ctor public LSException(short, String); |
| 19642 | field public static final short PARSE_ERR = 81; // 0x51 |
| 19643 | field public static final short SERIALIZE_ERR = 82; // 0x52 |
| 19644 | field public short code; |
| 19645 | } |
| 19646 | |
| 19647 | public interface LSInput { |
| 19648 | method public String getBaseURI(); |
| 19649 | method public java.io.InputStream getByteStream(); |
| 19650 | method public boolean getCertifiedText(); |
| 19651 | method public java.io.Reader getCharacterStream(); |
| 19652 | method public String getEncoding(); |
| 19653 | method public String getPublicId(); |
| 19654 | method public String getStringData(); |
| 19655 | method public String getSystemId(); |
| 19656 | method public void setBaseURI(String); |
| 19657 | method public void setByteStream(java.io.InputStream); |
| 19658 | method public void setCertifiedText(boolean); |
| 19659 | method public void setCharacterStream(java.io.Reader); |
| 19660 | method public void setEncoding(String); |
| 19661 | method public void setPublicId(String); |
| 19662 | method public void setStringData(String); |
| 19663 | method public void setSystemId(String); |
| 19664 | } |
| 19665 | |
| 19666 | public interface LSOutput { |
| 19667 | method public java.io.OutputStream getByteStream(); |
| 19668 | method public java.io.Writer getCharacterStream(); |
| 19669 | method public String getEncoding(); |
| 19670 | method public String getSystemId(); |
| 19671 | method public void setByteStream(java.io.OutputStream); |
| 19672 | method public void setCharacterStream(java.io.Writer); |
| 19673 | method public void setEncoding(String); |
| 19674 | method public void setSystemId(String); |
| 19675 | } |
| 19676 | |
| 19677 | public interface LSParser { |
| 19678 | method public void abort(); |
| 19679 | method public boolean getAsync(); |
| 19680 | method public boolean getBusy(); |
| 19681 | method public org.w3c.dom.DOMConfiguration getDomConfig(); |
| 19682 | method public org.w3c.dom.ls.LSParserFilter getFilter(); |
| 19683 | method public org.w3c.dom.Document parse(org.w3c.dom.ls.LSInput) throws org.w3c.dom.DOMException, org.w3c.dom.ls.LSException; |
| 19684 | method public org.w3c.dom.Document parseURI(String) throws org.w3c.dom.DOMException, org.w3c.dom.ls.LSException; |
| 19685 | method public org.w3c.dom.Node parseWithContext(org.w3c.dom.ls.LSInput, org.w3c.dom.Node, short) throws org.w3c.dom.DOMException, org.w3c.dom.ls.LSException; |
| 19686 | method public void setFilter(org.w3c.dom.ls.LSParserFilter); |
| 19687 | field public static final short ACTION_APPEND_AS_CHILDREN = 1; // 0x1 |
| 19688 | field public static final short ACTION_INSERT_AFTER = 4; // 0x4 |
| 19689 | field public static final short ACTION_INSERT_BEFORE = 3; // 0x3 |
| 19690 | field public static final short ACTION_REPLACE = 5; // 0x5 |
| 19691 | field public static final short ACTION_REPLACE_CHILDREN = 2; // 0x2 |
| 19692 | } |
| 19693 | |
| 19694 | public interface LSParserFilter { |
| 19695 | method public short acceptNode(org.w3c.dom.Node); |
| 19696 | method public int getWhatToShow(); |
| 19697 | method public short startElement(org.w3c.dom.Element); |
| 19698 | field public static final short FILTER_ACCEPT = 1; // 0x1 |
| 19699 | field public static final short FILTER_INTERRUPT = 4; // 0x4 |
| 19700 | field public static final short FILTER_REJECT = 2; // 0x2 |
| 19701 | field public static final short FILTER_SKIP = 3; // 0x3 |
| 19702 | } |
| 19703 | |
| 19704 | public interface LSResourceResolver { |
| 19705 | method public org.w3c.dom.ls.LSInput resolveResource(String, String, String, String, String); |
| 19706 | } |
| 19707 | |
| 19708 | public interface LSSerializer { |
| 19709 | method public org.w3c.dom.DOMConfiguration getDomConfig(); |
| 19710 | method public String getNewLine(); |
| 19711 | method public void setNewLine(String); |
| 19712 | method public boolean write(org.w3c.dom.Node, org.w3c.dom.ls.LSOutput) throws org.w3c.dom.ls.LSException; |
| 19713 | method public String writeToString(org.w3c.dom.Node) throws org.w3c.dom.DOMException, org.w3c.dom.ls.LSException; |
| 19714 | method public boolean writeToURI(org.w3c.dom.Node, String) throws org.w3c.dom.ls.LSException; |
| 19715 | } |
| 19716 | |
| 19717 | } |
| 19718 | |
| 19719 | package org.xml.sax { |
| 19720 | |
| 19721 | @Deprecated public interface AttributeList { |
| 19722 | method @Deprecated public int getLength(); |
| 19723 | method @Deprecated public String getName(int); |
| 19724 | method @Deprecated public String getType(int); |
| 19725 | method @Deprecated public String getType(String); |
| 19726 | method @Deprecated public String getValue(int); |
| 19727 | method @Deprecated public String getValue(String); |
| 19728 | } |
| 19729 | |
| 19730 | public interface Attributes { |
| 19731 | method public int getIndex(String, String); |
| 19732 | method public int getIndex(String); |
| 19733 | method public int getLength(); |
| 19734 | method public String getLocalName(int); |
| 19735 | method public String getQName(int); |
| 19736 | method public String getType(int); |
| 19737 | method public String getType(String, String); |
| 19738 | method public String getType(String); |
| 19739 | method public String getURI(int); |
| 19740 | method public String getValue(int); |
| 19741 | method public String getValue(String, String); |
| 19742 | method public String getValue(String); |
| 19743 | } |
| 19744 | |
| 19745 | public interface ContentHandler { |
| 19746 | method public void characters(char[], int, int) throws org.xml.sax.SAXException; |
| 19747 | method public void endDocument() throws org.xml.sax.SAXException; |
| 19748 | method public void endElement(String, String, String) throws org.xml.sax.SAXException; |
| 19749 | method public void endPrefixMapping(String) throws org.xml.sax.SAXException; |
| 19750 | method public void ignorableWhitespace(char[], int, int) throws org.xml.sax.SAXException; |
| 19751 | method public void processingInstruction(String, String) throws org.xml.sax.SAXException; |
| 19752 | method public void setDocumentLocator(org.xml.sax.Locator); |
| 19753 | method public void skippedEntity(String) throws org.xml.sax.SAXException; |
| 19754 | method public void startDocument() throws org.xml.sax.SAXException; |
| 19755 | method public void startElement(String, String, String, org.xml.sax.Attributes) throws org.xml.sax.SAXException; |
| 19756 | method public void startPrefixMapping(String, String) throws org.xml.sax.SAXException; |
| 19757 | } |
| 19758 | |
| 19759 | public interface DTDHandler { |
| 19760 | method public void notationDecl(String, String, String) throws org.xml.sax.SAXException; |
| 19761 | method public void unparsedEntityDecl(String, String, String, String) throws org.xml.sax.SAXException; |
| 19762 | } |
| 19763 | |
| 19764 | @Deprecated public interface DocumentHandler { |
| 19765 | method @Deprecated public void characters(char[], int, int) throws org.xml.sax.SAXException; |
| 19766 | method @Deprecated public void endDocument() throws org.xml.sax.SAXException; |
| 19767 | method @Deprecated public void endElement(String) throws org.xml.sax.SAXException; |
| 19768 | method @Deprecated public void ignorableWhitespace(char[], int, int) throws org.xml.sax.SAXException; |
| 19769 | method @Deprecated public void processingInstruction(String, String) throws org.xml.sax.SAXException; |
| 19770 | method @Deprecated public void setDocumentLocator(org.xml.sax.Locator); |
| 19771 | method @Deprecated public void startDocument() throws org.xml.sax.SAXException; |
| 19772 | method @Deprecated public void startElement(String, org.xml.sax.AttributeList) throws org.xml.sax.SAXException; |
| 19773 | } |
| 19774 | |
| 19775 | public interface EntityResolver { |
| 19776 | method public org.xml.sax.InputSource resolveEntity(String, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 19777 | } |
| 19778 | |
| 19779 | public interface ErrorHandler { |
| 19780 | method public void error(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 19781 | method public void fatalError(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 19782 | method public void warning(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 19783 | } |
| 19784 | |
| 19785 | @Deprecated public class HandlerBase implements org.xml.sax.DTDHandler org.xml.sax.DocumentHandler org.xml.sax.EntityResolver org.xml.sax.ErrorHandler { |
| 19786 | ctor @Deprecated public HandlerBase(); |
| 19787 | method @Deprecated public void characters(char[], int, int) throws org.xml.sax.SAXException; |
| 19788 | method @Deprecated public void endDocument() throws org.xml.sax.SAXException; |
| 19789 | method @Deprecated public void endElement(String) throws org.xml.sax.SAXException; |
| 19790 | method @Deprecated public void error(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 19791 | method @Deprecated public void fatalError(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 19792 | method @Deprecated public void ignorableWhitespace(char[], int, int) throws org.xml.sax.SAXException; |
| 19793 | method @Deprecated public void notationDecl(String, String, String); |
| 19794 | method @Deprecated public void processingInstruction(String, String) throws org.xml.sax.SAXException; |
| 19795 | method @Deprecated public org.xml.sax.InputSource resolveEntity(String, String) throws org.xml.sax.SAXException; |
| 19796 | method @Deprecated public void setDocumentLocator(org.xml.sax.Locator); |
| 19797 | method @Deprecated public void startDocument() throws org.xml.sax.SAXException; |
| 19798 | method @Deprecated public void startElement(String, org.xml.sax.AttributeList) throws org.xml.sax.SAXException; |
| 19799 | method @Deprecated public void unparsedEntityDecl(String, String, String, String); |
| 19800 | method @Deprecated public void warning(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 19801 | } |
| 19802 | |
| 19803 | public class InputSource { |
| 19804 | ctor public InputSource(); |
| 19805 | ctor public InputSource(String); |
| 19806 | ctor public InputSource(java.io.InputStream); |
| 19807 | ctor public InputSource(java.io.Reader); |
| 19808 | method public java.io.InputStream getByteStream(); |
| 19809 | method public java.io.Reader getCharacterStream(); |
| 19810 | method public String getEncoding(); |
| 19811 | method public String getPublicId(); |
| 19812 | method public String getSystemId(); |
| 19813 | method public void setByteStream(java.io.InputStream); |
| 19814 | method public void setCharacterStream(java.io.Reader); |
| 19815 | method public void setEncoding(String); |
| 19816 | method public void setPublicId(String); |
| 19817 | method public void setSystemId(String); |
| 19818 | } |
| 19819 | |
| 19820 | public interface Locator { |
| 19821 | method public int getColumnNumber(); |
| 19822 | method public int getLineNumber(); |
| 19823 | method public String getPublicId(); |
| 19824 | method public String getSystemId(); |
| 19825 | } |
| 19826 | |
| 19827 | @Deprecated public interface Parser { |
| 19828 | method @Deprecated public void parse(org.xml.sax.InputSource) throws java.io.IOException, org.xml.sax.SAXException; |
| 19829 | method @Deprecated public void parse(String) throws java.io.IOException, org.xml.sax.SAXException; |
| 19830 | method @Deprecated public void setDTDHandler(org.xml.sax.DTDHandler); |
| 19831 | method @Deprecated public void setDocumentHandler(org.xml.sax.DocumentHandler); |
| 19832 | method @Deprecated public void setEntityResolver(org.xml.sax.EntityResolver); |
| 19833 | method @Deprecated public void setErrorHandler(org.xml.sax.ErrorHandler); |
| 19834 | method @Deprecated public void setLocale(java.util.Locale) throws org.xml.sax.SAXException; |
| 19835 | } |
| 19836 | |
| 19837 | public class SAXException extends java.lang.Exception { |
| 19838 | ctor public SAXException(); |
| 19839 | ctor public SAXException(String); |
| 19840 | ctor public SAXException(Exception); |
| 19841 | ctor public SAXException(String, Exception); |
| 19842 | method public Exception getException(); |
| 19843 | } |
| 19844 | |
| 19845 | public class SAXNotRecognizedException extends org.xml.sax.SAXException { |
| 19846 | ctor public SAXNotRecognizedException(); |
| 19847 | ctor public SAXNotRecognizedException(String); |
| 19848 | } |
| 19849 | |
| 19850 | public class SAXNotSupportedException extends org.xml.sax.SAXException { |
| 19851 | ctor public SAXNotSupportedException(); |
| 19852 | ctor public SAXNotSupportedException(String); |
| 19853 | } |
| 19854 | |
| 19855 | public class SAXParseException extends org.xml.sax.SAXException { |
| 19856 | ctor public SAXParseException(String, org.xml.sax.Locator); |
| 19857 | ctor public SAXParseException(String, org.xml.sax.Locator, Exception); |
| 19858 | ctor public SAXParseException(String, String, String, int, int); |
| 19859 | ctor public SAXParseException(String, String, String, int, int, Exception); |
| 19860 | method public int getColumnNumber(); |
| 19861 | method public int getLineNumber(); |
| 19862 | method public String getPublicId(); |
| 19863 | method public String getSystemId(); |
| 19864 | } |
| 19865 | |
| 19866 | public interface XMLFilter extends org.xml.sax.XMLReader { |
| 19867 | method public org.xml.sax.XMLReader getParent(); |
| 19868 | method public void setParent(org.xml.sax.XMLReader); |
| 19869 | } |
| 19870 | |
| 19871 | public interface XMLReader { |
| 19872 | method public org.xml.sax.ContentHandler getContentHandler(); |
| 19873 | method public org.xml.sax.DTDHandler getDTDHandler(); |
| 19874 | method public org.xml.sax.EntityResolver getEntityResolver(); |
| 19875 | method public org.xml.sax.ErrorHandler getErrorHandler(); |
| 19876 | method public boolean getFeature(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19877 | method public Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19878 | method public void parse(org.xml.sax.InputSource) throws java.io.IOException, org.xml.sax.SAXException; |
| 19879 | method public void parse(String) throws java.io.IOException, org.xml.sax.SAXException; |
| 19880 | method public void setContentHandler(org.xml.sax.ContentHandler); |
| 19881 | method public void setDTDHandler(org.xml.sax.DTDHandler); |
| 19882 | method public void setEntityResolver(org.xml.sax.EntityResolver); |
| 19883 | method public void setErrorHandler(org.xml.sax.ErrorHandler); |
| 19884 | method public void setFeature(String, boolean) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19885 | method public void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 19886 | } |
| 19887 | |
| 19888 | } |
| 19889 | |
| 19890 | package org.xml.sax.ext { |
| 19891 | |
| 19892 | public interface Attributes2 extends org.xml.sax.Attributes { |
| 19893 | method public boolean isDeclared(int); |
| 19894 | method public boolean isDeclared(String); |
| 19895 | method public boolean isDeclared(String, String); |
| 19896 | method public boolean isSpecified(int); |
| 19897 | method public boolean isSpecified(String, String); |
| 19898 | method public boolean isSpecified(String); |
| 19899 | } |
| 19900 | |
| 19901 | public class Attributes2Impl extends org.xml.sax.helpers.AttributesImpl implements org.xml.sax.ext.Attributes2 { |
| 19902 | ctor public Attributes2Impl(); |
| 19903 | ctor public Attributes2Impl(org.xml.sax.Attributes); |
| 19904 | method public boolean isDeclared(int); |
| 19905 | method public boolean isDeclared(String, String); |
| 19906 | method public boolean isDeclared(String); |
| 19907 | method public boolean isSpecified(int); |
| 19908 | method public boolean isSpecified(String, String); |
| 19909 | method public boolean isSpecified(String); |
| 19910 | method public void setDeclared(int, boolean); |
| 19911 | method public void setSpecified(int, boolean); |
| 19912 | } |
| 19913 | |
| 19914 | public interface DeclHandler { |
| 19915 | method public void attributeDecl(String, String, String, String, String) throws org.xml.sax.SAXException; |
| 19916 | method public void elementDecl(String, String) throws org.xml.sax.SAXException; |
| 19917 | method public void externalEntityDecl(String, String, String) throws org.xml.sax.SAXException; |
| 19918 | method public void internalEntityDecl(String, String) throws org.xml.sax.SAXException; |
| 19919 | } |
| 19920 | |
| 19921 | public class DefaultHandler2 extends org.xml.sax.helpers.DefaultHandler implements org.xml.sax.ext.DeclHandler org.xml.sax.ext.EntityResolver2 org.xml.sax.ext.LexicalHandler { |
| 19922 | ctor public DefaultHandler2(); |
| 19923 | method public void attributeDecl(String, String, String, String, String) throws org.xml.sax.SAXException; |
| 19924 | method public void comment(char[], int, int) throws org.xml.sax.SAXException; |
| 19925 | method public void elementDecl(String, String) throws org.xml.sax.SAXException; |
| 19926 | method public void endCDATA() throws org.xml.sax.SAXException; |
| 19927 | method public void endDTD() throws org.xml.sax.SAXException; |
| 19928 | method public void endEntity(String) throws org.xml.sax.SAXException; |
| 19929 | method public void externalEntityDecl(String, String, String) throws org.xml.sax.SAXException; |
| 19930 | method public org.xml.sax.InputSource getExternalSubset(String, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 19931 | method public void internalEntityDecl(String, String) throws org.xml.sax.SAXException; |
| 19932 | method public org.xml.sax.InputSource resolveEntity(String, String, String, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 19933 | method public void startCDATA() throws org.xml.sax.SAXException; |
| 19934 | method public void startDTD(String, String, String) throws org.xml.sax.SAXException; |
| 19935 | method public void startEntity(String) throws org.xml.sax.SAXException; |
| 19936 | } |
| 19937 | |
| 19938 | public interface EntityResolver2 extends org.xml.sax.EntityResolver { |
| 19939 | method public org.xml.sax.InputSource getExternalSubset(String, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 19940 | method public org.xml.sax.InputSource resolveEntity(String, String, String, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 19941 | } |
| 19942 | |
| 19943 | public interface LexicalHandler { |
| 19944 | method public void comment(char[], int, int) throws org.xml.sax.SAXException; |
| 19945 | method public void endCDATA() throws org.xml.sax.SAXException; |
| 19946 | method public void endDTD() throws org.xml.sax.SAXException; |
| 19947 | method public void endEntity(String) throws org.xml.sax.SAXException; |
| 19948 | method public void startCDATA() throws org.xml.sax.SAXException; |
| 19949 | method public void startDTD(String, String, String) throws org.xml.sax.SAXException; |
| 19950 | method public void startEntity(String) throws org.xml.sax.SAXException; |
| 19951 | } |
| 19952 | |
| 19953 | public interface Locator2 extends org.xml.sax.Locator { |
| 19954 | method public String getEncoding(); |
| 19955 | method public String getXMLVersion(); |
| 19956 | } |
| 19957 | |
| 19958 | public class Locator2Impl extends org.xml.sax.helpers.LocatorImpl implements org.xml.sax.ext.Locator2 { |
| 19959 | ctor public Locator2Impl(); |
| 19960 | ctor public Locator2Impl(org.xml.sax.Locator); |
| 19961 | method public String getEncoding(); |
| 19962 | method public String getXMLVersion(); |
| 19963 | method public void setEncoding(String); |
| 19964 | method public void setXMLVersion(String); |
| 19965 | } |
| 19966 | |
| 19967 | } |
| 19968 | |
| 19969 | package org.xml.sax.helpers { |
| 19970 | |
| 19971 | @Deprecated public class AttributeListImpl implements org.xml.sax.AttributeList { |
| 19972 | ctor @Deprecated public AttributeListImpl(); |
| 19973 | ctor @Deprecated public AttributeListImpl(org.xml.sax.AttributeList); |
| 19974 | method @Deprecated public void addAttribute(String, String, String); |
| 19975 | method @Deprecated public void clear(); |
| 19976 | method @Deprecated public int getLength(); |
| 19977 | method @Deprecated public String getName(int); |
| 19978 | method @Deprecated public String getType(int); |
| 19979 | method @Deprecated public String getType(String); |
| 19980 | method @Deprecated public String getValue(int); |
| 19981 | method @Deprecated public String getValue(String); |
| 19982 | method @Deprecated public void removeAttribute(String); |
| 19983 | method @Deprecated public void setAttributeList(org.xml.sax.AttributeList); |
| 19984 | } |
| 19985 | |
| 19986 | public class AttributesImpl implements org.xml.sax.Attributes { |
| 19987 | ctor public AttributesImpl(); |
| 19988 | ctor public AttributesImpl(org.xml.sax.Attributes); |
| 19989 | method public void addAttribute(String, String, String, String, String); |
| 19990 | method public void clear(); |
| 19991 | method public int getIndex(String, String); |
| 19992 | method public int getIndex(String); |
| 19993 | method public int getLength(); |
| 19994 | method public String getLocalName(int); |
| 19995 | method public String getQName(int); |
| 19996 | method public String getType(int); |
| 19997 | method public String getType(String, String); |
| 19998 | method public String getType(String); |
| 19999 | method public String getURI(int); |
| 20000 | method public String getValue(int); |
| 20001 | method public String getValue(String, String); |
| 20002 | method public String getValue(String); |
| 20003 | method public void removeAttribute(int); |
| 20004 | method public void setAttribute(int, String, String, String, String, String); |
| 20005 | method public void setAttributes(org.xml.sax.Attributes); |
| 20006 | method public void setLocalName(int, String); |
| 20007 | method public void setQName(int, String); |
| 20008 | method public void setType(int, String); |
| 20009 | method public void setURI(int, String); |
| 20010 | method public void setValue(int, String); |
| 20011 | } |
| 20012 | |
| 20013 | public class DefaultHandler implements org.xml.sax.ContentHandler org.xml.sax.DTDHandler org.xml.sax.EntityResolver org.xml.sax.ErrorHandler { |
| 20014 | ctor public DefaultHandler(); |
| 20015 | method public void characters(char[], int, int) throws org.xml.sax.SAXException; |
| 20016 | method public void endDocument() throws org.xml.sax.SAXException; |
| 20017 | method public void endElement(String, String, String) throws org.xml.sax.SAXException; |
| 20018 | method public void endPrefixMapping(String) throws org.xml.sax.SAXException; |
| 20019 | method public void error(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 20020 | method public void fatalError(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 20021 | method public void ignorableWhitespace(char[], int, int) throws org.xml.sax.SAXException; |
| 20022 | method public void notationDecl(String, String, String) throws org.xml.sax.SAXException; |
| 20023 | method public void processingInstruction(String, String) throws org.xml.sax.SAXException; |
| 20024 | method public org.xml.sax.InputSource resolveEntity(String, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 20025 | method public void setDocumentLocator(org.xml.sax.Locator); |
| 20026 | method public void skippedEntity(String) throws org.xml.sax.SAXException; |
| 20027 | method public void startDocument() throws org.xml.sax.SAXException; |
| 20028 | method public void startElement(String, String, String, org.xml.sax.Attributes) throws org.xml.sax.SAXException; |
| 20029 | method public void startPrefixMapping(String, String) throws org.xml.sax.SAXException; |
| 20030 | method public void unparsedEntityDecl(String, String, String, String) throws org.xml.sax.SAXException; |
| 20031 | method public void warning(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 20032 | } |
| 20033 | |
| 20034 | public class LocatorImpl implements org.xml.sax.Locator { |
| 20035 | ctor public LocatorImpl(); |
| 20036 | ctor public LocatorImpl(org.xml.sax.Locator); |
| 20037 | method public int getColumnNumber(); |
| 20038 | method public int getLineNumber(); |
| 20039 | method public String getPublicId(); |
| 20040 | method public String getSystemId(); |
| 20041 | method public void setColumnNumber(int); |
| 20042 | method public void setLineNumber(int); |
| 20043 | method public void setPublicId(String); |
| 20044 | method public void setSystemId(String); |
| 20045 | } |
| 20046 | |
| 20047 | public class NamespaceSupport { |
| 20048 | ctor public NamespaceSupport(); |
| 20049 | method public boolean declarePrefix(String, String); |
| 20050 | method public java.util.Enumeration getDeclaredPrefixes(); |
| 20051 | method public String getPrefix(String); |
| 20052 | method public java.util.Enumeration getPrefixes(); |
| 20053 | method public java.util.Enumeration getPrefixes(String); |
| 20054 | method public String getURI(String); |
| 20055 | method public boolean isNamespaceDeclUris(); |
| 20056 | method public void popContext(); |
| 20057 | method public String[] processName(String, String[], boolean); |
| 20058 | method public void pushContext(); |
| 20059 | method public void reset(); |
| 20060 | method public void setNamespaceDeclUris(boolean); |
| 20061 | field public static final String NSDECL = "http://www.w3.org/xmlns/2000/"; |
| 20062 | field public static final String XMLNS = "http://www.w3.org/XML/1998/namespace"; |
| 20063 | } |
| 20064 | |
| 20065 | public class ParserAdapter implements org.xml.sax.DocumentHandler org.xml.sax.XMLReader { |
| 20066 | ctor public ParserAdapter() throws org.xml.sax.SAXException; |
| 20067 | ctor public ParserAdapter(org.xml.sax.Parser); |
| 20068 | method public void characters(char[], int, int) throws org.xml.sax.SAXException; |
| 20069 | method public void endDocument() throws org.xml.sax.SAXException; |
| 20070 | method public void endElement(String) throws org.xml.sax.SAXException; |
| 20071 | method public org.xml.sax.ContentHandler getContentHandler(); |
| 20072 | method public org.xml.sax.DTDHandler getDTDHandler(); |
| 20073 | method public org.xml.sax.EntityResolver getEntityResolver(); |
| 20074 | method public org.xml.sax.ErrorHandler getErrorHandler(); |
| 20075 | method public boolean getFeature(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20076 | method public Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20077 | method public void ignorableWhitespace(char[], int, int) throws org.xml.sax.SAXException; |
| 20078 | method public void parse(String) throws java.io.IOException, org.xml.sax.SAXException; |
| 20079 | method public void parse(org.xml.sax.InputSource) throws java.io.IOException, org.xml.sax.SAXException; |
| 20080 | method public void processingInstruction(String, String) throws org.xml.sax.SAXException; |
| 20081 | method public void setContentHandler(org.xml.sax.ContentHandler); |
| 20082 | method public void setDTDHandler(org.xml.sax.DTDHandler); |
| 20083 | method public void setDocumentLocator(org.xml.sax.Locator); |
| 20084 | method public void setEntityResolver(org.xml.sax.EntityResolver); |
| 20085 | method public void setErrorHandler(org.xml.sax.ErrorHandler); |
| 20086 | method public void setFeature(String, boolean) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20087 | method public void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20088 | method public void startDocument() throws org.xml.sax.SAXException; |
| 20089 | method public void startElement(String, org.xml.sax.AttributeList) throws org.xml.sax.SAXException; |
| 20090 | } |
| 20091 | |
| 20092 | @Deprecated public class ParserFactory { |
| 20093 | method @Deprecated public static org.xml.sax.Parser makeParser() throws java.lang.ClassCastException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, java.lang.NullPointerException; |
| 20094 | method @Deprecated public static org.xml.sax.Parser makeParser(String) throws java.lang.ClassCastException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException; |
| 20095 | } |
| 20096 | |
| 20097 | public class XMLFilterImpl implements org.xml.sax.ContentHandler org.xml.sax.DTDHandler org.xml.sax.EntityResolver org.xml.sax.ErrorHandler org.xml.sax.XMLFilter { |
| 20098 | ctor public XMLFilterImpl(); |
| 20099 | ctor public XMLFilterImpl(org.xml.sax.XMLReader); |
| 20100 | method public void characters(char[], int, int) throws org.xml.sax.SAXException; |
| 20101 | method public void endDocument() throws org.xml.sax.SAXException; |
| 20102 | method public void endElement(String, String, String) throws org.xml.sax.SAXException; |
| 20103 | method public void endPrefixMapping(String) throws org.xml.sax.SAXException; |
| 20104 | method public void error(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 20105 | method public void fatalError(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 20106 | method public org.xml.sax.ContentHandler getContentHandler(); |
| 20107 | method public org.xml.sax.DTDHandler getDTDHandler(); |
| 20108 | method public org.xml.sax.EntityResolver getEntityResolver(); |
| 20109 | method public org.xml.sax.ErrorHandler getErrorHandler(); |
| 20110 | method public boolean getFeature(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20111 | method public org.xml.sax.XMLReader getParent(); |
| 20112 | method public Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20113 | method public void ignorableWhitespace(char[], int, int) throws org.xml.sax.SAXException; |
| 20114 | method public void notationDecl(String, String, String) throws org.xml.sax.SAXException; |
| 20115 | method public void parse(org.xml.sax.InputSource) throws java.io.IOException, org.xml.sax.SAXException; |
| 20116 | method public void parse(String) throws java.io.IOException, org.xml.sax.SAXException; |
| 20117 | method public void processingInstruction(String, String) throws org.xml.sax.SAXException; |
| 20118 | method public org.xml.sax.InputSource resolveEntity(String, String) throws java.io.IOException, org.xml.sax.SAXException; |
| 20119 | method public void setContentHandler(org.xml.sax.ContentHandler); |
| 20120 | method public void setDTDHandler(org.xml.sax.DTDHandler); |
| 20121 | method public void setDocumentLocator(org.xml.sax.Locator); |
| 20122 | method public void setEntityResolver(org.xml.sax.EntityResolver); |
| 20123 | method public void setErrorHandler(org.xml.sax.ErrorHandler); |
| 20124 | method public void setFeature(String, boolean) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20125 | method public void setParent(org.xml.sax.XMLReader); |
| 20126 | method public void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20127 | method public void skippedEntity(String) throws org.xml.sax.SAXException; |
| 20128 | method public void startDocument() throws org.xml.sax.SAXException; |
| 20129 | method public void startElement(String, String, String, org.xml.sax.Attributes) throws org.xml.sax.SAXException; |
| 20130 | method public void startPrefixMapping(String, String) throws org.xml.sax.SAXException; |
| 20131 | method public void unparsedEntityDecl(String, String, String, String) throws org.xml.sax.SAXException; |
| 20132 | method public void warning(org.xml.sax.SAXParseException) throws org.xml.sax.SAXException; |
| 20133 | } |
| 20134 | |
| 20135 | public class XMLReaderAdapter implements org.xml.sax.ContentHandler org.xml.sax.Parser { |
| 20136 | ctor public XMLReaderAdapter() throws org.xml.sax.SAXException; |
| 20137 | ctor public XMLReaderAdapter(org.xml.sax.XMLReader); |
| 20138 | method public void characters(char[], int, int) throws org.xml.sax.SAXException; |
| 20139 | method public void endDocument() throws org.xml.sax.SAXException; |
| 20140 | method public void endElement(String, String, String) throws org.xml.sax.SAXException; |
| 20141 | method public void endPrefixMapping(String); |
| 20142 | method public void ignorableWhitespace(char[], int, int) throws org.xml.sax.SAXException; |
| 20143 | method public void parse(String) throws java.io.IOException, org.xml.sax.SAXException; |
| 20144 | method public void parse(org.xml.sax.InputSource) throws java.io.IOException, org.xml.sax.SAXException; |
| 20145 | method public void processingInstruction(String, String) throws org.xml.sax.SAXException; |
| 20146 | method public void setDTDHandler(org.xml.sax.DTDHandler); |
| 20147 | method public void setDocumentHandler(org.xml.sax.DocumentHandler); |
| 20148 | method public void setDocumentLocator(org.xml.sax.Locator); |
| 20149 | method public void setEntityResolver(org.xml.sax.EntityResolver); |
| 20150 | method public void setErrorHandler(org.xml.sax.ErrorHandler); |
| 20151 | method public void setLocale(java.util.Locale) throws org.xml.sax.SAXException; |
| 20152 | method public void skippedEntity(String) throws org.xml.sax.SAXException; |
| 20153 | method public void startDocument() throws org.xml.sax.SAXException; |
| 20154 | method public void startElement(String, String, String, org.xml.sax.Attributes) throws org.xml.sax.SAXException; |
| 20155 | method public void startPrefixMapping(String, String); |
| 20156 | } |
| 20157 | |
| 20158 | public final class XMLReaderFactory { |
| 20159 | method public static org.xml.sax.XMLReader createXMLReader() throws org.xml.sax.SAXException; |
| 20160 | method public static org.xml.sax.XMLReader createXMLReader(String) throws org.xml.sax.SAXException; |
| 20161 | } |
| 20162 | |
| 20163 | } |
| 20164 | |
| 20165 | package org.xmlpull.v1 { |
| 20166 | |
| 20167 | public interface XmlPullParser { |
| 20168 | method public void defineEntityReplacementText(String, String) throws org.xmlpull.v1.XmlPullParserException; |
| 20169 | method public int getAttributeCount(); |
| 20170 | method public String getAttributeName(int); |
| 20171 | method public String getAttributeNamespace(int); |
| 20172 | method public String getAttributePrefix(int); |
| 20173 | method public String getAttributeType(int); |
| 20174 | method public String getAttributeValue(int); |
| 20175 | method public String getAttributeValue(String, String); |
| 20176 | method public int getColumnNumber(); |
| 20177 | method public int getDepth(); |
| 20178 | method public int getEventType() throws org.xmlpull.v1.XmlPullParserException; |
| 20179 | method public boolean getFeature(String); |
| 20180 | method public String getInputEncoding(); |
| 20181 | method public int getLineNumber(); |
| 20182 | method public String getName(); |
| 20183 | method public String getNamespace(String); |
| 20184 | method public String getNamespace(); |
| 20185 | method public int getNamespaceCount(int) throws org.xmlpull.v1.XmlPullParserException; |
| 20186 | method public String getNamespacePrefix(int) throws org.xmlpull.v1.XmlPullParserException; |
| 20187 | method public String getNamespaceUri(int) throws org.xmlpull.v1.XmlPullParserException; |
| 20188 | method public String getPositionDescription(); |
| 20189 | method public String getPrefix(); |
| 20190 | method public Object getProperty(String); |
| 20191 | method public String getText(); |
| 20192 | method public char[] getTextCharacters(int[]); |
| 20193 | method public boolean isAttributeDefault(int); |
| 20194 | method public boolean isEmptyElementTag() throws org.xmlpull.v1.XmlPullParserException; |
| 20195 | method public boolean isWhitespace() throws org.xmlpull.v1.XmlPullParserException; |
| 20196 | method public int next() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 20197 | method public int nextTag() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 20198 | method public String nextText() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 20199 | method public int nextToken() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 20200 | method public void require(int, String, String) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 20201 | method public void setFeature(String, boolean) throws org.xmlpull.v1.XmlPullParserException; |
| 20202 | method public void setInput(java.io.Reader) throws org.xmlpull.v1.XmlPullParserException; |
| 20203 | method public void setInput(java.io.InputStream, String) throws org.xmlpull.v1.XmlPullParserException; |
| 20204 | method public void setProperty(String, Object) throws org.xmlpull.v1.XmlPullParserException; |
| 20205 | field public static final int CDSECT = 5; // 0x5 |
| 20206 | field public static final int COMMENT = 9; // 0x9 |
| 20207 | field public static final int DOCDECL = 10; // 0xa |
| 20208 | field public static final int END_DOCUMENT = 1; // 0x1 |
| 20209 | field public static final int END_TAG = 3; // 0x3 |
| 20210 | field public static final int ENTITY_REF = 6; // 0x6 |
| 20211 | field public static final String FEATURE_PROCESS_DOCDECL = "http://xmlpull.org/v1/doc/features.html#process-docdecl"; |
| 20212 | field public static final String FEATURE_PROCESS_NAMESPACES = "http://xmlpull.org/v1/doc/features.html#process-namespaces"; |
| 20213 | field public static final String FEATURE_REPORT_NAMESPACE_ATTRIBUTES = "http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes"; |
| 20214 | field public static final String FEATURE_VALIDATION = "http://xmlpull.org/v1/doc/features.html#validation"; |
| 20215 | field public static final int IGNORABLE_WHITESPACE = 7; // 0x7 |
| 20216 | field public static final String NO_NAMESPACE = ""; |
| 20217 | field public static final int PROCESSING_INSTRUCTION = 8; // 0x8 |
| 20218 | field public static final int START_DOCUMENT = 0; // 0x0 |
| 20219 | field public static final int START_TAG = 2; // 0x2 |
| 20220 | field public static final int TEXT = 4; // 0x4 |
| 20221 | field public static final String[] TYPES; |
| 20222 | } |
| 20223 | |
| 20224 | public class XmlPullParserException extends java.lang.Exception { |
| 20225 | ctor public XmlPullParserException(String); |
| 20226 | ctor public XmlPullParserException(String, org.xmlpull.v1.XmlPullParser, Throwable); |
| 20227 | method public int getColumnNumber(); |
| 20228 | method public Throwable getDetail(); |
| 20229 | method public int getLineNumber(); |
| 20230 | field protected int column; |
| 20231 | field protected Throwable detail; |
| 20232 | field protected int row; |
| 20233 | } |
| 20234 | |
| 20235 | public class XmlPullParserFactory { |
| 20236 | ctor protected XmlPullParserFactory(); |
| 20237 | method public boolean getFeature(String); |
| 20238 | method public boolean isNamespaceAware(); |
| 20239 | method public boolean isValidating(); |
| 20240 | method public static org.xmlpull.v1.XmlPullParserFactory newInstance() throws org.xmlpull.v1.XmlPullParserException; |
| 20241 | method public static org.xmlpull.v1.XmlPullParserFactory newInstance(String, Class) throws org.xmlpull.v1.XmlPullParserException; |
| 20242 | method public org.xmlpull.v1.XmlPullParser newPullParser() throws org.xmlpull.v1.XmlPullParserException; |
| 20243 | method public org.xmlpull.v1.XmlSerializer newSerializer() throws org.xmlpull.v1.XmlPullParserException; |
| 20244 | method public void setFeature(String, boolean) throws org.xmlpull.v1.XmlPullParserException; |
| 20245 | method public void setNamespaceAware(boolean); |
| 20246 | method public void setValidating(boolean); |
| 20247 | field public static final String PROPERTY_NAME = "org.xmlpull.v1.XmlPullParserFactory"; |
| 20248 | field protected String classNamesLocation; |
| 20249 | field protected java.util.HashMap<java.lang.String,java.lang.Boolean> features; |
| 20250 | field protected java.util.ArrayList parserClasses; |
| 20251 | field protected java.util.ArrayList serializerClasses; |
| 20252 | } |
| 20253 | |
| 20254 | public interface XmlSerializer { |
| 20255 | method public org.xmlpull.v1.XmlSerializer attribute(String, String, String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20256 | method public void cdsect(String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20257 | method public void comment(String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20258 | method public void docdecl(String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20259 | method public void endDocument() throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20260 | method public org.xmlpull.v1.XmlSerializer endTag(String, String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20261 | method public void entityRef(String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20262 | method public void flush() throws java.io.IOException; |
| 20263 | method public int getDepth(); |
| 20264 | method public boolean getFeature(String); |
| 20265 | method public String getName(); |
| 20266 | method public String getNamespace(); |
| 20267 | method public String getPrefix(String, boolean) throws java.lang.IllegalArgumentException; |
| 20268 | method public Object getProperty(String); |
| 20269 | method public void ignorableWhitespace(String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20270 | method public void processingInstruction(String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20271 | method public void setFeature(String, boolean) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20272 | method public void setOutput(java.io.OutputStream, String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20273 | method public void setOutput(java.io.Writer) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20274 | method public void setPrefix(String, String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20275 | method public void setProperty(String, Object) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20276 | method public void startDocument(String, Boolean) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20277 | method public org.xmlpull.v1.XmlSerializer startTag(String, String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20278 | method public org.xmlpull.v1.XmlSerializer text(String) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20279 | method public org.xmlpull.v1.XmlSerializer text(char[], int, int) throws java.io.IOException, java.lang.IllegalArgumentException, java.lang.IllegalStateException; |
| 20280 | } |
| 20281 | |
| 20282 | } |
| 20283 | |
| 20284 | package org.xmlpull.v1.sax2 { |
| 20285 | |
| 20286 | public class Driver implements org.xml.sax.Attributes org.xml.sax.Locator org.xml.sax.XMLReader { |
| 20287 | ctor public Driver() throws org.xmlpull.v1.XmlPullParserException; |
| 20288 | ctor public Driver(org.xmlpull.v1.XmlPullParser) throws org.xmlpull.v1.XmlPullParserException; |
| 20289 | method public int getColumnNumber(); |
| 20290 | method public org.xml.sax.ContentHandler getContentHandler(); |
| 20291 | method public org.xml.sax.DTDHandler getDTDHandler(); |
| 20292 | method public org.xml.sax.EntityResolver getEntityResolver(); |
| 20293 | method public org.xml.sax.ErrorHandler getErrorHandler(); |
| 20294 | method public boolean getFeature(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20295 | method public int getIndex(String, String); |
| 20296 | method public int getIndex(String); |
| 20297 | method public int getLength(); |
| 20298 | method public int getLineNumber(); |
| 20299 | method public String getLocalName(int); |
| 20300 | method public Object getProperty(String) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20301 | method public String getPublicId(); |
| 20302 | method public String getQName(int); |
| 20303 | method public String getSystemId(); |
| 20304 | method public String getType(int); |
| 20305 | method public String getType(String, String); |
| 20306 | method public String getType(String); |
| 20307 | method public String getURI(int); |
| 20308 | method public String getValue(int); |
| 20309 | method public String getValue(String, String); |
| 20310 | method public String getValue(String); |
| 20311 | method public void parse(org.xml.sax.InputSource) throws java.io.IOException, org.xml.sax.SAXException; |
| 20312 | method public void parse(String) throws java.io.IOException, org.xml.sax.SAXException; |
| 20313 | method public void parseSubTree(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xml.sax.SAXException; |
| 20314 | method public void setContentHandler(org.xml.sax.ContentHandler); |
| 20315 | method public void setDTDHandler(org.xml.sax.DTDHandler); |
| 20316 | method public void setEntityResolver(org.xml.sax.EntityResolver); |
| 20317 | method public void setErrorHandler(org.xml.sax.ErrorHandler); |
| 20318 | method public void setFeature(String, boolean) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20319 | method public void setProperty(String, Object) throws org.xml.sax.SAXNotRecognizedException, org.xml.sax.SAXNotSupportedException; |
| 20320 | method protected void startElement(String, String, String) throws org.xml.sax.SAXException; |
| 20321 | field protected static final String APACHE_DYNAMIC_VALIDATION_FEATURE = "http://apache.org/xml/features/validation/dynamic"; |
| 20322 | field protected static final String APACHE_SCHEMA_VALIDATION_FEATURE = "http://apache.org/xml/features/validation/schema"; |
| 20323 | field protected static final String DECLARATION_HANDLER_PROPERTY = "http://xml.org/sax/properties/declaration-handler"; |
| 20324 | field protected static final String LEXICAL_HANDLER_PROPERTY = "http://xml.org/sax/properties/lexical-handler"; |
| 20325 | field protected static final String NAMESPACES_FEATURE = "http://xml.org/sax/features/namespaces"; |
| 20326 | field protected static final String NAMESPACE_PREFIXES_FEATURE = "http://xml.org/sax/features/namespace-prefixes"; |
| 20327 | field protected static final String VALIDATION_FEATURE = "http://xml.org/sax/features/validation"; |
| 20328 | field protected org.xml.sax.ContentHandler contentHandler; |
| 20329 | field protected org.xml.sax.ErrorHandler errorHandler; |
| 20330 | field protected org.xmlpull.v1.XmlPullParser pp; |
| 20331 | field protected String systemId; |
| 20332 | } |
| 20333 | |
| 20334 | } |
| 20335 | |