Uses of Class
com.google.j2objc.annotations.J2ObjCIncompatible
-
Packages that use J2ObjCIncompatible Package Description com.google.common.base Basic utility libraries and interfaces.com.google.common.cache This package contains caching utilities.com.google.common.io This package contains utility methods and classes for working with Java I/O; for example input streams, output streams, readers, writers, and files. -
-
Uses of J2ObjCIncompatible in com.google.common.base
Methods in com.google.common.base with annotations of type J2ObjCIncompatible Modifier and Type Method Description java.time.Duration
Stopwatch. elapsed()
Returns the current elapsed time shown on this stopwatch as aDuration
. -
Uses of J2ObjCIncompatible in com.google.common.cache
Methods in com.google.common.cache with annotations of type J2ObjCIncompatible Modifier and Type Method Description CacheBuilder<K,V>
CacheBuilder. expireAfterAccess(java.time.Duration duration)
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, the most recent replacement of its value, or its last access.CacheBuilder<K,V>
CacheBuilder. expireAfterWrite(java.time.Duration duration)
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.CacheBuilder<K,V>
CacheBuilder. refreshAfterWrite(java.time.Duration duration)
Specifies that active entries are eligible for automatic refresh once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value. -
Uses of J2ObjCIncompatible in com.google.common.io
Classes in com.google.common.io with annotations of type J2ObjCIncompatible Modifier and Type Class Description class
InsecureRecursiveDeleteException
Exception indicating that a recursive delete can't be performed because the file system does not have the support necessary to guarantee that it is not vulnerable to race conditions that would allow it to delete files and directories outside of the directory being deleted (i.e.,SecureDirectoryStream
is not supported).class
MoreFiles
Static utilities for use withPath
instances, intended to complementFiles
.class
RecursiveDeleteOption
Options for use with recursive delete methods (MoreFiles.deleteRecursively(java.nio.file.Path, com.google.common.io.RecursiveDeleteOption...)
andMoreFiles.deleteDirectoryContents(java.nio.file.Path, com.google.common.io.RecursiveDeleteOption...)
).
-