Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Annotation Type
java.lang.SuppressWarnings
Packages that use SuppressWarnings
Provides for system input and output through data streams, serialization and the file system.
Provides classes that are fundamental to the design of the Java programming language.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
Provides classes and interfaces that deal with editable and noneditable text components.
Provides the class HTMLEditorKit and supporting classes for creating HTML text editors.
Allows developers to provide support for undo/redo in applications such as text editors.
Classes in java.io with annotations of type SuppressWarnings
static class
A utility class to set and get the JVM-wide deserialization filter factory, the static JVM-wide filter, or to create a filter from a pattern string.
Methods in java.io with annotations of type SuppressWarnings
void
BufferedWriter.close()
Closes the stream, flushing it first.
int
LineNumberInputStream.read()
Reads the next byte of data from this input stream.
int
LineNumberReader.read()
Read a single character.
int
LineNumberReader.read(char[] cbuf, int off, int len)
Reads characters into a portion of an array.
ObjectStreamClass.forClass()
Return the class in the local VM that this version is mapped to.
long
ObjectStreamClass.getSerialVersionUID()
Return the serialVersionUID for this class.
ObjectStreamField.getType()
Get the type of the field.
final void
RandomAccessFile.writeBytes(String s)
Writes the string to the file as a sequence of bytes.
int
StringBufferInputStream.read(byte[] b, int off, int len)
Reads up to len bytes of data from this input stream into an array of bytes.
Classes in java.lang with annotations of type SuppressWarnings
abstract class
Enum<E extends Enum<E>>
This is the common base class of all Java language enumeration classes.
class
Thrown when an application tries to access an enum constant by name and the enum type contains no constant with the specified name.
Fields in java.lang with annotations of type SuppressWarnings
static final Class<Boolean>
Boolean.TYPE
The Class object representing the primitive type boolean.
static final Class<Byte>
Byte.TYPE
The Class instance representing the primitive type byte.
static final Class<Character>
Character.TYPE
The Class instance representing the primitive type char.
static final Class<Double>
Double.TYPE
The Class instance representing the primitive type double.
static final Class<Float>
Float.TYPE
The Class instance representing the primitive type float.
static final Class<Integer>
Integer.TYPE
The Class instance representing the primitive type int.
static final Class<Long>
Long.TYPE
The Class instance representing the primitive type long.
static final Class<Short>
Short.TYPE
The Class instance representing the primitive type short.
static final Class<Void>
Void.TYPE
The Class object representing the pseudo-type corresponding to the keyword void.
Methods in java.lang with annotations of type SuppressWarnings
static int
CharSequence.compare(CharSequence cs1, CharSequence cs2)
Compares two CharSequence instances lexicographically.
<U> Class<? extends U>
Class.asSubclass(Class<U> clazz)
Casts this Class object to represent a subclass of the class represented by the specified class object.
Class.cast(Object obj)
Casts an object to the class or interface represented by this Class object.
static Class<?>
Class.forName(Module module, String name)
Returns the Class with the given binary name in the given module.
<A extends AnnotationA
Class.getAnnotation(Class<A> annotationClass)
Returns this element's annotation for the specified type if such an annotation is present, else null.
Class<?>[]
Class.getClasses()
Returns an array containing Class objects representing all the public classes and interfaces that are members of the class represented by this Class object.
<A extends AnnotationA
Class.getDeclaredAnnotation(Class<A> annotationClass)
Returns this element's annotation for the specified type if such an annotation is directly present, else null.
Returns an array of TypeVariable objects that represent the type variables declared by the generic declaration represented by this GenericDeclaration object, in declaration order.
Class.newInstance()
Deprecated. This method propagates any exception thrown by the nullary constructor, including a checked exception.
protected final void
Enum.finalize()
enum classes cannot have finalize methods.
final Class<E>
Returns the Class object corresponding to this enum constant's enum type.
Resolves this descriptor reflectively, emulating the resolution behavior of JVMS 5.4.3 and the access control behavior of JVMS 5.4.4.
static Package
Package.getPackage(String name)
Deprecated. If multiple class loaders delegate to each other and define classes with the same package name, and one such loader relies on the lookup behavior of getPackage to return a Package from a parent loader, then the properties exposed by the Package may not be as expected in the rest of the program.
void
SecurityManager.checkPermission(Permission perm)
Throws a SecurityException if the requested access, specified by the given permission, is not permitted based on the security policy currently in effect.
void
SecurityManager.checkPermission(Permission perm, Object context)
Throws a SecurityException if the specified security context is denied access to the resource specified by the given permission.
SecurityManager.getSecurityContext()
Creates an object that encapsulates the current execution environment.
System.getLogger(String name, ResourceBundle bundle)
Returns a localizable instance of Logger for the caller's use.
Deprecated, for removal. This method is only useful in conjunction with the Security Manager, which is deprecated and subject to removal in a future release.
final void
ThreadGroup.resume()
Deprecated, for removal. This method is used solely in conjunction with Thread.suspend and ThreadGroup.suspend, both of which have been deprecated, as they are inherently deadlock-prone.
final void
ThreadGroup.suspend()
Deprecated, for removal. This method is inherently deadlock-prone.
Method parameters in java.lang with annotations of type SuppressWarnings
static void
Deprecated, for removal. This method is only useful in conjunction with the Security Manager, which is deprecated and subject to removal in a future release.
Constructors in java.lang with annotations of type SuppressWarnings
String(byte[] bytes, int offset, int length, Charset charset)
Constructs a new String by decoding the specified subarray of bytes using the specified charset.
Classes in java.util with annotations of type SuppressWarnings
class
Represents a currency.
class
An unbounded priority queue based on a priority heap.
class
An instance of this class is used to generate a stream of pseudorandom numbers; its period is only 248.
Fields in java.util with annotations of type SuppressWarnings
protected boolean
Calendar.areFieldsSet
True if fields[] are in sync with the currently set time.
protected int[]
Calendar.fields
The calendar field values for the currently set time for this calendar.
protected boolean[]
Calendar.isSet
The flags which tell if a specified calendar field for the calendar is set.
protected boolean
Calendar.isTimeSet
True if then the value of time is valid.
protected long
Calendar.time
The currently set time for this calendar, expressed in milliseconds after January 1, 1970, 0:00:00 GMT.
static final List
Collections.EMPTY_LIST
The empty list (immutable).
static final Map
Collections.EMPTY_MAP
The empty map (immutable).
static final Set
Collections.EMPTY_SET
The empty set (immutable).
protected Object[]
The array buffer into which the components of the vector are stored.
Methods in java.util with annotations of type SuppressWarnings
<TT[]
AbstractCollection.toArray(T[] a)
Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.
<TT[]
ArrayDeque.toArray(T[] a)
Returns an array containing all of the elements in this deque in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.
void
ArrayList.sort(Comparator<? super E> c)
Sorts this list according to the order induced by the specified Comparator.
<TT[]
ArrayList.toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.
static <TList<T>
Arrays.asList(T... a)
Returns a fixed-size list backed by the specified array.
static <TT[]
Arrays.copyOf(T[] original, int newLength)
Copies the specified array, truncating or padding with nulls (if necessary) so the copy has the specified length.
static <TT[]
Arrays.copyOfRange(T[] original, int from, int to)
Copies the specified range of the specified array into a new array.
static <T extends Comparable<? super T>> void
Arrays.parallelSort(T[] a)
Sorts the specified array of objects into ascending order, according to the natural ordering of its elements.
static <T> void
Arrays.parallelSort(T[] a, Comparator<? super T> cmp)
Sorts the specified array of objects according to the order induced by the specified comparator.
static <T extends Comparable<? super T>> void
Arrays.parallelSort(T[] a, int fromIndex, int toIndex)
Sorts the specified range of the specified array of objects into ascending order, according to the natural ordering of its elements.
static <T> void
Arrays.parallelSort(T[] a, int fromIndex, int toIndex, Comparator<? super T> cmp)
Sorts the specified range of the specified array of objects according to the order induced by the specified comparator.
Base64.Encoder.encodeToString(byte[] src)
Encodes the specified byte array into a String using the Base64 encoding scheme.
boolean
Calendar.equals(Object obj)
Compares this Calendar to the specified Object.
static <T> int
Collections.binarySearch(List<? extends T> list, T key, Comparator<? super T> c)
Searches the specified list for the specified object using the binary search algorithm.
static <T> Enumeration<T>
Collections.emptyEnumeration()
Returns an enumeration that has no elements.
static <T> Iterator<T>
Collections.emptyIterator()
Returns an iterator that has no elements.
static final <TList<T>
Collections.emptyList()
Returns an empty list (immutable).
static <T> ListIterator<T>
Collections.emptyListIterator()
Returns a list iterator that has no elements.
static final <K,VMap<K,V>
Collections.emptyMap()
Returns an empty map (immutable).
static final <K,V> NavigableMap<K,V>
Collections.emptyNavigableMap()
Returns an empty navigable map (immutable).
static <E> NavigableSet<E>
Collections.emptyNavigableSet()
Returns an empty navigable set (immutable).
static final <TSet<T>
Collections.emptySet()
Returns an empty set (immutable).
static final <K,V> SortedMap<K,V>
Collections.emptySortedMap()
Returns an empty sorted map (immutable).
static <E> SortedSet<E>
Collections.emptySortedSet()
Returns an empty sorted set (immutable).
static <TT
Collections.max(Collection<? extends T> coll, Comparator<? super T> comp)
Returns the maximum element of the given collection, according to the order induced by the specified comparator.
static <TT
Collections.min(Collection<? extends T> coll, Comparator<? super T> comp)
Returns the minimum element of the given collection, according to the order induced by the specified comparator.
static void
Collections.reverse(List<?> list)
Reverses the order of the elements in the specified list.
static <T> Comparator<T>
Collections.reverseOrder()
Returns a comparator that imposes the reverse of the natural ordering on a collection of objects that implement the Comparable interface.
static <T> Comparator<T>
Collections.reverseOrder(Comparator<T> cmp)
Returns a comparator that imposes the reverse ordering of the specified comparator.
static void
Collections.shuffle(List<?> list, Random rnd)
Randomly permute the specified list using the specified source of randomness.
static <T extends Comparable<? super T>> void
Collections.sort(List<T> list)
Sorts the specified list into ascending order, according to the natural ordering of its elements.
static <T> void
Collections.sort(List<T> list, Comparator<? super T> c)
Sorts the specified list according to the order induced by the specified comparator.
static void
Collections.swap(List<?> list, int i, int j)
Swaps the elements at the specified positions in the specified list.
static <T> Collection<T>
Collections.unmodifiableCollection(Collection<? extends T> c)
Returns an unmodifiable view of the specified collection.
static <TList<T>
Collections.unmodifiableList(List<? extends T> list)
Returns an unmodifiable view of the specified list.
static <K,VMap<K,V>
Collections.unmodifiableMap(Map<? extends K,? extends V> m)
Returns an unmodifiable view of the specified map.
static <K,V> NavigableMap<K,V>
Collections.unmodifiableNavigableMap(NavigableMap<K,? extends V> m)
Returns an unmodifiable view of the specified navigable map.
static <TSet<T>
Collections.unmodifiableSet(Set<? extends T> s)
Returns an unmodifiable view of the specified set.
static <K,V> SortedMap<K,V>
Collections.unmodifiableSortedMap(SortedMap<K,? extends V> m)
Returns an unmodifiable view of the specified sorted map.
static <T extends Comparable<? super T>> Comparator<T>
Comparator.naturalOrder()
Returns a comparator that compares Comparable objects in natural order.
EnumMap.clone()
Returns a shallow copy of this enum map.
EnumSet.clone()
Returns a copy of this set.
HashMap.clone()
Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned.
HashSet.clone()
Returns a shallow copy of this HashSet instance: the elements themselves are not cloned.
void
Hashtable.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
Hashtable.get(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
protected void
Hashtable.rehash()
Increases the capacity of and internally reorganizes this hashtable, in order to accommodate and access its entries more efficiently.
void
Hashtable.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
void
IdentityHashMap.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
IdentityHashMap.get(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
void
IdentityHashMap.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
<TT[]
LinkedList.toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.
static <EList<E>
List.of()
Returns an unmodifiable list containing zero elements.
static <EList<E>
List.of(E... elements)
Returns an unmodifiable list containing an arbitrary number of elements.
default void
List.sort(Comparator<? super E> c)
Sorts this list according to the order induced by the specified Comparator.
static <K,VMap<K,V>
Map.copyOf(Map<? extends K,? extends V> map)
Returns an unmodifiable Map containing the entries of the given Map.
static <K,VMap<K,V>
Map.of()
Returns an unmodifiable map containing zero mappings.
static <K,VMap<K,V>
Map.ofEntries(Map.Entry<? extends K,? extends V>... entries)
Returns an unmodifiable map containing keys and values extracted from the given entries.
static <K,V> Map.Entry<K,V>
Map.Entry.copyOf(Map.Entry<? extends K,? extends V> e)
Returns a copy of the given Map.Entry.
static <T> Optional<T>
Optional.ofNullable(T value)
Returns an Optional describing the given value, if non-null, otherwise returns an empty Optional.
void
PrimitiveIterator.forEachRemaining(T_CONS action)
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
static <ESet<E>
Set.copyOf(Collection<? extends E> coll)
Returns an unmodifiable Set containing the elements of the given Collection.
static <ESet<E>
Set.of()
Returns an unmodifiable set containing zero elements.
static <ESet<E>
Set.of(E... elements)
Returns an unmodifiable set containing an arbitrary number of elements.
default void
Spliterator.OfPrimitive.forEachRemaining(T_CONS action)
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
boolean
Spliterator.OfPrimitive.tryAdvance(T_CONS action)
If a remaining element exists, performs the given action on it, returning true; else returns false.
static <T> Spliterator<T>
Spliterators.emptySpliterator()
Creates an empty Spliterator
TreeSet.clone()
Returns a shallow copy of this TreeSet instance.
void
Vector.sort(Comparator<? super E> c)
Sorts this list according to the order induced by the specified Comparator.
<TT[]
Vector.toArray(T[] a)
Returns an array containing all of the elements in this Vector in the correct order; the runtime type of the returned array is that of the specified array.
void
WeakHashMap.forEach(BiConsumer<? super K,? super V> action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
void
WeakHashMap.replaceAll(BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
Constructors in java.util with annotations of type SuppressWarnings
Creates a property resource bundle from an InputStream.
Creates a property resource bundle from a Reader.
Classes in java.util.concurrent with annotations of type SuppressWarnings
class
An unbounded blocking queue that uses the same ordering rules as class PriorityQueue and supplies blocking retrieval operations.
Methods in java.util.concurrent with annotations of type SuppressWarnings
<TT[]
ArrayBlockingQueue.toArray(T[] a)
Returns an array containing all of the elements in this queue, in proper sequence; the runtime type of the returned array is that of the specified array.
CompletableFuture.get()
Waits if necessary for this future to complete, and then returns its result.
CompletableFuture.get(long timeout, TimeUnit unit)
Waits if necessary for at most the given time for this future to complete, and then returns its result, if available.
CompletableFuture.getNow(T valueIfAbsent)
Returns the result value (or throws any encountered exception) if completed, else returns the given valueIfAbsent.
CompletableFuture.join()
Returns the result value when complete, or throws an (unchecked) exception if completed exceptionally.
final <TT[]
ConcurrentHashMap.KeySetView.toArray(T[] a)
Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.
<TT[]
ConcurrentLinkedDeque.toArray(T[] a)
Returns an array containing all of the elements in this deque, in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.
<TT[]
ConcurrentLinkedQueue.toArray(T[] a)
Returns an array containing all of the elements in this queue, in proper sequence; the runtime type of the returned array is that of the specified array.
<TT[]
CopyOnWriteArrayList.toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.
Exchanger.exchange(V x)
Waits for another thread to arrive at this exchange point (unless the current thread is interrupted), and then transfers the given object to it, receiving its object in return.
Exchanger.exchange(V x, long timeout, TimeUnit unit)
Waits for another thread to arrive at this exchange point (unless the current thread is interrupted or the specified waiting time elapses), and then transfers the given object to it, receiving its object in return.
void
ForkJoinPool.execute(Runnable task)
Executes the given command at some time in the future.
ForkJoinPool.submit(Runnable task)
Submits a Runnable task for execution and returns a Future representing that task.
LinkedBlockingDeque.toArray()
Returns an array containing all of the elements in this deque, in proper sequence (from first to last element).
<TT[]
LinkedBlockingDeque.toArray(T[] a)
Returns an array containing all of the elements in this deque, in proper sequence; the runtime type of the returned array is that of the specified array.
<TT[]
LinkedBlockingQueue.toArray(T[] a)
Returns an array containing all of the elements in this queue, in proper sequence; the runtime type of the returned array is that of the specified array.
<TT[]
LinkedTransferQueue.toArray(T[] a)
Returns an array containing all of the elements in this queue, in proper sequence; the runtime type of the returned array is that of the specified array.
Classes in javax.swing with annotations of type SuppressWarnings
class
JOptionPane makes it easy to pop up a standard dialog box that prompts users for a value or informs them of something.
protected class
This class implements accessibility support for the JOptionPane class.
Methods in javax.swing with annotations of type SuppressWarnings
static Object
JOptionPane.showInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue)
Prompts the user for input in a blocking dialog where the initial selection, possible selections, and all other options can be specified.
static int
JOptionPane.showOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue)
Brings up a dialog with a specified icon, where the initial choice is determined by the initialValue parameter and the number of choices is determined by the optionType parameter.
Classes in javax.swing.text with annotations of type SuppressWarnings
abstract class
JTextComponent is the base class for swing text components.
class
This class implements accessibility support for the JTextComponent class.
static class
Binding record for creating key bindings.
Methods in javax.swing.text with annotations of type SuppressWarnings
JTextComponent.getToolTipText(MouseEvent event)
Returns the string to be used as the tooltip for event.
protected void
Processes input method events occurring on this component by dispatching them to any registered InputMethodListener objects.
Classes in javax.swing.text.html with annotations of type SuppressWarnings
class
A document that models HTML.
Classes in javax.swing.undo with annotations of type SuppressWarnings
class
An abstract implementation of UndoableEdit, implementing simple responses to all boolean methods in that interface.
class
Thrown when an UndoableEdit is told to redo() and can't.
class
Thrown when an UndoableEdit is told to undo() and can't.
class
A concrete subclass of AbstractUndoableEdit, used to assemble little UndoableEdits into great big ones.
class
StateEdit is a general edit for objects that change state.
class
UndoManager manages a list of UndoableEdits, providing a way to undo or redo the appropriate edits.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz