Module 
Package 
Class 
Use 
 Index 
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
FlexDoc/Javadoc 2.0
Demo Java Doc

N
NABATAEAN - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Nabataean" Unicode character block.
NABATAEAN - Constant in enum java.lang.Character.UnicodeScript
Unicode script "Nabataean".
name() - Method in class java.lang.Enum
Returns the name of this enum constant, exactly as declared in its enum declaration.
nameUUIDFromBytes(byte[]) - Static method in class java.util.UUID
Static factory to retrieve a type 3 (name based) UUID based on the specified byte array.
NaN - Static variable in class java.lang.Double
A constant holding a Not-a-Number (NaN) value of type double.
NaN - Static variable in class java.lang.Float
A constant holding a Not-a-Number (NaN) value of type float.
NANDINAGARI - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Nandinagari" Unicode character block.
NANDINAGARI - Constant in enum java.lang.Character.UnicodeScript
Unicode script "Nandinagari".
NANOSECONDS - Constant in enum java.util.concurrent.TimeUnit
Time unit representing one thousandth of a microsecond.
nanoTime() - Static method in class java.lang.System
Returns the current value of the running Java Virtual Machine's high-resolution time source, in nanoseconds.
NARROW_FORMAT - Static variable in class java.util.Calendar
A style specifier for getDisplayName and getDisplayNames indicating a narrow name used for format.
NARROW_STANDALONE - Static variable in class java.util.Calendar
A style specifier for getDisplayName and getDisplayNames indicating a narrow name independently.
Native - Annotation Type in java.lang.annotation
Indicates that a field defining a constant value may be referenced from native code.
naturalOrder() - Static method in interface java.util.Comparator
Returns a comparator that compares Comparable objects in natural order.
navigableKeySet() - Method in interface java.util.NavigableMap
Returns a NavigableSet view of the keys contained in this map.
navigableKeySet() - Method in class java.util.TreeMap
Returns a NavigableSet view of the keys contained in this map.
navigableKeySet() - Method in interface java.util.concurrent.ConcurrentNavigableMap
Returns a NavigableSet view of the keys contained in this map.
navigableKeySet() - Method in class java.util.concurrent.ConcurrentSkipListMap
Returns a NavigableSet view of the keys contained in this map.
NavigableMap<K,V> - Interface in java.util
A SortedMap extended with navigation methods returning the closest matches for given search targets.
NavigableSet<E> - Interface in java.util
A SortedSet extended with navigation methods reporting closest matches for given search targets.
nCopies(int, T) - Static method in class java.util.Collections
Returns an immutable list consisting of n copies of the specified object.
needsReload(String, Locale, String, ClassLoader, ResourceBundle, long) - Method in class java.util.ResourceBundle.Control
Determines if the expired bundle in the cache needs to be reloaded based on the loading time given by loadTime or some other criteria.
negateExact(int) - Static method in class java.lang.Math
Returns the negation of the argument, throwing an exception if the result overflows an int.
negateExact(long) - Static method in class java.lang.Math
Returns the negation of the argument, throwing an exception if the result overflows a long.
negateExact(int) - Static method in class java.lang.StrictMath
Returns the negation of the argument, throwing an exception if the result overflows an int.
negateExact(long) - Static method in class java.lang.StrictMath
Returns the negation of the argument, throwing an exception if the result overflows a long.
NEGATIVE_INFINITY - Static variable in class java.lang.Double
A constant holding the negative infinity of type double.
NEGATIVE_INFINITY - Static variable in class java.lang.Float
A constant holding the negative infinity of type float.
NegativeArraySizeException - Exception in java.lang
Thrown if an application tries to create an array with negative size.
NegativeArraySizeException() - Constructor for exception java.lang.NegativeArraySizeException
Constructs a NegativeArraySizeException with no detail message.
NegativeArraySizeException(String) - Constructor for exception java.lang.NegativeArraySizeException
Constructs a NegativeArraySizeException with the specified detail message.
NEW - Constant in enum java.lang.Thread.State
Thread state for a thread which has not yet started.
NEW_TAI_LUE - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "New Tai Lue" Unicode character block.
NEW_TAI_LUE - Constant in enum java.lang.Character.UnicodeScript
Unicode script "New_Tai_Lue".
NEWA - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Newa" Unicode character block.
NEWA - Constant in enum java.lang.Character.UnicodeScript
Unicode script "Newa".
newBundle(String, Locale, String, ClassLoader, boolean) - Method in class java.util.ResourceBundle.Control
Instantiates a resource bundle for the given bundle name of the given format and locale, using the given class loader if necessary.
newCachedThreadPool() - Static method in class java.util.concurrent.Executors
Creates a thread pool that creates new threads as needed, but will reuse previously constructed threads when they are available.
newCachedThreadPool(ThreadFactory) - Static method in class java.util.concurrent.Executors
Creates a thread pool that creates new threads as needed, but will reuse previously constructed threads when they are available, and uses the provided ThreadFactory to create new threads when needed.
newFixedThreadPool(int) - Static method in class java.util.concurrent.Executors
Creates a thread pool that reuses a fixed number of threads operating off a shared unbounded queue.
newFixedThreadPool(int, ThreadFactory) - Static method in class java.util.concurrent.Executors
Creates a thread pool that reuses a fixed number of threads operating off a shared unbounded queue, using the provided ThreadFactory to create new threads when needed.
newIncompleteFuture() - Method in class java.util.concurrent.CompletableFuture
Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.
newInstance() - Method in class java.lang.Class
Deprecated. This method propagates any exception thrown by the nullary constructor, including a checked exception.
newKeySet() - Static method in class java.util.concurrent.ConcurrentHashMap
Creates a new Set backed by a ConcurrentHashMap from the given type to Boolean.TRUE.
newKeySet(int) - Static method in class java.util.concurrent.ConcurrentHashMap
Creates a new Set backed by a ConcurrentHashMap from the given type to Boolean.TRUE.
newLine() - Method in class java.io.BufferedWriter
Writes a line separator.
newPermissionCollection() - Method in class java.io.FilePermission
Returns a new PermissionCollection object for storing FilePermission objects.
newPermissionCollection() - Method in class java.util.PropertyPermission
Returns a new PermissionCollection object for storing PropertyPermission objects.
newScheduledThreadPool(int) - Static method in class java.util.concurrent.Executors
Creates a thread pool that can schedule commands to run after a given delay, or to execute periodically.
newScheduledThreadPool(int, ThreadFactory) - Static method in class java.util.concurrent.Executors
Creates a thread pool that can schedule commands to run after a given delay, or to execute periodically.
newSetFromMap(Map<E, Boolean>) - Static method in class java.util.Collections
Returns a set backed by the specified map.
newSingleThreadExecutor() - Static method in class java.util.concurrent.Executors
Creates an Executor that uses a single worker thread operating off an unbounded queue.
newSingleThreadExecutor(ThreadFactory) - Static method in class java.util.concurrent.Executors
Creates an Executor that uses a single worker thread operating off an unbounded queue, and uses the provided ThreadFactory to create a new thread when needed.
newSingleThreadScheduledExecutor() - Static method in class java.util.concurrent.Executors
Creates a single-threaded executor that can schedule commands to run after a given delay, or to execute periodically.
newSingleThreadScheduledExecutor(ThreadFactory) - Static method in class java.util.concurrent.Executors
Creates a single-threaded executor that can schedule commands to run after a given delay, or to execute periodically.
newTaskFor(Callable<T>) - Method in class java.util.concurrent.AbstractExecutorService
Returns a RunnableFuture for the given callable task.
newTaskFor(Runnable, T) - Method in class java.util.concurrent.AbstractExecutorService
Returns a RunnableFuture for the given runnable and default value.
newTaskFor(Callable<T>) - Method in class java.util.concurrent.ForkJoinPool
Returns a RunnableFuture for the given callable task.
newTaskFor(Runnable, T) - Method in class java.util.concurrent.ForkJoinPool
Returns a RunnableFuture for the given runnable and default value.
newThread(ForkJoinPool) - Method in interface java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory
Returns a new worker thread operating in the given pool.
newThread(Runnable) - Method in interface java.util.concurrent.ThreadFactory
Constructs a new Thread.
newWorkStealingPool() - Static method in class java.util.concurrent.Executors
Creates a work-stealing thread pool using the number of available processors as its target parallelism level.
newWorkStealingPool(int) - Static method in class java.util.concurrent.Executors
Creates a thread pool that maintains enough threads to support the given parallelism level, and may use multiple queues to reduce contention.
next() - Method in interface java.util.Iterator
Returns the next element in the iteration.
next() - Method in interface java.util.ListIterator
Returns the next element in the list and advances the cursor position.
next() - Method in interface java.util.PrimitiveIterator.OfDouble
Returns the next element in the iteration.
next() - Method in interface java.util.PrimitiveIterator.OfInt
Returns the next element in the iteration.
next() - Method in interface java.util.PrimitiveIterator.OfLong
Returns the next element in the iteration.
next(int) - Method in class java.util.Random
Generates the next pseudorandom number.
next() - Method in class java.util.Scanner
Finds and returns the next complete token from this scanner.
next(Pattern) - Method in class java.util.Scanner
Returns the next token if it matches the specified pattern.
next(String) - Method in class java.util.Scanner
Returns the next token if it matches the pattern constructed from the specified string.
next(int) - Method in class java.util.concurrent.ThreadLocalRandom
Generates a pseudorandom number with the indicated number of low-order bits.
next() - Method in class javax.swing.text.html.HTMLDocument.Iterator
Move the iterator forward to the next occurrence of the tag it represents.
nextAfter(double, double) - Static method in class java.lang.Math
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
nextAfter(float, double) - Static method in class java.lang.Math
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
nextAfter(double, double) - Static method in class java.lang.StrictMath
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
nextAfter(float, double) - Static method in class java.lang.StrictMath
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
nextBigDecimal() - Method in class java.util.Scanner
Scans the next token of the input as a BigDecimal.
nextBigInteger() - Method in class java.util.Scanner
Scans the next token of the input as a BigInteger.
nextBigInteger(int) - Method in class java.util.Scanner
Scans the next token of the input as a BigInteger.
nextBoolean() - Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed boolean value from this random number generator's sequence.
nextBoolean() - Method in class java.util.Scanner
Scans the next token of the input into a boolean value and returns that value.
nextBoolean() - Method in class java.util.concurrent.ThreadLocalRandom
Returns the next pseudorandom, uniformly distributed boolean value from this random number generator's sequence.
nextByte() - Method in class java.util.Scanner
Scans the next token of the input as a byte.
nextByte(int) - Method in class java.util.Scanner
Scans the next token of the input as a byte.
nextBytes(byte[]) - Method in class java.util.Random
Generates random bytes and places them into a user-supplied byte array.
nextBytes(byte[]) - Method in class java.util.SplittableRandom
Fills a user-supplied byte array with generated byte values pseudorandomly chosen uniformly from the range of values between -128 (inclusive) and 127 (inclusive).
nextClearBit(int) - Method in class java.util.BitSet
Returns the index of the first bit that is set to false that occurs on or after the specified starting index.
nextComplete() - Method in class java.util.concurrent.CountedCompleter
If this task does not have a completer, invokes ForkJoinTask.quietlyComplete() and returns null.
nextDouble() - Method in interface java.util.PrimitiveIterator.OfDouble
Returns the next double element in the iteration.
nextDouble() - Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence.
nextDouble() - Method in class java.util.Scanner
Scans the next token of the input as a double.
nextDouble() - Method in class java.util.concurrent.ThreadLocalRandom
Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence.
nextDouble(double) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandomly chosen double value between zero (inclusive) and the specified bound (exclusive).
nextDouble(double, double) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandomly chosen double value between the specified origin (inclusive) and the specified bound (exclusive).
nextDown(double) - Static method in class java.lang.Math
Returns the floating-point value adjacent to d in the direction of negative infinity.
nextDown(float) - Static method in class java.lang.Math
Returns the floating-point value adjacent to f in the direction of negative infinity.
nextDown(double) - Static method in class java.lang.StrictMath
Returns the floating-point value adjacent to d in the direction of negative infinity.
nextDown(float) - Static method in class java.lang.StrictMath
Returns the floating-point value adjacent to f in the direction of negative infinity.
nextElement() - Method in interface java.util.Enumeration
Returns the next element of this enumeration if this enumeration object has at least one more element to provide.
nextElement() - Method in class java.util.StringTokenizer
Returns the same value as the nextToken method, except that its declared return value is Object rather than String.
nextFloat() - Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from this random number generator's sequence.
nextFloat() - Method in class java.util.Scanner
Scans the next token of the input as a float.
nextFloat() - Method in class java.util.concurrent.ThreadLocalRandom
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from this random number generator's sequence.
nextFloat(float) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandomly chosen float value between zero (inclusive) and the specified bound (exclusive).
nextFloat(float, float) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandomly chosen float value between the specified origin (inclusive) and the specified bound (exclusive).
nextGaussian() - Method in class java.util.Random
Returns the next pseudorandom, Gaussian ("normally") distributed double value with mean 0.0 and standard deviation 1.0 from this random number generator's sequence.
nextIndex() - Method in interface java.util.ListIterator
Returns the index of the element that would be returned by a subsequent call to ListIterator.next().
nextInt() - Method in interface java.util.PrimitiveIterator.OfInt
Returns the next int element in the iteration.
nextInt() - Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence.
nextInt(int) - Method in class java.util.Random
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.
nextInt() - Method in class java.util.Scanner
Scans the next token of the input as an int.
nextInt(int) - Method in class java.util.Scanner
Scans the next token of the input as an int.
nextInt() - Method in class java.util.SplittableRandom
Returns a pseudorandomly chosen int value.
nextInt() - Method in class java.util.concurrent.ThreadLocalRandom
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence.
nextInt(int) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.
nextInt(int, int) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandomly chosen int value between the specified origin (inclusive) and the specified bound (exclusive).
nextLine() - Method in class java.util.Scanner
Advances this scanner past the current line and returns the input that was skipped.
nextLong() - Method in interface java.util.PrimitiveIterator.OfLong
Returns the next long element in the iteration.
nextLong() - Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed long value from this random number generator's sequence.
nextLong() - Method in class java.util.Scanner
Scans the next token of the input as a long.
nextLong(int) - Method in class java.util.Scanner
Scans the next token of the input as a long.
nextLong() - Method in class java.util.SplittableRandom
Returns a pseudorandomly chosen long value.
nextLong() - Method in class java.util.concurrent.ThreadLocalRandom
Returns the next pseudorandom, uniformly distributed long value from this random number generator's sequence.
nextLong(long) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandomly chosen long value between zero (inclusive) and the specified bound (exclusive).
nextLong(long, long) - Method in class java.util.concurrent.ThreadLocalRandom
Returns a pseudorandomly chosen long value between the specified origin (inclusive) and the specified bound (exclusive).
nextSetBit(int) - Method in class java.util.BitSet
Returns the index of the first bit that is set to true that occurs on or after the specified starting index.
nextShort() - Method in class java.util.Scanner
Scans the next token of the input as a short.
nextShort(int) - Method in class java.util.Scanner
Scans the next token of the input as a short.
nextToken() - Method in class java.io.StreamTokenizer
Parses the next token from the input stream of this tokenizer.
nextToken() - Method in class java.util.StringTokenizer
Returns the next token from this string tokenizer.
nextToken(String) - Method in class java.util.StringTokenizer
Returns the next token in this string tokenizer's string.
nextUp(double) - Static method in class java.lang.Math
Returns the floating-point value adjacent to d in the direction of positive infinity.
nextUp(float) - Static method in class java.lang.Math
Returns the floating-point value adjacent to f in the direction of positive infinity.
nextUp(double) - Static method in class java.lang.StrictMath
Returns the floating-point value adjacent to d in the direction of positive infinity.
nextUp(float) - Static method in class java.lang.StrictMath
Returns the floating-point value adjacent to f in the direction of positive infinity.
NKO - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "NKo" Unicode character block.
NKO - Constant in enum java.lang.Character.UnicodeScript
Unicode script "Nko".
NO_FIELDS - Static variable in class java.io.ObjectStreamClass
serialPersistentFields value indicating no serializable fields
NO_OPTION - Static variable in class javax.swing.JOptionPane
Return value from class method if NO is chosen.
NoClassDefFoundError - Error in java.lang
Thrown if the Java Virtual Machine or a ClassLoader instance tries to load in the definition of a class (as part of a normal method call or as part of creating a new instance using the new expression) and no definition of the class could be found.
NoClassDefFoundError() - Constructor for error java.lang.NoClassDefFoundError
Constructs a NoClassDefFoundError with no detail message.
NoClassDefFoundError(String) - Constructor for error java.lang.NoClassDefFoundError
Constructs a NoClassDefFoundError with the specified detail message.
node() - Method in class java.util.UUID
The node value associated with this UUID.
NON_SPACING_MARK - Static variable in class java.lang.Character
General category "Mn" in the Unicode specification.
noneOf(Class<E>) - Static method in class java.util.EnumSet
Creates an empty enum set with the specified element type.
nonNull(Object) - Static method in class java.util.Objects
Returns true if the provided reference is non-null otherwise returns false.
NONNULL - Static variable in interface java.util.Spliterator
Characteristic value signifying that the source guarantees that encountered elements will not be null.
NORM_PRIORITY - Static variable in class java.lang.Thread
The default priority that is assigned to a thread.
NoSuchElementException - Exception in java.util
Thrown by various accessor methods to indicate that the element being requested does not exist.
NoSuchElementException() - Constructor for exception java.util.NoSuchElementException
Constructs a NoSuchElementException with null as its error message string.
NoSuchElementException(String) - Constructor for exception java.util.NoSuchElementException
Constructs a NoSuchElementException, saving a reference to the error message string s for later retrieval by the getMessage method.
NoSuchElementException(String, Throwable) - Constructor for exception java.util.NoSuchElementException
Constructs a NoSuchElementException with the specified detail message and cause.
NoSuchElementException(Throwable) - Constructor for exception java.util.NoSuchElementException
Constructs a NoSuchElementException with the specified cause.
NoSuchFieldError - Error in java.lang
Thrown if an application tries to access or modify a specified field of an object, and that object no longer has that field.
NoSuchFieldError() - Constructor for error java.lang.NoSuchFieldError
Constructs a NoSuchFieldError with no detail message.
NoSuchFieldError(String) - Constructor for error java.lang.NoSuchFieldError
Constructs a NoSuchFieldError with the specified detail message.
NoSuchFieldException - Exception in java.lang
Signals that the class doesn't have a field of a specified name.
NoSuchFieldException() - Constructor for exception java.lang.NoSuchFieldException
Constructor.
NoSuchFieldException(String) - Constructor for exception java.lang.NoSuchFieldException
Constructor with a detail message.
NoSuchMethodError - Error in java.lang
Thrown if an application tries to call a specified method of a class (either static or instance), and that class no longer has a definition of that method.
NoSuchMethodError() - Constructor for error java.lang.NoSuchMethodError
Constructs a NoSuchMethodError with no detail message.
NoSuchMethodError(String) - Constructor for error java.lang.NoSuchMethodError
Constructs a NoSuchMethodError with the specified detail message.
NoSuchMethodException - Exception in java.lang
Thrown when a particular method cannot be found.
NoSuchMethodException() - Constructor for exception java.lang.NoSuchMethodException
Constructs a NoSuchMethodException without a detail message.
NoSuchMethodException(String) - Constructor for exception java.lang.NoSuchMethodException
Constructs a NoSuchMethodException with a detail message.
NotActiveException - Exception in java.io
Thrown when serialization or deserialization is not active.
NotActiveException() - Constructor for exception java.io.NotActiveException
Constructor to create a new NotActiveException without a reason.
NotActiveException(String) - Constructor for exception java.io.NotActiveException
Constructor to create a new NotActiveException with the reason given.
notify() - Method in class java.lang.Object
Wakes up a single thread that is waiting on this object's monitor.
notifyAll() - Method in class java.lang.Object
Wakes up all threads that are waiting on this object's monitor.
notifyObservers() - Method in class java.util.Observable
If this object has changed, as indicated by the hasChanged method, then notify all of its observers and then call the clearChanged method to indicate that this object has no longer changed.
notifyObservers(Object) - Method in class java.util.Observable
If this object has changed, as indicated by the hasChanged method, then notify all of its observers and then call the clearChanged method to indicate that this object has no longer changed.
NotSerializableException - Exception in java.io
Thrown when an instance is required to have a Serializable interface.
NotSerializableException() - Constructor for exception java.io.NotSerializableException
Constructs a NotSerializableException object.
NotSerializableException(String) - Constructor for exception java.io.NotSerializableException
Constructs a NotSerializableException object with message string.
NOVEMBER - Static variable in class java.util.Calendar
Value of the Calendar.MONTH field indicating the eleventh month of the year in the Gregorian and Julian calendars.
nullInputStream() - Static method in class java.io.InputStream
Returns a new InputStream that reads no bytes.
nullOutputStream() - Static method in class java.io.OutputStream
Returns a new OutputStream which discards all bytes.
NullPointerException - Exception in java.lang
Thrown when an application attempts to use null in a case where an object is required.
NullPointerException() - Constructor for exception java.lang.NullPointerException
Constructs a NullPointerException with no detail message.
NullPointerException(String) - Constructor for exception java.lang.NullPointerException
Constructs a NullPointerException with the specified detail message.
nullReader() - Static method in class java.io.Reader
Returns a new Reader that reads no characters.
nullsFirst(Comparator<? super T>) - Static method in interface java.util.Comparator
Returns a null-friendly comparator that considers null to be less than non-null.
nullsLast(Comparator<? super T>) - Static method in interface java.util.Comparator
Returns a null-friendly comparator that considers null to be greater than non-null.
nullWriter() - Static method in class java.io.Writer
Returns a new Writer which discards all characters.
Number - Class in java.lang
The abstract class Number is the superclass of platform classes representing numeric values that are convertible to the primitive types byte, double, float, int, long, and short.
Number() - Constructor for class java.lang.Number
Constructor for subclasses to call.
NUMBER_FORMS - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Number Forms" Unicode character block.
NumberFormatException - Exception in java.lang
Thrown to indicate that the application has attempted to convert a string to one of the numeric types, but that the string does not have the appropriate format.
NumberFormatException() - Constructor for exception java.lang.NumberFormatException
Constructs a NumberFormatException with no detail message.
NumberFormatException(String) - Constructor for exception java.lang.NumberFormatException
Constructs a NumberFormatException with the specified detail message.
numberOfLeadingZeros(int) - Static method in class java.lang.Integer
Returns the number of zero bits preceding the highest-order ("leftmost") one-bit in the two's complement binary representation of the specified int value.
numberOfLeadingZeros(long) - Static method in class java.lang.Long
Returns the number of zero bits preceding the highest-order ("leftmost") one-bit in the two's complement binary representation of the specified long value.
numberOfTrailingZeros(int) - Static method in class java.lang.Integer
Returns the number of zero bits following the lowest-order ("rightmost") one-bit in the two's complement binary representation of the specified int value.
numberOfTrailingZeros(long) - Static method in class java.lang.Long
Returns the number of zero bits following the lowest-order ("rightmost") one-bit in the two's complement binary representation of the specified long value.
NUSHU - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Nushu" Unicode character block.
NUSHU - Constant in enum java.lang.Character.UnicodeScript
Unicode script "Nushu".
nval - Variable in class java.io.StreamTokenizer
If the current token is a number, this field contains the value of that number.
NYIAKENG_PUACHUE_HMONG - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Nyiakeng Puachue Hmong" Unicode character block.
NYIAKENG_PUACHUE_HMONG - Constant in enum java.lang.Character.UnicodeScript
Unicode script "Nyiakeng Puachue Hmong".

Module 
Package 
Class 
Use 
 Index 
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
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