| Package | Description |
|---|---|
| java.lang |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| java.lang.invoke | |
| java.math |
Provides classes for performing arbitrary-precision integer
arithmetic (
BigInteger) and arbitrary-precision decimal
arithmetic (BigDecimal). |
| java.util |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| org.apidesign.bck2brwsr.launcher |
| Modifier and Type | Method and Description |
|---|---|
protected Object |
Thread.clone()
Throws CloneNotSupportedException as a Thread can not be meaningfully
cloned.
|
boolean |
Boolean.equals(Object obj)
Returns
true if and only if the argument is not
null and is a Boolean object that
represents the same boolean value as this object. |
void |
Thread.run()
If this thread was constructed using a separate
Runnable run object, then that
Runnable object's run method is called;
otherwise, this method does nothing and returns. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
MethodType.equals(Object x)
Compares the specified object with this type for equality.
|
int |
MethodType.hashCode()
Returns the hash code value for this method type.
|
String |
MethodType.toString()
Returns a string representation of the method type,
of the form
"(PT0,PT1...)RT". |
String |
MethodHandles.Lookup.toString()
Displays the name of the class from which lookups are to be made.
|
String |
MethodHandle.toString()
Returns a string representation of the method handle,
starting with the string
"MethodHandle" and
ending with the string representation of the method handle's type. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
BigDecimal.equals(Object x)
Compares this
BigDecimal with the specified
Object for equality. |
int |
BigDecimal.hashCode()
Returns the hash code for this
BigDecimal. |
String |
BigDecimal.toString()
Returns the string representation of this
BigDecimal,
using scientific notation if an exponent is needed. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
Locale.equals(Object obj) |
int |
Locale.hashCode()
Override hashCode.
|
boolean |
SimpleTimeZone.observesDaylightTime()
Returns
true if this SimpleTimeZone observes
Daylight Saving Time. |
String |
Locale.toString()
Returns a string representation of this
Locale
object, consisting of language, country, variant, script,
and extensions as below: |
| Modifier and Type | Method and Description |
|---|---|
void |
ConcurrentHashMap.clear() |
boolean |
ConcurrentHashMap.containsKey(Object key) |
boolean |
ConcurrentHashMap.containsValue(Object value) |
Set<Map.Entry<K,V>> |
ConcurrentHashMap.entrySet() |
boolean |
ConcurrentHashMap.equals(Object o) |
V |
ConcurrentHashMap.get(Object key) |
int |
ConcurrentHashMap.hashCode() |
boolean |
ConcurrentHashMap.isEmpty() |
Set<K> |
ConcurrentHashMap.keySet() |
V |
ConcurrentHashMap.put(K key,
V value) |
void |
ConcurrentHashMap.putAll(Map<? extends K,? extends V> m) |
V |
ConcurrentHashMap.putIfAbsent(K key,
V value) |
V |
ConcurrentHashMap.remove(Object key) |
boolean |
ConcurrentHashMap.remove(Object key,
Object value) |
V |
ConcurrentHashMap.replace(K key,
V value) |
boolean |
ConcurrentHashMap.replace(K key,
V oldValue,
V newValue) |
int |
ConcurrentHashMap.size() |
String |
ConcurrentHashMap.toString() |
Collection<V> |
ConcurrentHashMap.values() |
| Modifier and Type | Method and Description |
|---|---|
String |
InvocationContext.toString()
Obtains textual result of the invocation.
|
Copyright © 2017 API Design. All Rights Reserved.