Module Java.Util

Java classes from package java.util

Imports

Table of Content

Definitions

data NoSuchElementException = pure native java.util.NoSuchElementException
data Enumeration e = native java.util.Enumeration

Member Functions

hasMoreElementsMutable s (Enumeration e)ST s Bool
native hasMoreElements
nextElementMutable s (Enumeration e)ST s e
native nextElement  throws NoSuchElementException
toListMutable s (Enumeration e)ST s [e]
data Random = native java.util.Random

A value of this type is used to generate a stream of pseudorandom numbers. The type uses a 48-bit seed, which is modified using a linear congruential formula. (See Donald Knuth, The Art of Computer Programming, Volume 2, Section 3.2.1.)

If two Random values are created with the same seed, and the same sequence of method calls is made for each, they will generate and return identical sequences of numbers. In order to guarantee this property, particular algorithms are specified for the class Random.

Many applications will find the function random simpler to use.

Member Functions

new()STMutable RealWorld Random
     | LongSTMutable s Random
native new

Create a new random number generator.

If no seed is given, a value very likely to be distinct from any other invocation of the constructor will be computed from the state of the real world.

new𝖆()STMutable RealWorld Random
native new  overloads new

Create a new random number generator.

If no seed is given, a value very likely to be distinct from any other invocation of the constructor will be computed from the state of the real world.

new𝖇LongSTMutable s Random
native new  overloads new

Create a new random number generator.

If no seed is given, a value very likely to be distinct from any other invocation of the constructor will be computed from the state of the real world.

nextBooleanMutable s RandomST s Bool
native nextBoolean

Returns the next pseudorandom, uniformly distributed Bool value from this random number generator's sequence.

nextDoubleMutable s RandomST s Double
native nextDouble

Returns the next pseudorandom, uniformly distributed Double value between 0.0 and 1.0 from this random number generator's sequence.

nextFloatMutable s RandomST s Float
native nextFloat

Returns the next pseudorandom, uniformly distributed Float value between 0.0 and 1.0 from this random number generator's sequence.

nextGaussianMutable s RandomST s Double
native nextGaussian

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.

nextIntMutable s RandomST s Int
         | Mutable s RandomIntST s Int
native nextInt
 random.nextInt

Returns the next pseudorandom, uniformly distributed Int value from this random number generator's sequence.

 random.nextInt limit

Returns a pseudorandom, uniformly distributed Int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence. The limit must be positive.

nextInt𝖆Mutable s RandomST s Int
native nextInt  overloads nextInt
 random.nextInt

Returns the next pseudorandom, uniformly distributed Int value from this random number generator's sequence.

 random.nextInt limit

Returns a pseudorandom, uniformly distributed Int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence. The limit must be positive.

nextInt𝖇Mutable s RandomIntST s Int
native nextInt  overloads nextInt
 random.nextInt

Returns the next pseudorandom, uniformly distributed Int value from this random number generator's sequence.

 random.nextInt limit

Returns a pseudorandom, uniformly distributed Int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence. The limit must be positive.

nextLongMutable s RandomST s Long
native nextLong

Returns the next pseudorandom, uniformly distributed Long value from this random number generator's sequence.

setSeedMutable s RandomLongST s ()
native setSeed

Sets the seed of this random number generator using a single long seed.

data AbstractMapSimpleImmutableEntry k v = pure native java.util.AbstractMap.SimpleImmutableEntry

An Entry maintaining an immutable key and value. This class does not support method setValue. This class may be convenient in methods that return thread-safe snapshots of key-value mappings.

Member Functions

equalsAbstractMapSimpleImmutableEntry k vObjectBool
pure native equals
getKeyAbstractMapSimpleImmutableEntry k v → k
pure native getKey
getValueAbstractMapSimpleImmutableEntry k v → v
pure native getValue
hashCodeAbstractMapSimpleImmutableEntry k vInt
pure native hashCode
new ∷ k → v → ST s (AbstractMapSimpleImmutableEntry k v)
     | Mutable s (MapEntry k v) → ST s (AbstractMapSimpleImmutableEntry k v)
native new

Creates an entry representing a mapping from the specified key to the specified value or if an entry is provided, it creates an entry representing the same mapping as the specified entry.

new𝖆kvST s (AbstractMapSimpleImmutableEntry k v)
native new  overloads new

Creates an entry representing a mapping from the specified key to the specified value or if an entry is provided, it creates an entry representing the same mapping as the specified entry.

new𝖇Mutable s (MapEntry k v)ST s (AbstractMapSimpleImmutableEntry k v)
native new  overloads new

Creates an entry representing a mapping from the specified key to the specified value or if an entry is provided, it creates an entry representing the same mapping as the specified entry.

toStringAbstractMapSimpleImmutableEntry k vString
pure native toString
data Reader = native java.io.Reader
data File = native java.io.File
data FileNotFoundException = pure native java.io.FileNotFoundException
data Comparator t = pure native java.util.Comparator

From Javadoc: A comparison function, which imposes a total ordering on some collection of objects. Comparators can be passed to a sort method (such as Collections.sort or Arrays.sort) to allow precise control over the sort order. Comparators can also be used to control the order of certain data structures (such as sorted sets or sorted maps), or to provide an ordering for collections of objects that don't have a natural ordering.

More: Comparator JavaDoc

Member Functions

compareComparator tttInt
pure native compare
equalsComparator tComparator tBool
pure native equals
data AbstractSet e = native java.util.AbstractSet

This class provides a skeletal implementation of the Set interface to minimize the effort required to implement this interface. The process of implementing a set by extending this class is identical to that of implementing a Collection by extending AbstractCollection, except that all of the methods and constructors in subclasses of this class must obey the additional constraints imposed by the Set interface (for instance, the add method must not permit addition of multiple instances of an object to a set).

Note that this class does not override any of the implementations from the AbstractCollection class. It merely adds implementations for equals and hashCode.

Member Functions

equalsMutable s (AbstractSet e)ObjectST s Bool
native equals
hashCodeMutable s (AbstractSet e)ST s Int
native hashCode
removeAllMutable s (AbstractSet e)Mutable s (Collection Object)ST s Bool
native removeAll
data Stack e = native java.util.Stack

The Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with five operations that allow a vector to be treated as a stack. The usual push and pop operations are provided, as well as a method to peek at the top item on the stack, a method to test for whether the stack is empty, and a method to search the stack for an item and discover how far it is from the top.

When a stack is first created, it contains no items.

A more complete and consistent set of LIFO stack operations is provided by the Deque interface and its implementations, which should be used in preference to this class. For example:

 Deque<Integer> stack = new ArrayDeque<Integer>();

Member Functions

emptyMutable s (Stack e)ST s Bool
native empty

Tests if this stack is empty.

new()STMutable s (Stack e)
native new

Creates an empty Stack.

peekMutable s (Stack e)ST s e
native peek

Looks at the object at the top of this stack without removing it from the stack.

popMutable s (Stack e)ST s e
native pop

Removes the object at the top of this stack and returns that object as the value of this function.

pushMutable s (Stack e)eST s e
native push

Pushes an item onto the top of this stack.

searchMutable s (Stack e)ObjectST s Int
native search

Returns the 1-based position where an object is on this stack.

data SortedSet e = native java.util.SortedSet

A Set that further provides a total ordering on its elements. More: SortedSet JavaDoc

Member Functions

comparatorMutable s (SortedSet e)ST s (Comparator >)
native comparator

Returns the comparator used to order the elements in this set, or null if this set uses the

natural ordering of its elements.

firstMutable s (SortedSet e)ST s e
native first

Returns the first (lowest) element currently in this set.

headSetMutable s (SortedSet e)eSTMutable s (SortedSet e)
native headSet

Returns a view of the portion of this set whose elements are strictly less than toElement.

lastMutable s (SortedSet e)ST s e
native last

Returns the last (highest) element currently in this set.

subSetMutable s (SortedSet e)eeSTMutable s (SortedSet e)
native subSet

Returns a view of the portion of this set whose elements range from fromElement, inclusive, to toElement, exclusive.

tailSetMutable s (SortedSet e)eSTMutable s (SortedSet e)
native tailSet

Returns a view of the portion of this set whose elements are greater than or equal to fromElement.

data Deque e = native java.util.Deque

A linear collection that supports element insertion and removal at both ends. More: Deque JavaDoc

Member Functions

addMutable s (Deque e)eST s Bool
native add

Inserts the specified element into the queue represented by this deque (in other words, at the tail of this deque) if it is possible to do so immediately without violating capacity restrictions, returning true upon success and throwing an IllegalStateException if no space is currently available.

addFirstMutable s (Deque e)eST s ()
native addFirst

Inserts the specified element at the front of this deque if it is possible to do so immediately without violating capacity restrictions.

addLastMutable s (Deque e)eST s ()
native addLast

Inserts the specified element at the end of this deque if it is possible to do so immediately without violating capacity restrictions.

containsMutable s (Deque e)ObjectST s Bool
native contains

Returns true if this deque contains the specified element.

descendingIteratorMutable s (Deque e)STMutable s (Iterator e)
native descendingIterator

Returns an iterator over the elements in this deque in reverse sequential order.

elementMutable s (Deque e)ST s e
native element

Retrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque).

getFirstMutable s (Deque e)ST s e
native getFirst

Retrieves, but does not remove, the first element of this deque.

getLastMutable s (Deque e)ST s e
native getLast

Retrieves, but does not remove, the last element of this deque.

iteratorMutable s (Deque e)STMutable s (Iterator e)
native iterator

Returns an iterator over the elements in this deque in proper sequence.

offerMutable s (Deque e)eST s Bool
native offer

Inserts the specified element into the queue represented by this deque (in other words, at the tail of this deque)

if it is possible to do so immediately without violating capacity restrictions, returning true upon success and false if no space is currently available.

offerFirstMutable s (Deque e)eST s Bool
native offerFirst

Inserts the specified element at the front of this deque unless it would violate capacity restrictions.

offerLastMutable s (Deque e)eST s Bool
native offerLast

Inserts the specified element at the end of this deque unless it would violate capacity restrictions.

peekMutable s (Deque e)ST s e
native peek

Retrieves, but does not remove, the head of the queue represented by this deque (in other words,

the first element of this deque), or returns null if this deque is empty.

peekFirstMutable s (Deque e)ST s e
native peekFirst

Retrieves, but does not remove, the first element of this deque, or returns null if this deque is empty.

peekLastMutable s (Deque e)ST s e
native peekLast

Retrieves, but does not remove, the last element of this deque, or returns null if this deque is empty.

pollMutable s (Deque e)ST s e
native poll

Retrieves and removes the head of the queue represented by this deque (in other words,

the first element of this deque), or returns null if this deque is empty.

pollFirstMutable s (Deque e)ST s e
native pollFirst

Retrieves and removes the first element of this deque, or returns null if this deque is empty.

pollLastMutable s (Deque e)ST s e
native pollLast

Retrieves and removes the last element of this deque, or returns null if this deque is empty.

popMutable s (Deque e)ST s e
native pop

Pops an element from the stack represented by this deque.

pushMutable s (Deque e)eST s ()
native push

Pushes an element onto the stack represented by this deque (in other words, at the head of this deque)

if it is possible to do so immediately without violating capacity restrictions, returning true upon success

and throwing an IllegalStateException if no space is currently available.

removeMutable s (Deque e) → ST s e
        | Mutable s (Deque e) → ObjectST s Bool
native remove

Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque) or

Removes the first occurrence of the specified element from this deque.

removeFirstMutable s (Deque e)ST s e
native removeFirst

Retrieves and removes the first element of this deque.

removeFirstOccurrenceMutable s (Deque e)ObjectST s Bool
native removeFirstOccurrence

Removes the first occurrence of the specified element from this deque.

removeLastMutable s (Deque e)ST s e
native removeLast

Retrieves and removes the last element of this deque.

removeLastOccurrenceMutable s (Deque e)ObjectST s Bool
native removeLastOccurrence

Removes the last occurrence of the specified element from this deque.

remove𝖆Mutable s (Deque e)ST s e
native remove  overloads remove

Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque) or

Removes the first occurrence of the specified element from this deque.

remove𝖇Mutable s (Deque e)ObjectST s Bool
native remove  overloads remove

Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque) or

Removes the first occurrence of the specified element from this deque.

sizeMutable s (Deque e)ST s Int
native size

Returns the number of elements in this deque.

data AbstractSequentialList e = native java.util.AbstractSequentialList

This class provides a skeletal implementation of the List interface to minimize the effort required to implement this interface backed by a "sequential access" data store (such as a linked list). For random access data (such as an array), AbstractList should be used in preference to this class.

More: AbstractSequentialList JavaDoc

Member Functions

addMutable s (AbstractSequentialList e)InteST s ()
native add

Inserts the specified element at the specified position in this list (optional operation).

addAllMutable s (AbstractSequentialList e)IntMutable s (Collection e)ST s Bool
native addAll

Inserts all of the elements in the specified collection into this list at the specified position (optional operation).

getMutable s (AbstractSequentialList e)IntST s e
native get

Returns the element at the specified position in this list.

iteratorMutable s (AbstractSequentialList e)STMutable s (Iterator e)
native iterator

Returns an iterator over the elements in this list (in proper sequence).

listIteratorMutable s (AbstractSequentialList e)IntSTMutable s (ListIterator e)
native listIterator

Returns a list iterator over the elements in this list (in proper sequence).

removeMutable s (AbstractSequentialList e)IntST s e
native remove

Removes the element at the specified position in this list (optional operation).

setMutable s (AbstractSequentialList e)InteST s e
native set

Replaces the element at the specified position in this list with the specified element (optional operation).

data Formatter = native java.util.Formatter

An interpreter for printf-style format strings. More: Formatter JavaDoc

Member Functions

closeMutable s FormatterST s ()
native close

Closes this formatter.

flushMutable s FormatterST s ()
native flush

Flushes this formatter.

formatMutable s FormatterStringArrayOf s ObjectSTMutable s Formatter
        | Mutable s FormatterLocaleStringArrayOf s ObjectSTMutable s Formatter
native format

Writes a formatted string to this object's destination using the specified locale, format string, and arguments

or Writes a formatted string to this object's destination using the specified format string and arguments.

format𝖆Mutable s FormatterStringArrayOf s ObjectSTMutable s Formatter
native format  overloads format

Writes a formatted string to this object's destination using the specified locale, format string, and arguments

or Writes a formatted string to this object's destination using the specified format string and arguments.

format𝖇Mutable s FormatterLocaleStringArrayOf s ObjectSTMutable s Formatter
native format  overloads format

Writes a formatted string to this object's destination using the specified locale, format string, and arguments

or Writes a formatted string to this object's destination using the specified format string and arguments.

ioExceptionMutable s FormatterST s IOException
native ioException

Returns the IOException last thrown by this formatter's Appendable.

localeMutable s FormatterST s Locale
native locale

Returns the locale set by the construction of this formatter.

newMutableIO FileStringSTMutable RealWorld Formatter
         throws FileNotFoundException, UnsupportedEncodingException
     | MutableIO FileSTMutable RealWorld Formatter
         throws FileNotFoundException
     | StringStringLocaleSTMutable s Formatter
         throws FileNotFoundException, UnsupportedEncodingException
     | StringStringSTMutable s Formatter
         throws FileNotFoundException, UnsupportedEncodingException
     | StringSTMutable s Formatter
         throws FileNotFoundException
     | MutableIO OutputStreamStringSTMutable RealWorld Formatter
         throws UnsupportedEncodingException
     | MutableIO OutputStreamSTMutable RealWorld Formatter
     | MutableIO PrintStreamSTMutable RealWorld Formatter
     | MutableIO FileStringLocaleSTMutable RealWorld Formatter
         throws FileNotFoundException, UnsupportedEncodingException
     | ()STMutable s Formatter
     | MutableIO OutputStreamStringLocaleSTMutable RealWorld Formatter
         throws UnsupportedEncodingException
     | Mutable s AppendableLocaleSTMutable s Formatter
     | LocaleSTMutable s Formatter
     | Mutable s AppendableSTMutable s Formatter
native new
new𝖆MutableIO FileStringSTMutable RealWorld Formatter
native new  throws FileNotFoundException, UnsupportedEncodingException  overloads new
new𝖇MutableIO FileSTMutable RealWorld Formatter
native new  throws FileNotFoundException  overloads new
new𝖈StringStringLocaleSTMutable s Formatter
native new  throws FileNotFoundException, UnsupportedEncodingException  overloads new
new𝖉StringStringSTMutable s Formatter
native new  throws FileNotFoundException, UnsupportedEncodingException  overloads new
new𝖊StringSTMutable s Formatter
native new  throws FileNotFoundException  overloads new
new𝖋MutableIO OutputStreamStringSTMutable RealWorld Formatter
native new  throws UnsupportedEncodingException  overloads new
new𝖌MutableIO OutputStreamSTMutable RealWorld Formatter
native new  overloads new
new𝖍MutableIO PrintStreamSTMutable RealWorld Formatter
native new  overloads new
new𝖎MutableIO FileStringLocaleSTMutable RealWorld Formatter
native new  throws FileNotFoundException, UnsupportedEncodingException  overloads new
new𝖏()STMutable s Formatter
native new  overloads new
new𝖐MutableIO OutputStreamStringLocaleSTMutable RealWorld Formatter
native new  throws UnsupportedEncodingException  overloads new
new𝖑Mutable s AppendableLocaleSTMutable s Formatter
native new  overloads new
new𝖒LocaleSTMutable s Formatter
native new  overloads new
new𝖓Mutable s AppendableSTMutable s Formatter
native new  overloads new
outMutable s FormatterSTMutable s Appendable
native out

Returns the destination for the output.

toStringMutable s FormatterST s String
native toString

Returns the result of invoking toString() on the destination for the output.

data PriorityQueue e = native java.util.PriorityQueue

An unbounded priority queue based on a priority heap. More: PriorityQueue JavaDoc

Member Functions

addMutable s (PriorityQueue e)eST s Bool
native add
clearMutable s (PriorityQueue e)ST s ()
native clear
comparatorMutable s (PriorityQueue e)ST s (Comparator >)
native comparator
containsMutable s (PriorityQueue e)ObjectST s Bool
native contains
iteratorMutable s (PriorityQueue e)STMutable s (Iterator e)
native iterator
newMutable s (SortedSet e) → STMutable s (PriorityQueue e)
     | Mutable s (PriorityQueue e) → STMutable s (PriorityQueue e)
     | Mutable s (Collection e) → STMutable s (PriorityQueue e)
     | ()STMutable s (PriorityQueue e)
     | IntSTMutable s (PriorityQueue e)
     | IntComparator e → STMutable s (PriorityQueue e)
native new
new𝖆Mutable s (SortedSet e)STMutable s (PriorityQueue e)
native new  overloads new
new𝖇Mutable s (PriorityQueue e)STMutable s (PriorityQueue e)
native new  overloads new
new𝖈Mutable s (Collection e)STMutable s (PriorityQueue e)
native new  overloads new
new𝖉()STMutable s (PriorityQueue e)
native new  overloads new
new𝖊IntSTMutable s (PriorityQueue e)
native new  overloads new
new𝖋IntComparator eSTMutable s (PriorityQueue e)
native new  overloads new
offerMutable s (PriorityQueue e)eST s Bool
native offer
peekMutable s (PriorityQueue e)ST s e
native peek
pollMutable s (PriorityQueue e)ST s e
native poll
removeMutable s (PriorityQueue e)ObjectST s Bool
native remove
sizeMutable s (PriorityQueue e)ST s Int
native size
toArrayMutable s (PriorityQueue e) → STMutable s (JArray Object)
         | Mutable s (PriorityQueue e) → ArrayOf s ObjectSTMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (PriorityQueue e)STMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (PriorityQueue e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
data NavigableMap k v = native java.util.NavigableMap

A SortedMap extended with navigation methods returning the closest matches for given search targets.

More: NavigableMap JavaDoc

Member Functions

ceilingEntryMutable s (NavigableMap k v)kSTMutable s (MapEntry k v)
native ceilingEntry
ceilingKeyMutable s (NavigableMap k v)kST s k
native ceilingKey
descendingKeySetMutable s (NavigableMap k v)STMutable s (NavigableSet k)
native descendingKeySet
descendingMapMutable s (NavigableMap k v)STMutable s (NavigableMap k v)
native descendingMap
firstEntryMutable s (NavigableMap k v)STMutable s (MapEntry k v)
native firstEntry
floorEntryMutable s (NavigableMap k v)kSTMutable s (MapEntry k v)
native floorEntry
floorKeyMutable s (NavigableMap k v)kST s k
native floorKey
headMapMutable s (NavigableMap k v) → k → BoolSTMutable s (NavigableMap k v)
         | Mutable s (NavigableMap k v) → k → STMutable s (SortedMap k v)
native headMap
headMap𝖆Mutable s (NavigableMap k v)kBoolSTMutable s (NavigableMap k v)
native headMap  overloads headMap
headMap𝖇Mutable s (NavigableMap k v)kSTMutable s (SortedMap k v)
native headMap  overloads headMap
higherEntryMutable s (NavigableMap k v)kSTMutable s (MapEntry k v)
native higherEntry
higherKeyMutable s (NavigableMap k v)kST s k
native higherKey
lastEntryMutable s (NavigableMap k v)STMutable s (MapEntry k v)
native lastEntry
lowerEntryMutable s (NavigableMap k v)kSTMutable s (MapEntry k v)
native lowerEntry
lowerKeyMutable s (NavigableMap k v)kST s k
native lowerKey
navigableKeySetMutable s (NavigableMap k v)STMutable s (NavigableSet k)
native navigableKeySet
pollFirstEntryMutable s (NavigableMap k v)STMutable s (MapEntry k v)
native pollFirstEntry
pollLastEntryMutable s (NavigableMap k v)STMutable s (MapEntry k v)
native pollLastEntry
subMapMutable s (NavigableMap k v) → k → k → STMutable s (SortedMap k v)
        | Mutable s (NavigableMap k v) → k → Bool → k → BoolSTMutable s (NavigableMap k v)
native subMap
subMap𝖆Mutable s (NavigableMap k v)kkSTMutable s (SortedMap k v)
native subMap  overloads subMap
subMap𝖇Mutable s (NavigableMap k v)kBoolkBoolSTMutable s (NavigableMap k v)
native subMap  overloads subMap
tailMapMutable s (NavigableMap k v) → k → BoolSTMutable s (NavigableMap k v)
         | Mutable s (NavigableMap k v) → k → STMutable s (SortedMap k v)
native tailMap
tailMap𝖆Mutable s (NavigableMap k v)kBoolSTMutable s (NavigableMap k v)
native tailMap  overloads tailMap
tailMap𝖇Mutable s (NavigableMap k v)kSTMutable s (SortedMap k v)
native tailMap  overloads tailMap
data EventListener = native java.util.EventListener

A tagging interface that all event listener interfaces must extend.

More: JavaDoc

data LinkedHashMap k v = native java.util.LinkedHashMap

Hash table and linked list implementation of the Map interface, with predictable iteration order.

More: JavaDoc

Member Functions

clearMutable s (LinkedHashMap k v)ST s ()
native clear
containsValueMutable s (LinkedHashMap k v)kST s Bool
native containsValue
fromList ∷ [(k, v)] → STMutable s (LinkedHashMap k v)
getMutable s (LinkedHashMap k v)kST s (Maybe v)
native get
newIntFloatBoolSTMutable s (LinkedHashMap k v)
     | Mutable s (Map k v) → STMutable s (LinkedHashMap k v)
     | ()STMutable s (LinkedHashMap k v)
     | IntSTMutable s (LinkedHashMap k v)
     | IntFloatSTMutable s (LinkedHashMap k v)
native new
new𝖆IntFloatBoolSTMutable s (LinkedHashMap k v)
native new  overloads new
new𝖇Mutable s (Map k v)STMutable s (LinkedHashMap k v)
native new  overloads new
new𝖈()STMutable s (LinkedHashMap k v)
native new  overloads new
new𝖉IntSTMutable s (LinkedHashMap k v)
native new  overloads new
new𝖊IntFloatSTMutable s (LinkedHashMap k v)
native new  overloads new
data FormatterBigDecimalLayoutForm = pure native java.util.Formatter.BigDecimalLayoutForm

Member Functions

decimal_floatFormatterBigDecimalLayoutForm
pure native java.util.Formatter.BigDecimalLayoutForm.DECIMAL_FLOAT
scientificFormatterBigDecimalLayoutForm
pure native java.util.Formatter.BigDecimalLayoutForm.SCIENTIFIC
valueOfStringFormatterBigDecimalLayoutForm
pure native java.util.Formatter.BigDecimalLayoutForm.valueOf
values()STMutable s (JArray FormatterBigDecimalLayoutForm)
native java.util.Formatter.BigDecimalLayoutForm.values
data ArrayDeque e = native java.util.ArrayDeque

Resizable-array implementation of the Deque interface. More: JavaDoc

Member Functions

addMutable s (ArrayDeque e)eST s Bool
native add
addFirstMutable s (ArrayDeque e)eST s ()
native addFirst
addLastMutable s (ArrayDeque e)eST s ()
native addLast
clearMutable s (ArrayDeque e)ST s ()
native clear
cloneMutable s (ArrayDeque e)STMutable s (ArrayDeque e)
native clone
containsMutable s (ArrayDeque e)ObjectST s Bool
native contains
descendingIteratorMutable s (ArrayDeque e)STMutable s (Iterator e)
native descendingIterator
elementMutable s (ArrayDeque e)ST s e
native element
getFirstMutable s (ArrayDeque e)ST s e
native getFirst
getLastMutable s (ArrayDeque e)ST s e
native getLast
isEmptyMutable s (ArrayDeque e)ST s Bool
native isEmpty
iteratorMutable s (ArrayDeque e)STMutable s (Iterator e)
native iterator
new()STMutable s (ArrayDeque e)
     | IntSTMutable s (ArrayDeque e)
     | Mutable s (Collection e) → STMutable s (ArrayDeque e)
native new
new𝖆()STMutable s (ArrayDeque e)
native new  overloads new
new𝖇IntSTMutable s (ArrayDeque e)
native new  overloads new
new𝖈Mutable s (Collection e)STMutable s (ArrayDeque e)
native new  overloads new
offerMutable s (ArrayDeque e)eST s Bool
native offer
offerFirstMutable s (ArrayDeque e)eST s Bool
native offerFirst
offerLastMutable s (ArrayDeque e)eST s Bool
native offerLast
peekMutable s (ArrayDeque e)ST s e
native peek
peekFirstMutable s (ArrayDeque e)ST s e
native peekFirst
peekLastMutable s (ArrayDeque e)ST s e
native peekLast
pollMutable s (ArrayDeque e)ST s e
native poll
pollFirstMutable s (ArrayDeque e)ST s e
native pollFirst
pollLastMutable s (ArrayDeque e)ST s e
native pollLast
popMutable s (ArrayDeque e)ST s e
native pop
pushMutable s (ArrayDeque e)eST s ()
native push
removeMutable s (ArrayDeque e) → ObjectST s Bool
        | Mutable s (ArrayDeque e) → ST s e
native remove
removeFirstMutable s (ArrayDeque e)ST s e
native removeFirst
removeFirstOccurrenceMutable s (ArrayDeque e)ObjectST s Bool
native removeFirstOccurrence
removeLastMutable s (ArrayDeque e)ST s e
native removeLast
removeLastOccurrenceMutable s (ArrayDeque e)ObjectST s Bool
native removeLastOccurrence
remove𝖆Mutable s (ArrayDeque e)ObjectST s Bool
native remove  overloads remove
remove𝖇Mutable s (ArrayDeque e)ST s e
native remove  overloads remove
sizeMutable s (ArrayDeque e)ST s Int
native size
toArrayMutable s (ArrayDeque e) → ArrayOf s ObjectSTMutable s (JArray Object)
         | Mutable s (ArrayDeque e) → STMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (ArrayDeque e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (ArrayDeque e)STMutable s (JArray Object)
native toArray  overloads toArray
data LocaleCategory = pure native java.util.Locale.Category

Enum for locale categories. These locale categories are used to get/set the default locale for the specific functionality represented by the category.

More: JavaDoc

Member Functions

displayLocaleCategory
pure native java.util.Locale.Category.DISPLAY
formatLocaleCategory
pure native java.util.Locale.Category.FORMAT
valueOfStringLocaleCategory
pure native java.util.Locale.Category.valueOf
values()STMutable s (JArray LocaleCategory)
native java.util.Locale.Category.values
data IdentityHashMap k v = native java.util.IdentityHashMap

This class implements the Map interface with a hash table, using reference-equality in place of object-equality when comparing keys (and values).

More: JavaDoc

Member Functions

clearMutable s (IdentityHashMap k v)ST s ()
native clear
cloneMutable s (IdentityHashMap k v)ST s Object
native clone
containsKeyMutable s (IdentityHashMap k v)ObjectST s Bool
native containsKey
containsValueMutable s (IdentityHashMap k v)ObjectST s Bool
native containsValue
entrySetMutable s (IdentityHashMap k v)STMutable s (Set (MapEntry k v))
native entrySet
equalsMutable s (IdentityHashMap k v)ObjectST s Bool
native equals
fromList ∷ [(k, v)] → STMutable s (IdentityHashMap k v)
getMutable s (IdentityHashMap k v)ObjectST s v
native get
hashCodeMutable s (IdentityHashMap k v)ST s Int
native hashCode
isEmptyMutable s (IdentityHashMap k v)ST s Bool
native isEmpty
keySetMutable s (IdentityHashMap k v)STMutable s (Set k)
native keySet
newIntSTMutable s (IdentityHashMap k v)
     | ()STMutable s (IdentityHashMap k v)
     | Mutable s (Map k v) → STMutable s (IdentityHashMap k v)
native new
new𝖆IntSTMutable s (IdentityHashMap k v)
native new  overloads new
new𝖇()STMutable s (IdentityHashMap k v)
native new  overloads new
new𝖈Mutable s (Map k v)STMutable s (IdentityHashMap k v)
native new  overloads new
putMutable s (IdentityHashMap k v)kvST s v
native put
putAllMutable s (IdentityHashMap k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (IdentityHashMap k v)ObjectST s v
native remove
sizeMutable s (IdentityHashMap k v)ST s Int
native size
valuesMutable s (IdentityHashMap k v)STMutable s (Collection v)
native values
data NavigableSet e = native java.util.NavigableSet

A SortedSet extended with navigation methods reporting closest matches for given search targets.

More: JavaDoc

Member Functions

ceilingMutable s (NavigableSet e)eST s e
native ceiling
descendingIteratorMutable s (NavigableSet e)STMutable s (Iterator e)
native descendingIterator
descendingSetMutable s (NavigableSet e)STMutable s (NavigableSet e)
native descendingSet
floorMutable s (NavigableSet e)eST s e
native floor
headSetMutable s (NavigableSet e) → e → BoolSTMutable s (NavigableSet e)
         | Mutable s (NavigableSet e) → e → STMutable s (SortedSet e)
native headSet
headSet𝖆Mutable s (NavigableSet e)eBoolSTMutable s (NavigableSet e)
native headSet  overloads headSet
headSet𝖇Mutable s (NavigableSet e)eSTMutable s (SortedSet e)
native headSet  overloads headSet
higherMutable s (NavigableSet e)eST s e
native higher
iteratorMutable s (NavigableSet e)STMutable s (Iterator e)
native iterator
lowerMutable s (NavigableSet e)eST s e
native lower
pollFirstMutable s (NavigableSet e)ST s e
native pollFirst
pollLastMutable s (NavigableSet e)ST s e
native pollLast
subSetMutable s (NavigableSet e) → e → Bool → e → BoolSTMutable s (NavigableSet e)
        | Mutable s (NavigableSet e) → e → e → STMutable s (SortedSet e)
native subSet
subSet𝖆Mutable s (NavigableSet e)eBooleBoolSTMutable s (NavigableSet e)
native subSet  overloads subSet
subSet𝖇Mutable s (NavigableSet e)eeSTMutable s (SortedSet e)
native subSet  overloads subSet
tailSetMutable s (NavigableSet e) → e → BoolSTMutable s (NavigableSet e)
         | Mutable s (NavigableSet e) → e → STMutable s (SortedSet e)
native tailSet
tailSet𝖆Mutable s (NavigableSet e)eBoolSTMutable s (NavigableSet e)
native tailSet  overloads tailSet
tailSet𝖇Mutable s (NavigableSet e)eSTMutable s (SortedSet e)
native tailSet  overloads tailSet
data LinkedHashSet e = native java.util.LinkedHashSet

Hash table and linked list implementation of the Set interface, with predictable iteration order.

More: JavaDoc

Member Functions

newMutable s (Collection e) → STMutable s (LinkedHashSet e)
     | ()STMutable s (LinkedHashSet e)
     | IntSTMutable s (LinkedHashSet e)
     | IntFloatSTMutable s (LinkedHashSet e)
native new
new𝖆Mutable s (Collection e)STMutable s (LinkedHashSet e)
native new  overloads new
new𝖇()STMutable s (LinkedHashSet e)
native new  overloads new
new𝖈IntSTMutable s (LinkedHashSet e)
native new  overloads new
new𝖉IntFloatSTMutable s (LinkedHashSet e)
native new  overloads new
data AbstractMapSimpleEntry k v = native java.util.AbstractMap.SimpleEntry

An Entry maintaining a key and a value.

More: JavaDoc

Member Functions

equalsMutable s (AbstractMapSimpleEntry k v)ObjectST s Bool
native equals
getKeyMutable s (AbstractMapSimpleEntry k v)ST s k
native getKey
getValueMutable s (AbstractMapSimpleEntry k v)ST s v
native getValue
hashCodeMutable s (AbstractMapSimpleEntry k v)ST s Int
native hashCode
new ∷ k → v → STMutable s (AbstractMapSimpleEntry k v)
     | Mutable s (MapEntry k v) → STMutable s (AbstractMapSimpleEntry k v)
native new
new𝖆kvSTMutable s (AbstractMapSimpleEntry k v)
native new  overloads new
new𝖇Mutable s (MapEntry k v)STMutable s (AbstractMapSimpleEntry k v)
native new  overloads new
setValueMutable s (AbstractMapSimpleEntry k v)vST s v
native setValue
toStringMutable s (AbstractMapSimpleEntry k v)ST s String
native toString
data AbstractQueue e = native java.util.AbstractQueue

This class provides skeletal implementations of some Queue operations.

More: JavaDoc

Member Functions

addMutable s (AbstractQueue e)eST s Bool
native add
addAllMutable s (AbstractQueue e)Mutable s (Collection e)ST s Bool
native addAll
clearMutable s (AbstractQueue e)ST s ()
native clear
elementMutable s (AbstractQueue e)ST s e
native element
removeMutable s (AbstractQueue e)ST s e
native remove
data AbstractList e = native java.util.AbstractList

This class provides a skeletal implementation of the List interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).

More: JavaDoc

Member Functions

addMutable s (AbstractList e) → Int → e → ST s ()
     | Mutable s (AbstractList e) → e → ST s Bool
native add
addAllMutable s (AbstractList e)IntMutable s (Collection e)ST s Bool
native addAll
add𝖆Mutable s (AbstractList e)InteST s ()
native add  overloads add
add𝖇Mutable s (AbstractList e)eST s Bool
native add  overloads add
clearMutable s (AbstractList e)ST s ()
native clear
equalsMutable s (AbstractList e)ObjectST s Bool
native equals
getMutable s (AbstractList e)IntST s e
native get
hashCodeMutable s (AbstractList e)ST s Int
native hashCode
indexOfMutable s (AbstractList e)ObjectST s Int
native indexOf
iteratorMutable s (AbstractList e)STMutable s (Iterator e)
native iterator
lastIndexOfMutable s (AbstractList e)ObjectST s Int
native lastIndexOf
listIteratorMutable s (AbstractList e) → STMutable s (ListIterator e)
              | Mutable s (AbstractList e) → IntSTMutable s (ListIterator e)
native listIterator
listIterator𝖆Mutable s (AbstractList e)STMutable s (ListIterator e)
native listIterator  overloads listIterator
listIterator𝖇Mutable s (AbstractList e)IntSTMutable s (ListIterator e)
native listIterator  overloads listIterator
removeMutable s (AbstractList e)IntST s e
native remove
setMutable s (AbstractList e)InteST s e
native set
subListMutable s (AbstractList e)IntIntSTMutable s (List e)
native subList
data HashMap k v = native java.util.HashMap

Hash table based implementation of the Map interface.

More: JavaDoc

Member Functions

clearMutable s (HashMap k v)ST s ()
native clear
containsKeyMutable s (HashMap k v)kST s Bool
native containsKey
containsValueMutable s (HashMap k v)kST s Bool
native containsValue
entrySetMutable s (HashMap k v)STMutable s (Set (Mutable s (MapEntry k v)))
native entrySet
fromList ∷ [(k, v)] → STMutable s (HashMap k v)
getMutable s (HashMap k v)kST s (Maybe v)
native get
isEmptyMutable s (HashMap k v)ST s Bool
native isEmpty
keySetMutable s (HashMap k v)STMutable s (Set k)
native keySet
newMutable s (Map k v) → STMutable s (HashMap k v)
     | ()STMutable s (HashMap k v)
     | IntSTMutable s (HashMap k v)
     | IntFloatSTMutable s (HashMap k v)
native new
new𝖆Mutable s (Map k v)STMutable s (HashMap k v)
native new  overloads new
new𝖇()STMutable s (HashMap k v)
native new  overloads new
new𝖈IntSTMutable s (HashMap k v)
native new  overloads new
new𝖉IntFloatSTMutable s (HashMap k v)
native new  overloads new
putMutable s (HashMap k v)kvST s (Maybe v)
native put
putAllMutable s (HashMap k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (HashMap k v)kST s v
native remove
sizeMutable s (HashMap k v)ST s Int
native size
valuesMutable s (HashMap k v)STMutable s (Collection v)
native values
data TreeMap k v = native java.util.TreeMap

A Red-Black tree based NavigableMap implementation.

More: JavaDoc

Member Functions

ceilingEntryMutable s (TreeMap k v)kSTMutable s (MapEntry k v)
native ceilingEntry
ceilingKeyMutable s (TreeMap k v)kST s k
native ceilingKey
clearMutable s (TreeMap k v)ST s ()
native clear
comparatorMutable s (TreeMap k v)ST s (Comparator >)
native comparator
containsKeyMutable s (TreeMap k v)kST s Bool
native containsKey
containsValueMutable s (TreeMap k v)kST s Bool
native containsValue
descendingKeySetMutable s (TreeMap k v)STMutable s (NavigableSet k)
native descendingKeySet
descendingMapMutable s (TreeMap k v)STMutable s (NavigableMap k v)
native descendingMap
entrySetMutable s (TreeMap k v)STMutable s (Set (MapEntry k v))
native entrySet
firstEntryMutable s (TreeMap k v)STMutable s (MapEntry k v)
native firstEntry
firstKeyMutable s (TreeMap k v)ST s k
native firstKey
floorEntryMutable s (TreeMap k v)kSTMutable s (MapEntry k v)
native floorEntry
floorKeyMutable s (TreeMap k v)kST s k
native floorKey
fromList ∷ [(k, v)] → STMutable s (TreeMap k v)
getMutable s (TreeMap k v)kST s (Maybe v)
native get
headMapMutable s (TreeMap k v) → k → BoolSTMutable s (NavigableMap k v)
         | Mutable s (TreeMap k v) → k → STMutable s (SortedMap k v)
native headMap
headMap𝖆Mutable s (TreeMap k v)kBoolSTMutable s (NavigableMap k v)
native headMap  overloads headMap
headMap𝖇Mutable s (TreeMap k v)kSTMutable s (SortedMap k v)
native headMap  overloads headMap
higherEntryMutable s (TreeMap k v)kSTMutable s (MapEntry k v)
native higherEntry
higherKeyMutable s (TreeMap k v)kST s k
native higherKey
keySetMutable s (TreeMap k v)STMutable s (Set k)
native keySet
lastEntryMutable s (TreeMap k v)STMutable s (MapEntry k v)
native lastEntry
lastKeyMutable s (TreeMap k v)ST s k
native lastKey
lowerEntryMutable s (TreeMap k v)kSTMutable s (MapEntry k v)
native lowerEntry
lowerKeyMutable s (TreeMap k v)kST s k
native lowerKey
navigableKeySetMutable s (TreeMap k v)STMutable s (NavigableSet k)
native navigableKeySet
newMutable s (SortedMap k v) → STMutable s (TreeMap k v)
     | Mutable s (Map k v) → STMutable s (TreeMap k v)
     | Comparator k → STMutable s (TreeMap k v)
     | ()STMutable s (TreeMap k v)
native new
new𝖆Mutable s (SortedMap k v)STMutable s (TreeMap k v)
native new  overloads new
new𝖇Mutable s (Map k v)STMutable s (TreeMap k v)
native new  overloads new
new𝖈Comparator kSTMutable s (TreeMap k v)
native new  overloads new
new𝖉()STMutable s (TreeMap k v)
native new  overloads new
pollFirstEntryMutable s (TreeMap k v)STMutable s (MapEntry k v)
native pollFirstEntry
pollLastEntryMutable s (TreeMap k v)STMutable s (MapEntry k v)
native pollLastEntry
putMutable s (TreeMap k v)kvST s v
native put
putAllMutable s (TreeMap k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (TreeMap k v)kST s (Maybe v)
native remove
sizeMutable s (TreeMap k v)ST s Int
native size
subMapMutable s (TreeMap k v) → k → Bool → k → BoolSTMutable s (NavigableMap k v)
        | Mutable s (TreeMap k v) → k → k → STMutable s (SortedMap k v)
native subMap
subMap𝖆Mutable s (TreeMap k v)kBoolkBoolSTMutable s (NavigableMap k v)
native subMap  overloads subMap
subMap𝖇Mutable s (TreeMap k v)kkSTMutable s (SortedMap k v)
native subMap  overloads subMap
tailMapMutable s (TreeMap k v) → k → BoolSTMutable s (NavigableMap k v)
         | Mutable s (TreeMap k v) → k → STMutable s (SortedMap k v)
native tailMap
tailMap𝖆Mutable s (TreeMap k v)kBoolSTMutable s (NavigableMap k v)
native tailMap  overloads tailMap
tailMap𝖇Mutable s (TreeMap k v)kSTMutable s (SortedMap k v)
native tailMap  overloads tailMap
valuesMutable s (TreeMap k v)STMutable s (Collection v)
native values
data Queue e = native java.util.Queue

A collection designed for holding elements prior to processing. Queues typically, but do not necessarily, order elements in a FIFO (first-in-first-out) manner.

More: JavaDoc

Member Functions

addMutable s (Queue e)eST s Bool
native add
elementMutable s (Queue e)ST s e
native element
offerMutable s (Queue e)eST s Bool
native offer
peekMutable s (Queue e)ST s e
native peek
pollMutable s (Queue e)ST s e
native poll
removeMutable s (Queue e)ST s e
native remove
data AbstractCollection e = native java.util.AbstractCollection

This class provides a skeletal implementation of the Collection interface, to minimize the effort required to implement this interface.

More: JavaDoc

Member Functions

addMutable s (AbstractCollection e)eST s Bool
native add
addAllMutable s (AbstractCollection e)Mutable s (Collection e)ST s Bool
native addAll
clearMutable s (AbstractCollection e)ST s ()
native clear
containsMutable s (AbstractCollection e)ObjectST s Bool
native contains
containsAllMutable s (AbstractCollection e)Mutable s (Collection Object)ST s Bool
native containsAll
isEmptyMutable s (AbstractCollection e)ST s Bool
native isEmpty
iteratorMutable s (AbstractCollection e)STMutable s (Iterator e)
native iterator
removeMutable s (AbstractCollection e)eST s Bool
native remove
removeAllMutable s (AbstractCollection e)Mutable s (Collection Object)ST s Bool
native removeAll
retainAllMutable s (AbstractCollection e)Mutable s (Collection Object)ST s Bool
native retainAll
sizeMutable s (AbstractCollection e)ST s Int
native size
toArrayMutable s (AbstractCollection e) → ArrayOf s ObjectSTMutable s (JArray Object)
         | Mutable s (AbstractCollection e) → STMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (AbstractCollection e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (AbstractCollection e)STMutable s (JArray Object)
native toArray  overloads toArray
toStringMutable s (AbstractCollection e)ST s String
native toString
data HashSet e = native java.util.HashSet

This class implements the Set interface, backed by a hash table (actually a HashMap instance). More: JavaDoc

Member Functions

addMutable s (HashSet e)eST s Bool
native add
clearMutable s (HashSet e)ST s ()
native clear
cloneMutable s (HashSet e)ST s Object
native clone
containsMutable s (HashSet e)ObjectST s Bool
native contains
isEmptyMutable s (HashSet e)ST s Bool
native isEmpty
iteratorMutable s (HashSet e)STMutable s (Iterator e)
native iterator
newIntSTMutable s (HashSet e)
     | IntFloatSTMutable s (HashSet e)
     | Mutable s (Collection e) → STMutable s (HashSet e)
     | ()STMutable s (HashSet e)
native new
new𝖆IntSTMutable s (HashSet e)
native new  overloads new
new𝖇IntFloatSTMutable s (HashSet e)
native new  overloads new
new𝖈Mutable s (Collection e)STMutable s (HashSet e)
native new  overloads new
new𝖉()STMutable s (HashSet e)
native new  overloads new
removeMutable s (HashSet e)eST s Bool
native remove
sizeMutable s (HashSet e)ST s Int
native size
data Locale = pure native java.util.Locale

A Locale object represents a specific geographical, political, or cultural region.

More: JavaDoc

Member Functions

canadaLocale
pure native java.util.Locale.CANADA
canada_frenchLocale
pure native java.util.Locale.CANADA_FRENCH
chinaLocale
pure native java.util.Locale.CHINA
chineseLocale
pure native java.util.Locale.CHINESE
cloneLocaleObject
pure native clone
englishLocale
pure native java.util.Locale.ENGLISH
equalsLocaleObjectBool
pure native equals
forLanguageTagStringLocale
pure native java.util.Locale.forLanguageTag
franceLocale
pure native java.util.Locale.FRANCE
frenchLocale
pure native java.util.Locale.FRENCH
germanLocale
pure native java.util.Locale.GERMAN
germanyLocale
pure native java.util.Locale.GERMANY
getAvailableLocales()STMutable s (JArray Locale)
native java.util.Locale.getAvailableLocales
getCountryLocaleString
pure native getCountry
getDefaultLocaleCategoryST s Locale
            | ()ST s Locale
native java.util.Locale.getDefault
getDefault𝖆LocaleCategoryST s Locale
native java.util.Locale.getDefault  overloads getDefault
getDefault𝖇()ST s Locale
native java.util.Locale.getDefault  overloads getDefault
getDisplayCountryLocaleString
                   | LocaleLocaleString
pure native getDisplayCountry
getDisplayCountry𝖆LocaleString
pure native getDisplayCountry  overloads getDisplayCountry
getDisplayCountry𝖇LocaleLocaleString
pure native getDisplayCountry  overloads getDisplayCountry
getDisplayLanguageLocaleString
                    | LocaleLocaleString
pure native getDisplayLanguage
getDisplayLanguage𝖆LocaleString
pure native getDisplayLanguage  overloads getDisplayLanguage
getDisplayLanguage𝖇LocaleLocaleString
pure native getDisplayLanguage  overloads getDisplayLanguage
getDisplayNameLocaleLocaleString
                | LocaleString
pure native getDisplayName
getDisplayName𝖆LocaleLocaleString
pure native getDisplayName  overloads getDisplayName
getDisplayName𝖇LocaleString
pure native getDisplayName  overloads getDisplayName
getDisplayScriptLocaleString
                  | LocaleLocaleString
pure native getDisplayScript
getDisplayScript𝖆LocaleString
pure native getDisplayScript  overloads getDisplayScript
getDisplayScript𝖇LocaleLocaleString
pure native getDisplayScript  overloads getDisplayScript
getDisplayVariantLocaleLocaleString
                   | LocaleString
pure native getDisplayVariant
getDisplayVariant𝖆LocaleLocaleString
pure native getDisplayVariant  overloads getDisplayVariant
getDisplayVariant𝖇LocaleString
pure native getDisplayVariant  overloads getDisplayVariant
getExtensionLocaleCharString
pure native getExtension
getExtensionKeysLocaleSTMutable s (Set Character)
native getExtensionKeys
getISO3CountryLocaleString
pure native getISO3Country
getISO3LanguageLocaleString
pure native getISO3Language
getISOCountries()STMutable s (JArray String)
native java.util.Locale.getISOCountries
getISOLanguages()STMutable s (JArray String)
native java.util.Locale.getISOLanguages
getLanguageLocaleString
pure native getLanguage
getScriptLocaleString
pure native getScript
getUnicodeLocaleAttributesLocaleSTMutable s (Set String)
native getUnicodeLocaleAttributes
getUnicodeLocaleKeysLocaleSTMutable s (Set String)
native getUnicodeLocaleKeys
getUnicodeLocaleTypeLocaleStringString
pure native getUnicodeLocaleType
getVariantLocaleString
pure native getVariant
hashCodeLocaleInt
pure native hashCode
italianLocale
pure native java.util.Locale.ITALIAN
italyLocale
pure native java.util.Locale.ITALY
japanLocale
pure native java.util.Locale.JAPAN
japaneseLocale
pure native java.util.Locale.JAPANESE
koreaLocale
pure native java.util.Locale.KOREA
koreanLocale
pure native java.util.Locale.KOREAN
newStringLocale
     | StringStringLocale
     | StringStringStringLocale
pure native new

Create a Locale like so:

 Locale.new "de"
 Locale.new "de" "AT"   
new𝖆StringLocale
pure native new  overloads new

Create a Locale like so:

 Locale.new "de"
 Locale.new "de" "AT"   
new𝖇StringStringLocale
pure native new  overloads new

Create a Locale like so:

 Locale.new "de"
 Locale.new "de" "AT"   
new𝖈StringStringStringLocale
pure native new  overloads new

Create a Locale like so:

 Locale.new "de"
 Locale.new "de" "AT"   
prcLocale
pure native java.util.Locale.PRC
private_use_extensionChar
pure native java.util.Locale.PRIVATE_USE_EXTENSION
rootLocale
pure native java.util.Locale.ROOT
setDefaultLocaleST s ()
            | LocaleCategoryLocaleST s ()
native java.util.Locale.setDefault
setDefault𝖆LocaleST s ()
native java.util.Locale.setDefault  overloads setDefault
setDefault𝖇LocaleCategoryLocaleST s ()
native java.util.Locale.setDefault  overloads setDefault
simplified_chineseLocale
pure native java.util.Locale.SIMPLIFIED_CHINESE
taiwanLocale
pure native java.util.Locale.TAIWAN
toLanguageTagLocaleString
pure native toLanguageTag
toStringLocaleString
pure native toString
traditional_chineseLocale
pure native java.util.Locale.TRADITIONAL_CHINESE
ukLocale
pure native java.util.Locale.UK
unicode_locale_extensionChar
pure native java.util.Locale.UNICODE_LOCALE_EXTENSION
usLocale
pure native java.util.Locale.US
data TreeSet e = native java.util.TreeSet

A NavigableSet implementation based on a TreeMap.

More: JavaDoc

Member Functions

addMutable s (TreeSet e)eST s Bool
native add
addAllMutable s (TreeSet e)Mutable s (Collection e)ST s Bool
native addAll
ceilingMutable s (TreeSet e)eST s e
native ceiling
clearMutable s (TreeSet e)ST s ()
native clear
cloneMutable s (TreeSet e)ST s Object
native clone
comparatorMutable s (TreeSet e)ST s (Comparator >)
native comparator
containsMutable s (TreeSet e)ObjectST s Bool
native contains
descendingIteratorMutable s (TreeSet e)STMutable s (Iterator e)
native descendingIterator
descendingSetMutable s (TreeSet e)STMutable s (NavigableSet e)
native descendingSet
firstMutable s (TreeSet e)ST s e
native first
floorMutable s (TreeSet e)eST s e
native floor
headSetMutable s (TreeSet e) → e → STMutable s (SortedSet e)
         | Mutable s (TreeSet e) → e → BoolSTMutable s (NavigableSet e)
native headSet
headSet𝖆Mutable s (TreeSet e)eSTMutable s (SortedSet e)
native headSet  overloads headSet
headSet𝖇Mutable s (TreeSet e)eBoolSTMutable s (NavigableSet e)
native headSet  overloads headSet
higherMutable s (TreeSet e)eST s e
native higher
isEmptyMutable s (TreeSet e)ST s Bool
native isEmpty
iteratorMutable s (TreeSet e)STMutable s (Iterator e)
native iterator
lastMutable s (TreeSet e)ST s e
native last
lowerMutable s (TreeSet e)eST s e
native lower
newMutable s (SortedSet e) → STMutable s (TreeSet e)
     | Mutable s (Collection e) → STMutable s (TreeSet e)
     | Comparator e → STMutable s (TreeSet e)
     | ()STMutable s (TreeSet e)
native new
new𝖆Mutable s (SortedSet e)STMutable s (TreeSet e)
native new  overloads new
new𝖇Mutable s (Collection e)STMutable s (TreeSet e)
native new  overloads new
new𝖈Comparator eSTMutable s (TreeSet e)
native new  overloads new
new𝖉()STMutable s (TreeSet e)
native new  overloads new
pollFirstMutable s (TreeSet e)ST s e
native pollFirst
pollLastMutable s (TreeSet e)ST s e
native pollLast
removeMutable s (TreeSet e)eST s Bool
native remove
sizeMutable s (TreeSet e)ST s Int
native size
subSetMutable s (TreeSet e) → e → e → STMutable s (SortedSet e)
        | Mutable s (TreeSet e) → e → Bool → e → BoolSTMutable s (NavigableSet e)
native subSet
subSet𝖆Mutable s (TreeSet e)eeSTMutable s (SortedSet e)
native subSet  overloads subSet
subSet𝖇Mutable s (TreeSet e)eBooleBoolSTMutable s (NavigableSet e)
native subSet  overloads subSet
tailSetMutable s (TreeSet e) → e → BoolSTMutable s (NavigableSet e)
         | Mutable s (TreeSet e) → e → STMutable s (SortedSet e)
native tailSet
tailSet𝖆Mutable s (TreeSet e)eBoolSTMutable s (NavigableSet e)
native tailSet  overloads tailSet
tailSet𝖇Mutable s (TreeSet e)eSTMutable s (SortedSet e)
native tailSet  overloads tailSet
data Scanner = native java.util.Scanner

A simple text scanner which can parse primitive types and strings using regular expressions. More: JavaDoc

Member Functions

closeMutable s ScannerST s ()
native close
delimiterMutable s ScannerST s Regex
native delimiter
findInLineMutable s ScannerRegexST s String
            | Mutable s ScannerStringST s String
native findInLine
findInLine𝖆Mutable s ScannerRegexST s String
native findInLine  overloads findInLine
findInLine𝖇Mutable s ScannerStringST s String
native findInLine  overloads findInLine
findWithinHorizonMutable s ScannerStringIntST s String
                   | Mutable s ScannerRegexIntST s String
native findWithinHorizon
findWithinHorizon𝖆Mutable s ScannerStringIntST s String
native findWithinHorizon  overloads findWithinHorizon
findWithinHorizon𝖇Mutable s ScannerRegexIntST s String
native findWithinHorizon  overloads findWithinHorizon
hasNextMutable s ScannerST s Bool
         | Mutable s ScannerStringST s Bool
         | Mutable s ScannerRegexST s Bool
native hasNext
hasNextBigDecimalMutable s ScannerST s Bool
native hasNextBigDecimal
hasNextBigIntegerMutable s ScannerIntST s Bool
                   | Mutable s ScannerST s Bool
native hasNextBigInteger
hasNextBigInteger𝖆Mutable s ScannerIntST s Bool
native hasNextBigInteger  overloads hasNextBigInteger
hasNextBigInteger𝖇Mutable s ScannerST s Bool
native hasNextBigInteger  overloads hasNextBigInteger
hasNextBooleanMutable s ScannerST s Bool
native hasNextBoolean
hasNextByteMutable s ScannerIntST s Bool
             | Mutable s ScannerST s Bool
native hasNextByte
hasNextByte𝖆Mutable s ScannerIntST s Bool
native hasNextByte  overloads hasNextByte
hasNextByte𝖇Mutable s ScannerST s Bool
native hasNextByte  overloads hasNextByte
hasNextDoubleMutable s ScannerST s Bool
native hasNextDouble
hasNextFloatMutable s ScannerST s Bool
native hasNextFloat
hasNextIntMutable s ScannerIntST s Bool
            | Mutable s ScannerST s Bool
native hasNextInt
hasNextInt𝖆Mutable s ScannerIntST s Bool
native hasNextInt  overloads hasNextInt
hasNextInt𝖇Mutable s ScannerST s Bool
native hasNextInt  overloads hasNextInt
hasNextLineMutable s ScannerST s Bool
native hasNextLine
hasNextLongMutable s ScannerST s Bool
             | Mutable s ScannerIntST s Bool
native hasNextLong
hasNextLong𝖆Mutable s ScannerST s Bool
native hasNextLong  overloads hasNextLong
hasNextLong𝖇Mutable s ScannerIntST s Bool
native hasNextLong  overloads hasNextLong
hasNextShortMutable s ScannerIntST s Bool
              | Mutable s ScannerST s Bool
native hasNextShort
hasNextShort𝖆Mutable s ScannerIntST s Bool
native hasNextShort  overloads hasNextShort
hasNextShort𝖇Mutable s ScannerST s Bool
native hasNextShort  overloads hasNextShort
hasNext𝖆Mutable s ScannerST s Bool
native hasNext  overloads hasNext
hasNext𝖇Mutable s ScannerStringST s Bool
native hasNext  overloads hasNext
hasNext𝖈Mutable s ScannerRegexST s Bool
native hasNext  overloads hasNext
ioExceptionMutable s ScannerST s IOException
native ioException
localeMutable s ScannerST s Locale
native locale
matchMutable s ScannerST s MatchResult
native match
newMutableIO InputStreamSTMutable RealWorld Scanner
     | Mutable s ReadableSTMutable s Scanner
     | MutableIO InputStreamStringSTMutable RealWorld Scanner
     | Mutable s FileStringSTMutable s Scanner
         throws FileNotFoundException
     | Mutable s FileSTMutable s Scanner
         throws FileNotFoundException
     | StringSTMutable s Scanner
     | Mutable s ReadableByteChannelSTMutable s Scanner
     | Mutable s ReadableByteChannelStringSTMutable s Scanner
     | PathStringSTMutable s Scanner
         throws IOException
     | PathSTMutable s Scanner
         throws IOException
native new
new𝖆MutableIO InputStreamSTMutable RealWorld Scanner
native new  overloads new
new𝖇Mutable s ReadableSTMutable s Scanner
native new  overloads new
new𝖈MutableIO InputStreamStringSTMutable RealWorld Scanner
native new  overloads new
new𝖉Mutable s FileStringSTMutable s Scanner
native new  throws FileNotFoundException  overloads new
new𝖊Mutable s FileSTMutable s Scanner
native new  throws FileNotFoundException  overloads new
new𝖋StringSTMutable s Scanner
native new  overloads new
new𝖌Mutable s ReadableByteChannelSTMutable s Scanner
native new  overloads new
new𝖍Mutable s ReadableByteChannelStringSTMutable s Scanner
native new  overloads new
new𝖎PathStringSTMutable s Scanner
native new  throws IOException  overloads new
new𝖏PathSTMutable s Scanner
native new  throws IOException  overloads new
nextMutable s ScannerStringST s String
      | Mutable s ScannerRegexST s String
      | Mutable s ScannerST s String
native next
nextBigDecimalMutable s ScannerST s BigDecimal
native nextBigDecimal
nextBigIntegerMutable s ScannerST s Integer
                | Mutable s ScannerIntST s Integer
native nextBigInteger
nextBigInteger𝖆Mutable s ScannerST s Integer
native nextBigInteger  overloads nextBigInteger
nextBigInteger𝖇Mutable s ScannerIntST s Integer
native nextBigInteger  overloads nextBigInteger
nextBooleanMutable s ScannerST s Bool
native nextBoolean
nextByteMutable s ScannerST s Byte
          | Mutable s ScannerIntST s Byte
native nextByte
nextByte𝖆Mutable s ScannerST s Byte
native nextByte  overloads nextByte
nextByte𝖇Mutable s ScannerIntST s Byte
native nextByte  overloads nextByte
nextDoubleMutable s ScannerST s Double
native nextDouble
nextFloatMutable s ScannerST s Float
native nextFloat
nextIntMutable s ScannerST s Int
         | Mutable s ScannerIntST s Int
native nextInt
nextInt𝖆Mutable s ScannerST s Int
native nextInt  overloads nextInt
nextInt𝖇Mutable s ScannerIntST s Int
native nextInt  overloads nextInt
nextLineMutable s ScannerST s String
native nextLine
nextLongMutable s ScannerST s Long
          | Mutable s ScannerIntST s Long
native nextLong
nextLong𝖆Mutable s ScannerST s Long
native nextLong  overloads nextLong
nextLong𝖇Mutable s ScannerIntST s Long
native nextLong  overloads nextLong
nextShortMutable s ScannerST s Short
           | Mutable s ScannerIntST s Short
native nextShort
nextShort𝖆Mutable s ScannerST s Short
native nextShort  overloads nextShort
nextShort𝖇Mutable s ScannerIntST s Short
native nextShort  overloads nextShort
next𝖆Mutable s ScannerStringST s String
native next  overloads next
next𝖇Mutable s ScannerRegexST s String
native next  overloads next
next𝖈Mutable s ScannerST s String
native next  overloads next
radixMutable s ScannerST s Int
native radix
removeMutable s ScannerST s ()
native remove
resetMutable s ScannerSTMutable s Scanner
native reset
skipMutable s ScannerStringSTMutable s Scanner
      | Mutable s ScannerRegexSTMutable s Scanner
native skip
skip𝖆Mutable s ScannerStringSTMutable s Scanner
native skip  overloads skip
skip𝖇Mutable s ScannerRegexSTMutable s Scanner
native skip  overloads skip
toStringMutable s ScannerST s String
native toString
useDelimiterMutable s ScannerStringSTMutable s Scanner
              | Mutable s ScannerRegexSTMutable s Scanner
native useDelimiter
useDelimiter𝖆Mutable s ScannerStringSTMutable s Scanner
native useDelimiter  overloads useDelimiter
useDelimiter𝖇Mutable s ScannerRegexSTMutable s Scanner
native useDelimiter  overloads useDelimiter
useLocaleMutable s ScannerLocaleSTMutable s Scanner
native useLocale
useRadixMutable s ScannerIntSTMutable s Scanner
native useRadix
data Collection e = native java.util.Collection

The root interface in the collection hierarchy.

More: JavaDoc

Member Functions

addMutable s (Collection e)eST s Bool
native add
addAllMutable s (Collection e)Mutable s (Collection e)ST s Bool
native addAll
addAllFromListMutable s (Collection a) → [a]ST s ()
clearMutable s (Collection e)ST s ()
native clear
containsMutable s (Collection e)eST s Bool
native contains
containsAllMutable s (Collection e)Mutable s (Collection e)ST s Bool
native containsAll
equalsMutable s (Collection e)Mutable s (Collection e)ST s Bool
native equals
hashCodeMutable s (Collection e)ST s Int
native hashCode
isEmptyMutable s (Collection e)ST s Bool
native isEmpty
iteratorMutable s (Collection e)STMutable s (Iterator e)
native iterator
removeMutable s (Collection e)eST s Bool
native remove
removeAllMutable s (Collection e)Mutable s (Collection Object)ST s Bool
native removeAll
retainAllMutable s (Collection e)Mutable s (Collection Object)ST s Bool
native retainAll
sizeMutable s (Collection e)ST s Int
native size
toArrayMutable s (Collection e) → STMutable s (JArray Object)
         | Mutable s (Collection e) → ArrayOf s ObjectSTMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (Collection e)STMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (Collection e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
toListMutable s (Collection e)ST s [e]
data EnumMap k v = native java.util.EnumMap

A specialized Map implementation for use with enum type keys. More: JavaDoc

Member Functions

clearMutable s (EnumMap k v)ST s ()
native clear
cloneMutable s (EnumMap k v)STMutable s (EnumMap k v)
native clone
containsKeyMutable s (EnumMap k v)ObjectST s Bool
native containsKey
containsValueMutable s (EnumMap k v)ObjectST s Bool
native containsValue
entrySetMutable s (EnumMap k v)STMutable s (Set (MapEntry k v))
native entrySet
equalsMutable s (EnumMap k v)Mutable s (EnumMap k v)ST s Bool
native equals
getMutable s (EnumMap k v)kST s (Maybe v)
native get
hashCodeMutable s (EnumMap k v)ST s Int
native hashCode
keySetMutable s (EnumMap k v)STMutable s (Set k)
native keySet
newClass k → STMutable s (EnumMap k v)
     | Mutable s (Map k v) → STMutable s (EnumMap k v)
     | Mutable s (EnumMap k v) → STMutable s (EnumMap k v)
native new
new𝖆Class kSTMutable s (EnumMap k v)
native new  overloads new
new𝖇Mutable s (Map k v)STMutable s (EnumMap k v)
native new  overloads new
new𝖈Mutable s (EnumMap k v)STMutable s (EnumMap k v)
native new  overloads new
putMutable s (EnumMap k v)kvST s (Maybe v)
native put
putAllMutable s (EnumMap k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (EnumMap k v)kST s (Maybe v)
native remove
sizeMutable s (EnumMap k v)ST s Int
native size
valuesMutable s (EnumMap k v)STMutable s (Collection v)
native values
data WeakHashMap k v = native java.util.WeakHashMap

Hash table based implementation of the Map interface, with weak keys. More: JavaDoc

Member Functions

clearMutable s (WeakHashMap k v)ST s ()
native clear
containsKeyMutable s (WeakHashMap k v)kST s Bool
native containsKey
containsValueMutable s (WeakHashMap k v)vST s Bool
native containsValue
entrySetMutable s (WeakHashMap k v)STMutable s (Set (MapEntry k v))
native entrySet
getMutable s (WeakHashMap k v)kST s (Maybe v)
native get
isEmptyMutable s (WeakHashMap k v)ST s Bool
native isEmpty
keySetMutable s (WeakHashMap k v)STMutable s (Set k)
native keySet
new()STMutable s (WeakHashMap k v)
     | IntSTMutable s (WeakHashMap k v)
     | IntFloatSTMutable s (WeakHashMap k v)
     | Mutable s (Map k v) → STMutable s (WeakHashMap k v)
native new
new𝖆()STMutable s (WeakHashMap k v)
native new  overloads new
new𝖇IntSTMutable s (WeakHashMap k v)
native new  overloads new
new𝖈IntFloatSTMutable s (WeakHashMap k v)
native new  overloads new
new𝖉Mutable s (Map k v)STMutable s (WeakHashMap k v)
native new  overloads new
putMutable s (WeakHashMap k v)kvST s (Maybe v)
native put
putAllMutable s (WeakHashMap k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (WeakHashMap k v)kST s (Maybe v)
native remove
sizeMutable s (WeakHashMap k v)ST s Int
native size
valuesMutable s (WeakHashMap k v)STMutable s (Collection v)
native values
data ListIterator e = native java.util.ListIterator

An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list.

More: JavaDoc

Member Functions

addMutable s (ListIterator e)eST s ()
native add
hasNextMutable s (ListIterator e)ST s Bool
native hasNext
hasPreviousMutable s (ListIterator e)ST s Bool
native hasPrevious
nextMutable s (ListIterator e)ST s e
native next
nextIndexMutable s (ListIterator e)ST s Int
native nextIndex
previousMutable s (ListIterator e)ST s e
native previous
previousIndexMutable s (ListIterator e)ST s Int
native previousIndex
removeMutable s (ListIterator e)ST s ()
native remove
setMutable s (ListIterator e)eST s ()
native set
data LinkedList e = native java.util.LinkedList

Doubly-linked list implementation of the List and Deque interfaces.

More: JavaDoc

Member Functions

addMutable s (LinkedList e) → e → ST s Bool
     | Mutable s (LinkedList e) → Int → e → ST s ()
native add
addAllMutable s (LinkedList e) → Mutable s (Collection e) → ST s Bool
        | Mutable s (LinkedList e) → IntMutable s (Collection e) → ST s Bool
native addAll
addAll𝖆Mutable s (LinkedList e)Mutable s (Collection e)ST s Bool
native addAll  overloads addAll
addAll𝖇Mutable s (LinkedList e)IntMutable s (Collection e)ST s Bool
native addAll  overloads addAll
addFirstMutable s (LinkedList e)eST s ()
native addFirst
addLastMutable s (LinkedList e)eST s ()
native addLast
add𝖆Mutable s (LinkedList e)eST s Bool
native add  overloads add
add𝖇Mutable s (LinkedList e)InteST s ()
native add  overloads add
clearMutable s (LinkedList e)ST s ()
native clear
cloneMutable s (LinkedList e)ST s Object
native clone
containsMutable s (LinkedList e)eST s Bool
native contains
descendingIteratorMutable s (LinkedList e)STMutable s (Iterator e)
native descendingIterator
elementMutable s (LinkedList e)ST s e
native element
fromList ∷ [a] → STMutable s (LinkedList a)
getMutable s (LinkedList e)IntST s e
native get
getFirstMutable s (LinkedList e)ST s e
native getFirst
getLastMutable s (LinkedList e)ST s e
native getLast
indexOfMutable s (LinkedList e)eST s Int
native indexOf
lastIndexOfMutable s (LinkedList e)eST s Int
native lastIndexOf
listIteratorMutable s (LinkedList e)IntSTMutable s (ListIterator e)
native listIterator
new()STMutable s (LinkedList e)
     | Mutable s (Collection e) → STMutable s (LinkedList e)
native new
new𝖆()STMutable s (LinkedList e)
native new  overloads new
new𝖇Mutable s (Collection e)STMutable s (LinkedList e)
native new  overloads new
offerMutable s (LinkedList e)eST s Bool
native offer
offerFirstMutable s (LinkedList e)eST s Bool
native offerFirst
offerLastMutable s (LinkedList e)eST s Bool
native offerLast
peekMutable s (LinkedList e)ST s e
native peek
peekFirstMutable s (LinkedList e)ST s e
native peekFirst
peekLastMutable s (LinkedList e)ST s e
native peekLast
pollMutable s (LinkedList e)ST s e
native poll
pollFirstMutable s (LinkedList e)ST s e
native pollFirst
pollLastMutable s (LinkedList e)ST s e
native pollLast
popMutable s (LinkedList e)ST s e
native pop
pushMutable s (LinkedList e)eST s ()
native push
removeMutable s (LinkedList e) → IntST s e
        | Mutable s (LinkedList e) → ST s e
        | Mutable s (LinkedList e) → e → ST s Bool
native remove
removeFirstMutable s (LinkedList e)ST s e
native removeFirst
removeFirstOccurrenceMutable s (LinkedList e)eST s Bool
native removeFirstOccurrence
removeLastMutable s (LinkedList e)ST s e
native removeLast
removeLastOccurrenceMutable s (LinkedList e)eST s Bool
native removeLastOccurrence
remove𝖆Mutable s (LinkedList e)IntST s e
native remove  overloads remove
remove𝖇Mutable s (LinkedList e)ST s e
native remove  overloads remove
remove𝖈Mutable s (LinkedList e)eST s Bool
native remove  overloads remove
setMutable s (LinkedList e)InteST s e
native set
sizeMutable s (LinkedList e)ST s Int
native size
toArrayMutable s (LinkedList e) → ArrayOf s ObjectSTMutable s (JArray Object)
         | Mutable s (LinkedList e) → STMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (LinkedList e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (LinkedList e)STMutable s (JArray Object)
native toArray  overloads toArray
data ArrayList e = native java.util.ArrayList

Resizable-array implementation of the List interface.

More: JavaDoc

Member Functions

addMutable s (ArrayList e) → Int → e → ST s ()
     | Mutable s (ArrayList e) → e → ST s Bool
native add
addAllMutable s (ArrayList e) → IntMutable s (Collection e) → ST s Bool
        | Mutable s (ArrayList e) → Mutable s (Collection e) → ST s Bool
native addAll
addAll𝖆Mutable s (ArrayList e)IntMutable s (Collection e)ST s Bool
native addAll  overloads addAll
addAll𝖇Mutable s (ArrayList e)Mutable s (Collection e)ST s Bool
native addAll  overloads addAll
add𝖆Mutable s (ArrayList e)InteST s ()
native add  overloads add
add𝖇Mutable s (ArrayList e)eST s Bool
native add  overloads add
clearMutable s (ArrayList e)ST s ()
native clear
cloneMutable s (ArrayList e)ST s Object
native clone
containsMutable s (ArrayList e)eST s Bool
native contains
ensureCapacityMutable s (ArrayList e)IntST s ()
native ensureCapacity
fromList[a]STMutable s (ArrayList a)
getMutable s (ArrayList e)IntST s e
native get
indexOfMutable s (ArrayList e)eST s Int
native indexOf
isEmptyMutable s (ArrayList e)ST s Bool
native isEmpty
iteratorMutable s (ArrayList e)STMutable s (Iterator e)
native iterator
lastIndexOfMutable s (ArrayList e)eST s Int
native lastIndexOf
listIteratorMutable s (ArrayList e) → IntSTMutable s (ListIterator e)
              | Mutable s (ArrayList e) → STMutable s (ListIterator e)
native listIterator
listIterator𝖆Mutable s (ArrayList e)IntSTMutable s (ListIterator e)
native listIterator  overloads listIterator
listIterator𝖇Mutable s (ArrayList e)STMutable s (ListIterator e)
native listIterator  overloads listIterator
newMutable s (Collection e) → STMutable s (ArrayList e)
     | ()STMutable s (ArrayList e)
     | IntSTMutable s (ArrayList e)
native new
new𝖆Mutable s (Collection e)STMutable s (ArrayList e)
native new  overloads new
new𝖇()STMutable s (ArrayList e)
native new  overloads new
new𝖈IntSTMutable s (ArrayList e)
native new  overloads new
removeMutable s (ArrayList e) → IntST s e
        | Mutable s (ArrayList e) → e → ST s Bool
native remove
removeAllMutable s (ArrayList e)Mutable s (Collection e)ST s Bool
native removeAll
remove𝖆Mutable s (ArrayList e)IntST s e
native remove  overloads remove
remove𝖇Mutable s (ArrayList e)eST s Bool
native remove  overloads remove
retainAllMutable s (ArrayList e)Mutable s (Collection e)ST s Bool
native retainAll
setMutable s (ArrayList e)InteST s e
native set
sizeMutable s (ArrayList e)ST s Int
native size
subListMutable s (ArrayList e)IntIntSTMutable s (List e)
native subList
toArrayMutable s (ArrayList e) → STMutable s (JArray Object)
         | Mutable s (ArrayList e) → ArrayOf s ObjectSTMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (ArrayList e)STMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (ArrayList e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
trimToSizeMutable s (ArrayList e)ST s ()
native trimToSize
data EnumSet e = native java.util.EnumSet

A specialized Set implementation for use with enum types.

More: JavaDoc

Member Functions

allOfClass eSTMutable s (EnumSet e)
native java.util.EnumSet.allOf
cloneMutable s (EnumSet e)STMutable s (EnumSet e)
native clone
complementOfMutable s (EnumSet e)STMutable s (EnumSet e)
native java.util.EnumSet.complementOf
copyOfMutable s (EnumSet e) → STMutable s (EnumSet e)
        | Mutable s (Collection e) → STMutable s (EnumSet e)
native java.util.EnumSet.copyOf
copyOf𝖆Mutable s (EnumSet e)STMutable s (EnumSet e)
native java.util.EnumSet.copyOf  overloads copyOf
copyOf𝖇Mutable s (Collection e)STMutable s (EnumSet e)
native java.util.EnumSet.copyOf  overloads copyOf
from ∷ e → e → e → e → STMutable s (EnumSet e)
      | e → e → e → e → e → STMutable s (EnumSet e)
      | e → ArrayOf s e → STMutable s (EnumSet e)
      | e → STMutable s (EnumSet e)
      | e → e → STMutable s (EnumSet e)
      | e → e → e → STMutable s (EnumSet e)
native java.util.EnumSet.of
from𝖆eeeeSTMutable s (EnumSet e)
native java.util.EnumSet.of  overloads from
from𝖇eeeeeSTMutable s (EnumSet e)
native java.util.EnumSet.of  overloads from
from𝖈eArrayOf s eSTMutable s (EnumSet e)
native java.util.EnumSet.of  overloads from
from𝖉eSTMutable s (EnumSet e)
native java.util.EnumSet.of  overloads from
from𝖊eeSTMutable s (EnumSet e)
native java.util.EnumSet.of  overloads from
from𝖋eeeSTMutable s (EnumSet e)
native java.util.EnumSet.of  overloads from
noneOfClass eSTMutable s (EnumSet e)
native java.util.EnumSet.noneOf
rangeeeSTMutable s (EnumSet e)
native java.util.EnumSet.range
data Vector e = native java.util.Vector

The Vector class implements a growable array of objects.

More: JavaDoc

Member Functions

addMutable s (Vector e) → e → ST s Bool
     | Mutable s (Vector e) → Int → e → ST s ()
native add
addAllMutable s (Vector e) → IntMutable s (Collection e) → ST s Bool
        | Mutable s (Vector e) → Mutable s (Collection e) → ST s Bool
native addAll
addAll𝖆Mutable s (Vector e)IntMutable s (Collection e)ST s Bool
native addAll  overloads addAll
addAll𝖇Mutable s (Vector e)Mutable s (Collection e)ST s Bool
native addAll  overloads addAll
addElementMutable s (Vector e)eST s ()
native addElement
add𝖆Mutable s (Vector e)eST s Bool
native add  overloads add
add𝖇Mutable s (Vector e)InteST s ()
native add  overloads add
capacityMutable s (Vector e)ST s Int
native capacity
clearMutable s (Vector e)ST s ()
native clear
cloneMutable s (Vector e)ST s Object
native clone
containsMutable s (Vector e)eST s Bool
native contains
containsAllMutable s (Vector e)Mutable s (Collection e)ST s Bool
native containsAll
copyIntoMutable s (Vector e)ArrayOf s ObjectST s ()
native copyInto
elementAtMutable s (Vector e)IntST s e
native elementAt
elementsMutable s (Vector e)STMutable s (Enumeration e)
native elements
ensureCapacityMutable s (Vector e)IntST s ()
native ensureCapacity
equalsMutable s (Vector e)eST s Bool
native equals
firstElementMutable s (Vector e)ST s e
native firstElement
fromList[a]STMutable s (Vector a)
getMutable s (Vector e)IntST s e
native get
hashCodeMutable s (Vector e)ST s Int
native hashCode
indexOfMutable s (Vector e) → e → ST s Int
         | Mutable s (Vector e) → e → IntST s Int
native indexOf
indexOf𝖆Mutable s (Vector e)eST s Int
native indexOf  overloads indexOf
indexOf𝖇Mutable s (Vector e)eIntST s Int
native indexOf  overloads indexOf
insertElementAtMutable s (Vector e)eIntST s ()
native insertElementAt
isEmptyMutable s (Vector e)ST s Bool
native isEmpty
iteratorMutable s (Vector e)STMutable s (Iterator e)
native iterator
lastElementMutable s (Vector e)ST s e
native lastElement
lastIndexOfMutable s (Vector e) → e → IntST s Int
             | Mutable s (Vector e) → e → ST s Int
native lastIndexOf
lastIndexOf𝖆Mutable s (Vector e)eIntST s Int
native lastIndexOf  overloads lastIndexOf
lastIndexOf𝖇Mutable s (Vector e)eST s Int
native lastIndexOf  overloads lastIndexOf
listIteratorMutable s (Vector e) → STMutable s (ListIterator e)
              | Mutable s (Vector e) → IntSTMutable s (ListIterator e)
native listIterator
listIterator𝖆Mutable s (Vector e)STMutable s (ListIterator e)
native listIterator  overloads listIterator
listIterator𝖇Mutable s (Vector e)IntSTMutable s (ListIterator e)
native listIterator  overloads listIterator
newMutable s (Collection e) → STMutable s (Vector e)
     | ()STMutable s (Vector e)
     | IntSTMutable s (Vector e)
     | IntIntSTMutable s (Vector e)
native new
new𝖆Mutable s (Collection e)STMutable s (Vector e)
native new  overloads new
new𝖇()STMutable s (Vector e)
native new  overloads new
new𝖈IntSTMutable s (Vector e)
native new  overloads new
new𝖉IntIntSTMutable s (Vector e)
native new  overloads new
removeMutable s (Vector e) → e → ST s Bool
        | Mutable s (Vector e) → IntST s e
native remove
removeAllMutable s (Vector e)Mutable s (Collection e)ST s Bool
native removeAll
removeAllElementsMutable s (Vector e)ST s ()
native removeAllElements
removeElementMutable s (Vector e)eST s Bool
native removeElement
removeElementAtMutable s (Vector e)IntST s ()
native removeElementAt
remove𝖆Mutable s (Vector e)eST s Bool
native remove  overloads remove
remove𝖇Mutable s (Vector e)IntST s e
native remove  overloads remove
retainAllMutable s (Vector e)Mutable s (Collection e)ST s Bool
native retainAll
setMutable s (Vector e)InteST s e
native set
setElementAtMutable s (Vector e)eIntST s ()
native setElementAt
setSizeMutable s (Vector e)IntST s ()
native setSize
sizeMutable s (Vector e)ST s Int
native size
subListMutable s (Vector e)IntIntSTMutable s (List e)
native subList
toArrayMutable s (Vector e) → STMutable s (JArray Object)
         | Mutable s (Vector e) → ArrayOf s ObjectSTMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (Vector e)STMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (Vector e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
toStringMutable s (Vector e)ST s String
native toString
trimToSizeMutable s (Vector e)ST s ()
native trimToSize
data Map k v = native java.util.Map

An object that maps keys to values. More: JavaDoc

Member Functions

addAllFromListMutable s (Map k v) → [(k, v)]ST s ()
clearMutable s (Map k v)ST s ()
native clear
containsKeyMutable s (Map k v)kST s Bool
native containsKey
containsValueMutable s (Map k v)vST s Bool
native containsValue
entrySetMutable s (Map k v)STMutable s (Set (Mutable s (MapEntry k v)))
native entrySet
equalsMutable s (Map k v)Mutable s (Map k v)ST s Bool
native equals
getMutable s (Map k v)kST s (Maybe v)
native get
hashCodeMutable s (Map k v)ST s Int
native hashCode
isEmptyMutable s (Map k v)ST s Bool
native isEmpty
keySetMutable s (Map k v)STMutable s (Set k)
native keySet
putMutable s (Map k v)kvST s (Maybe v)
native put
putAllMutable s (Map k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (Map k v)kST s (Maybe v)
native remove
sizeMutable s (Map k v)ST s Int
native size
toListMutable s (Map k v)ST s [(k, v)]
valuesMutable s (Map k v)STMutable s (Collection v)
native values
data MapEntry k v = native java.util.Map.Entry

A map entry (key-value pair). More: JavaDoc

Member Functions

equalsMutable s (MapEntry k v)Mutable s (MapEntry k v)ST s Bool
native equals
getKeyMutable s (MapEntry k v)ST s k
native getKey
getValueMutable s (MapEntry k v)ST s v
native getValue
hashCodeMutable s (MapEntry k v)ST s Int
native hashCode
setValueMutable s (MapEntry k v)vST s v
native setValue
data AbstractMap k v = native java.util.AbstractMap

This class provides a skeletal implementation of the Map interface, to minimize the effort required to implement this interface. More: JavaDoc

Member Functions

clearMutable s (AbstractMap k v)ST s ()
native clear
containsKeyMutable s (AbstractMap k v)kST s Bool
native containsKey
containsValueMutable s (AbstractMap k v)vST s Bool
native containsValue
entrySetMutable s (AbstractMap k v)STMutable s (Set (Mutable s (MapEntry k v)))
native entrySet
equalsMutable s (AbstractMap k v)Mutable s (AbstractMap k v)ST s Bool
native equals
getMutable s (AbstractMap k v)kST s (Maybe v)
native get
hashCodeMutable s (AbstractMap k v)ST s Int
native hashCode
isEmptyMutable s (AbstractMap k v)ST s Bool
native isEmpty
keySetMutable s (AbstractMap k v)STMutable s (Set k)
native keySet
putMutable s (AbstractMap k v)kvST s (Maybe v)
native put
putAllMutable s (AbstractMap k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (AbstractMap k v)kST s v
native remove
sizeMutable s (AbstractMap k v)ST s Int
native size
toStringMutable s (AbstractMap k v)ST s String
native toString
valuesMutable s (AbstractMap k v)STMutable s (Collection v)
native values
data Formattable = native java.util.Formattable

The Formattable interface must be implemented by any class that needs to perform custom formatting using the s conversion specifier of Formatter.

More: JavaDoc

Member Functions

formatToMutable s FormattableMutable s FormatterIntIntIntST s ()
native formatTo
data SortedMap k v = native java.util.SortedMap

A Map that further provides a total ordering on its keys.

More: JavaDoc

Member Functions

comparatorMutable s (SortedMap k v)ST s (Comparator >)
native comparator
entrySetMutable s (SortedMap k v)STMutable s (Set (MapEntry k v))
native entrySet
firstKeyMutable s (SortedMap k v)ST s k
native firstKey
headMapMutable s (SortedMap k v)kSTMutable s (SortedMap k v)
native headMap
keySetMutable s (SortedMap k v)STMutable s (Set k)
native keySet
lastKeyMutable s (SortedMap k v)ST s k
native lastKey
subMapMutable s (SortedMap k v)kkSTMutable s (SortedMap k v)
native subMap
tailMapMutable s (SortedMap k v)kSTMutable s (SortedMap k v)
native tailMap
valuesMutable s (SortedMap k v)STMutable s (Collection v)
native values
data RandomAccess = native java.util.RandomAccess

Marker interface used by List implementations to indicate that they support fast (generally constant time) random access.

More: JavaDoc

data Iterator e = native java.util.Iterator

An iterator over a collection. More: JavaDoc

Member Functions

fold ∷ (c → a → c) → cMutable s (Iterator a)ST s c

Fold over a java Iterator

Unlike a fold over the result of Iterator.toList, this doesn't need extra memory.

hasNextMutable s (Iterator e)ST s Bool
native hasNext
nextMutable s (Iterator e)ST s e
native next
removeMutable s (Iterator e)ST s ()
native remove
toListMutable s (Iterator e)ST s [e]

Converts the elements of this Iterator to a Frege list. Unfortunately, because the Iterator is mutable, the list is not constructed lazily, but at once. And since it comes out in the wrong order, it must finally be reversed.

This can be deadly when the Iterator has large amounts of data, as there must be 2n list nodes created, at least temporarily.

If all you want to do is to reduce (i.e. fold) the resulting list, consider Iterator.fold, which doesn't expend any additional memory.

data List e = native java.util.List

An ordered collection (also known as a sequence).

More: JavaDoc

Member Functions

addMutable s (List e) → e → ST s Bool
     | Mutable s (List e) → Int → e → ST s ()
native add
addAllMutable s (List e) → IntMutable s (Collection e) → ST s Bool
        | Mutable s (List e) → Mutable s (Collection e) → ST s Bool
native addAll
addAll𝖆Mutable s (List e)IntMutable s (Collection e)ST s Bool
native addAll  overloads addAll
addAll𝖇Mutable s (List e)Mutable s (Collection e)ST s Bool
native addAll  overloads addAll
add𝖆Mutable s (List e)eST s Bool
native add  overloads add
add𝖇Mutable s (List e)InteST s ()
native add  overloads add
clearMutable s (List e)ST s ()
native clear
containsMutable s (List e)eST s Bool
native contains
containsAllMutable s (List e)Mutable s (Collection e)ST s Bool
native containsAll
equalsMutable s (List e)Mutable s (List e)ST s Bool
native equals
getMutable s (List e)IntST s (Maybe e)
native get
hashCodeMutable s (List e)ST s Int
native hashCode
indexOfMutable s (List e)eST s Int
native indexOf
isEmptyMutable s (List e)ST s Bool
native isEmpty
iteratorMutable s (List e)STMutable s (Iterator e)
native iterator
lastIndexOfMutable s (List e)eST s Int
native lastIndexOf
listIteratorMutable s (List e) → STMutable s (ListIterator e)
              | Mutable s (List e) → IntSTMutable s (ListIterator e)
native listIterator
listIterator𝖆Mutable s (List e)STMutable s (ListIterator e)
native listIterator  overloads listIterator
listIterator𝖇Mutable s (List e)IntSTMutable s (ListIterator e)
native listIterator  overloads listIterator
removeMutable s (List e) → e → ST s Bool
        | Mutable s (List e) → IntST s e
native remove
removeAllMutable s (List e)Mutable s (Collection e)ST s Bool
native removeAll
remove𝖆Mutable s (List e)eST s Bool
native remove  overloads remove
remove𝖇Mutable s (List e)IntST s e
native remove  overloads remove
retainAllMutable s (List e)Mutable s (Collection e)ST s Bool
native retainAll
setMutable s (List e)InteST s e
native set
sizeMutable s (List e)ST s Int
native size
subListMutable s (List e)IntIntSTMutable s (List e)
native subList
toArrayMutable s (List e) → STMutable s (JArray Object)
         | Mutable s (List e) → ArrayOf s ObjectSTMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (List e)STMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (List e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
data LocaleBuilder = native java.util.Locale.Builder

Builder is used to build instances of Locale from values configured by the setters.

More: JavaDoc

Member Functions

addUnicodeLocaleAttributeMutable s LocaleBuilderStringSTMutable s LocaleBuilder
native addUnicodeLocaleAttribute
buildMutable s LocaleBuilderST s Locale
native build
clearMutable s LocaleBuilderSTMutable s LocaleBuilder
native clear
clearExtensionsMutable s LocaleBuilderSTMutable s LocaleBuilder
native clearExtensions
new()STMutable s LocaleBuilder
native new
removeUnicodeLocaleAttributeMutable s LocaleBuilderStringSTMutable s LocaleBuilder
native removeUnicodeLocaleAttribute
setExtensionMutable s LocaleBuilderCharStringSTMutable s LocaleBuilder
native setExtension
setLanguageMutable s LocaleBuilderStringSTMutable s LocaleBuilder
native setLanguage
setLanguageTagMutable s LocaleBuilderStringSTMutable s LocaleBuilder
native setLanguageTag
setLocaleMutable s LocaleBuilderLocaleSTMutable s LocaleBuilder
native setLocale
setRegionMutable s LocaleBuilderStringSTMutable s LocaleBuilder
native setRegion
setScriptMutable s LocaleBuilderStringSTMutable s LocaleBuilder
native setScript
setUnicodeLocaleKeywordMutable s LocaleBuilderStringStringSTMutable s LocaleBuilder
native setUnicodeLocaleKeyword
setVariantMutable s LocaleBuilderStringSTMutable s LocaleBuilder
native setVariant
data Set e = native java.util.Set

A collection that contains no duplicate elements.

More: JavaDoc

Member Functions

addMutable s (Set e)eST s Bool
native add
addAllMutable s (Set e)Mutable s (Collection e)ST s Bool
native addAll
clearMutable s (Set e)ST s ()
native clear
containsMutable s (Set e)eST s Bool
native contains
containsAllMutable s (Set e)Mutable s (Collection e)ST s Bool
native containsAll
equalsMutable s (Set e)Mutable s (Set e)ST s Bool
native equals
hashCodeMutable s (Set e)ST s Int
native hashCode
isEmptyMutable s (Set e)ST s Bool
native isEmpty
iteratorMutable s (Set e)STMutable s (Iterator e)
native iterator
removeMutable s (Set e)eST s Bool
native remove
removeAllMutable s (Set e)Mutable s (Collection e)ST s Bool
native removeAll
retainAllMutable s (Set e)Mutable s (Collection e)ST s Bool
native retainAll
sizeMutable s (Set e)ST s Int
native size
toArrayMutable s (Set e) → STMutable s (JArray Object)
         | Mutable s (Set e) → ArrayOf s ObjectSTMutable s (JArray Object)
native toArray
toArray𝖆Mutable s (Set e)STMutable s (JArray Object)
native toArray  overloads toArray
toArray𝖇Mutable s (Set e)ArrayOf s ObjectSTMutable s (JArray Object)
native toArray  overloads toArray
toListMutable s (Set e)ST s [e]
data Arrays = pure native java.util.Arrays

This class contains various methods for manipulating arrays (such as sorting and searching).

More: Javadoc

Member Functions

asListArrayOf s tSTMutable s (List t)
native java.util.Arrays.asList
binarySearchArrayOf s CharIntIntCharST s Int
              | ArrayOf s CharCharST s Int
              | ArrayOf s ByteByteST s Int
              | ArrayOf s ByteIntIntByteST s Int
              | ArrayOf s DoubleDoubleST s Int
              | ArrayOf s IntIntST s Int
              | ArrayOf s IntIntIntIntST s Int
              | ArrayOf s LongIntIntLongST s Int
              | ArrayOf s ShortShortST s Int
              | ArrayOf s ShortIntIntShortST s Int
              | ArrayOf s LongLongST s Int
              | ArrayOf s FloatIntIntFloatST s Int
              | ArrayOf s t → IntInt → t → Comparator > → ST s Int
              | ArrayOf s t → IntInt → t → ST s Int
              | ArrayOf s t → t → Comparator > → ST s Int
              | ArrayOf s DoubleIntIntDoubleST s Int
              | ArrayOf s t → t → ST s Int
              | ArrayOf s FloatFloatST s Int
native java.util.Arrays.binarySearch
binarySearch𝖆ArrayOf s CharIntIntCharST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖇ArrayOf s CharCharST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖈ArrayOf s ByteByteST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖉ArrayOf s ByteIntIntByteST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖊ArrayOf s DoubleDoubleST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖋ArrayOf s IntIntST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖌ArrayOf s IntIntIntIntST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖍ArrayOf s LongIntIntLongST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖎ArrayOf s ShortShortST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖏ArrayOf s ShortIntIntShortST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖐ArrayOf s LongLongST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖑ArrayOf s FloatIntIntFloatST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖒ArrayOf s tIntInttComparator >ST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖓ArrayOf s tIntInttST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖔ArrayOf s ttComparator >ST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖕ArrayOf s DoubleIntIntDoubleST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖖ArrayOf s ttST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
binarySearch𝖗ArrayOf s FloatFloatST s Int
native java.util.Arrays.binarySearch  overloads binarySearch
copyOfArrayOf s IntIntSTMutable s (JArray Int)
        | ArrayOf s ShortIntSTMutable s (JArray Short)
        | ArrayOf s LongIntSTMutable s (JArray Long)
        | ArrayOf s ByteIntSTMutable s (JArray Byte)
        | ArrayOf s t → IntSTMutable s (JArray Object)
        | ArrayOf s BoolIntSTMutable s (JArray Bool)
        | ArrayOf s DoubleIntSTMutable s (JArray Double)
        | ArrayOf s FloatIntSTMutable s (JArray Float)
        | ArrayOf s CharIntSTMutable s (JArray Char)
native java.util.Arrays.copyOf
copyOfRangeArrayOf s BoolIntIntSTMutable s (JArray Bool)
             | ArrayOf s DoubleIntIntSTMutable s (JArray Double)
             | ArrayOf s LongIntIntSTMutable s (JArray Long)
             | ArrayOf s FloatIntIntSTMutable s (JArray Float)
             | ArrayOf s CharIntIntSTMutable s (JArray Char)
             | ArrayOf s t → IntIntSTMutable s (JArray t)
             | ArrayOf s ByteIntIntSTMutable s (JArray Byte)
             | ArrayOf s ShortIntIntSTMutable s (JArray Short)
             | ArrayOf s IntIntIntSTMutable s (JArray Int)
native java.util.Arrays.copyOfRange
copyOfRange𝖆ArrayOf s BoolIntIntSTMutable s (JArray Bool)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖇ArrayOf s DoubleIntIntSTMutable s (JArray Double)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖈ArrayOf s LongIntIntSTMutable s (JArray Long)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖉ArrayOf s FloatIntIntSTMutable s (JArray Float)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖊ArrayOf s CharIntIntSTMutable s (JArray Char)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖋ArrayOf s tIntIntSTMutable s (JArray t)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖌ArrayOf s ByteIntIntSTMutable s (JArray Byte)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖍ArrayOf s ShortIntIntSTMutable s (JArray Short)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOfRange𝖎ArrayOf s IntIntIntSTMutable s (JArray Int)
native java.util.Arrays.copyOfRange  overloads copyOfRange
copyOf𝖆ArrayOf s IntIntSTMutable s (JArray Int)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖇ArrayOf s ShortIntSTMutable s (JArray Short)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖈ArrayOf s LongIntSTMutable s (JArray Long)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖉ArrayOf s ByteIntSTMutable s (JArray Byte)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖊ArrayOf s tIntSTMutable s (JArray Object)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖋ArrayOf s BoolIntSTMutable s (JArray Bool)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖌ArrayOf s DoubleIntSTMutable s (JArray Double)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖍ArrayOf s FloatIntSTMutable s (JArray Float)
native java.util.Arrays.copyOf  overloads copyOf
copyOf𝖎ArrayOf s CharIntSTMutable s (JArray Char)
native java.util.Arrays.copyOf  overloads copyOf
deepEqualsArrayOf s tArrayOf s tST s Bool
native java.util.Arrays.deepEquals
deepHashCodeArrayOf s tST s Int
native java.util.Arrays.deepHashCode
deepToStringArrayOf s tST s String
native java.util.Arrays.deepToString
equalsArrayOf s CharArrayOf s CharST s Bool
        | ArrayOf s ShortArrayOf s ShortST s Bool
        | ArrayOf s IntArrayOf s IntST s Bool
        | ArrayOf s t → ArrayOf s t → ST s Bool
        | ArrayOf s FloatArrayOf s FloatST s Bool
        | ArrayOf s DoubleArrayOf s DoubleST s Bool
        | ArrayOf s BoolArrayOf s BoolST s Bool
        | ArrayOf s ByteArrayOf s ByteST s Bool
        | ArrayOf s LongArrayOf s LongST s Bool
native java.util.Arrays.equals
equals𝖆ArrayOf s CharArrayOf s CharST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖇ArrayOf s ShortArrayOf s ShortST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖈ArrayOf s IntArrayOf s IntST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖉ArrayOf s tArrayOf s tST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖊ArrayOf s FloatArrayOf s FloatST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖋ArrayOf s DoubleArrayOf s DoubleST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖌ArrayOf s BoolArrayOf s BoolST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖍ArrayOf s ByteArrayOf s ByteST s Bool
native java.util.Arrays.equals  overloads equals
equals𝖎ArrayOf s LongArrayOf s LongST s Bool
native java.util.Arrays.equals  overloads equals
fillArrayOf s ShortIntIntShortST s ()
      | ArrayOf s IntIntST s ()
      | ArrayOf s IntIntIntIntST s ()
      | ArrayOf s ShortShortST s ()
      | ArrayOf s DoubleDoubleST s ()
      | ArrayOf s DoubleIntIntDoubleST s ()
      | ArrayOf s FloatFloatST s ()
      | ArrayOf s FloatIntIntFloatST s ()
      | ArrayOf s t → t → ST s ()
      | ArrayOf s t → IntInt → t → ST s ()
      | ArrayOf s CharCharST s ()
      | ArrayOf s CharIntIntCharST s ()
      | ArrayOf s ByteByteST s ()
      | ArrayOf s ByteIntIntByteST s ()
      | ArrayOf s BoolBoolST s ()
      | ArrayOf s BoolIntIntBoolST s ()
      | ArrayOf s LongLongST s ()
      | ArrayOf s LongIntIntLongST s ()
native java.util.Arrays.fill
fill𝖆ArrayOf s ShortIntIntShortST s ()
native java.util.Arrays.fill  overloads fill
fill𝖇ArrayOf s IntIntST s ()
native java.util.Arrays.fill  overloads fill
fill𝖈ArrayOf s IntIntIntIntST s ()
native java.util.Arrays.fill  overloads fill
fill𝖉ArrayOf s ShortShortST s ()
native java.util.Arrays.fill  overloads fill
fill𝖊ArrayOf s DoubleDoubleST s ()
native java.util.Arrays.fill  overloads fill
fill𝖋ArrayOf s DoubleIntIntDoubleST s ()
native java.util.Arrays.fill  overloads fill
fill𝖌ArrayOf s FloatFloatST s ()
native java.util.Arrays.fill  overloads fill
fill𝖍ArrayOf s FloatIntIntFloatST s ()
native java.util.Arrays.fill  overloads fill
fill𝖎ArrayOf s ttST s ()
native java.util.Arrays.fill  overloads fill
fill𝖏ArrayOf s tIntInttST s ()
native java.util.Arrays.fill  overloads fill
fill𝖐ArrayOf s CharCharST s ()
native java.util.Arrays.fill  overloads fill
fill𝖑ArrayOf s CharIntIntCharST s ()
native java.util.Arrays.fill  overloads fill
fill𝖒ArrayOf s ByteByteST s ()
native java.util.Arrays.fill  overloads fill
fill𝖓ArrayOf s ByteIntIntByteST s ()
native java.util.Arrays.fill  overloads fill
fill𝖔ArrayOf s BoolBoolST s ()
native java.util.Arrays.fill  overloads fill
fill𝖕ArrayOf s BoolIntIntBoolST s ()
native java.util.Arrays.fill  overloads fill
fill𝖖ArrayOf s LongLongST s ()
native java.util.Arrays.fill  overloads fill
fill𝖗ArrayOf s LongIntIntLongST s ()
native java.util.Arrays.fill  overloads fill
hashCodeArrayOf s ByteST s Int
          | ArrayOf s BoolST s Int
          | ArrayOf s FloatST s Int
          | ArrayOf s DoubleST s Int
          | ArrayOf s t → ST s Int
          | ArrayOf s LongST s Int
          | ArrayOf s IntST s Int
          | ArrayOf s ShortST s Int
          | ArrayOf s CharST s Int
native java.util.Arrays.hashCode
hashCode𝖆ArrayOf s ByteST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖇ArrayOf s BoolST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖈ArrayOf s FloatST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖉ArrayOf s DoubleST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖊ArrayOf s tST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖋ArrayOf s LongST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖌ArrayOf s IntST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖍ArrayOf s ShortST s Int
native java.util.Arrays.hashCode  overloads hashCode
hashCode𝖎ArrayOf s CharST s Int
native java.util.Arrays.hashCode  overloads hashCode
sortArrayOf s t → IntIntST s ()
      | ArrayOf s FloatST s ()
      | ArrayOf s DoubleST s ()
      | ArrayOf s DoubleIntIntST s ()
      | ArrayOf s FloatIntIntST s ()
      | ArrayOf s t → ST s ()
      | ArrayOf s ShortIntIntST s ()
      | ArrayOf s ShortST s ()
      | ArrayOf s LongIntIntST s ()
      | ArrayOf s LongST s ()
      | ArrayOf s ByteIntIntST s ()
      | ArrayOf s ByteST s ()
      | ArrayOf s CharIntIntST s ()
      | ArrayOf s CharST s ()
      | ArrayOf s IntIntIntST s ()
      | ArrayOf s t → IntIntComparator t → ST s ()
      | ArrayOf s t → Comparator t → ST s ()
      | ArrayOf s IntST s ()
native java.util.Arrays.sort
sort𝖆ArrayOf s tIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖇ArrayOf s FloatST s ()
native java.util.Arrays.sort  overloads sort
sort𝖈ArrayOf s DoubleST s ()
native java.util.Arrays.sort  overloads sort
sort𝖉ArrayOf s DoubleIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖊ArrayOf s FloatIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖋ArrayOf s tST s ()
native java.util.Arrays.sort  overloads sort
sort𝖌ArrayOf s ShortIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖍ArrayOf s ShortST s ()
native java.util.Arrays.sort  overloads sort
sort𝖎ArrayOf s LongIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖏ArrayOf s LongST s ()
native java.util.Arrays.sort  overloads sort
sort𝖐ArrayOf s ByteIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖑ArrayOf s ByteST s ()
native java.util.Arrays.sort  overloads sort
sort𝖒ArrayOf s CharIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖓ArrayOf s CharST s ()
native java.util.Arrays.sort  overloads sort
sort𝖔ArrayOf s IntIntIntST s ()
native java.util.Arrays.sort  overloads sort
sort𝖕ArrayOf s tIntIntComparator tST s ()
native java.util.Arrays.sort  overloads sort
sort𝖖ArrayOf s tComparator tST s ()
native java.util.Arrays.sort  overloads sort
sort𝖗ArrayOf s IntST s ()
native java.util.Arrays.sort  overloads sort
toStringArrayOf s BoolST s String
          | ArrayOf s FloatST s String
          | ArrayOf s DoubleST s String
          | ArrayOf s t → ST s String
          | ArrayOf s LongST s String
          | ArrayOf s IntST s String
          | ArrayOf s ShortST s String
          | ArrayOf s CharST s String
          | ArrayOf s ByteST s String
native java.util.Arrays.toString
toString𝖆ArrayOf s BoolST s String
native java.util.Arrays.toString  overloads toString
toString𝖇ArrayOf s FloatST s String
native java.util.Arrays.toString  overloads toString
toString𝖈ArrayOf s DoubleST s String
native java.util.Arrays.toString  overloads toString
toString𝖉ArrayOf s tST s String
native java.util.Arrays.toString  overloads toString
toString𝖊ArrayOf s LongST s String
native java.util.Arrays.toString  overloads toString
toString𝖋ArrayOf s IntST s String
native java.util.Arrays.toString  overloads toString
toString𝖌ArrayOf s ShortST s String
native java.util.Arrays.toString  overloads toString
toString𝖍ArrayOf s CharST s String
native java.util.Arrays.toString  overloads toString
toString𝖎ArrayOf s ByteST s String
native java.util.Arrays.toString  overloads toString
data BitSet = native java.util.BitSet

This class implements a vector of bits that grows as needed.

More: JavaDoc

Member Functions

andMutable s BitSetMutable s BitSetST s ()
native and
andNotMutable s BitSetMutable s BitSetST s ()
native andNot
cardinalityMutable s BitSetST s Int
native cardinality
clearMutable s BitSetIntST s ()
       | Mutable s BitSetIntIntST s ()
       | Mutable s BitSetST s ()
native clear
clear𝖆Mutable s BitSetIntST s ()
native clear  overloads clear
clear𝖇Mutable s BitSetIntIntST s ()
native clear  overloads clear
clear𝖈Mutable s BitSetST s ()
native clear  overloads clear
cloneMutable s BitSetST s Object
native clone
equalsMutable s BitSetObjectST s Bool
native equals
flipMutable s BitSetIntIntST s ()
      | Mutable s BitSetIntST s ()
native flip
flip𝖆Mutable s BitSetIntIntST s ()
native flip  overloads flip
flip𝖇Mutable s BitSetIntST s ()
native flip  overloads flip
getMutable s BitSetIntIntSTMutable s BitSet
     | Mutable s BitSetIntST s Bool
native get
get𝖆Mutable s BitSetIntIntSTMutable s BitSet
native get  overloads get
get𝖇Mutable s BitSetIntST s Bool
native get  overloads get
hashCodeMutable s BitSetST s Int
native hashCode
intersectsMutable s BitSetMutable s BitSetST s Bool
native intersects
isEmptyMutable s BitSetST s Bool
native isEmpty
lengthMutable s BitSetST s Int
native length
newIntSTMutable s BitSet
     | ()STMutable s BitSet
native new
new𝖆IntSTMutable s BitSet
native new  overloads new
new𝖇()STMutable s BitSet
native new  overloads new
nextClearBitMutable s BitSetIntST s Int
native nextClearBit
nextSetBitMutable s BitSetIntST s Int
native nextSetBit
orMutable s BitSetMutable s BitSetST s ()
native or
previousClearBitMutable s BitSetIntST s Int
native previousClearBit
previousSetBitMutable s BitSetIntST s Int
native previousSetBit
setMutable s BitSetIntST s ()
     | Mutable s BitSetIntBoolST s ()
     | Mutable s BitSetIntIntST s ()
     | Mutable s BitSetIntIntBoolST s ()
native set
set𝖆Mutable s BitSetIntST s ()
native set  overloads set
set𝖇Mutable s BitSetIntBoolST s ()
native set  overloads set
set𝖈Mutable s BitSetIntIntST s ()
native set  overloads set
set𝖉Mutable s BitSetIntIntBoolST s ()
native set  overloads set
sizeMutable s BitSetST s Int
native size
toByteArrayMutable s BitSetSTMutable s (JArray Byte)
native toByteArray
toLongArrayMutable s BitSetSTMutable s (JArray Long)
native toLongArray
toStringMutable s BitSetST s String
native toString
valueOfMutable s ByteBufferSTMutable s BitSet
         | ArrayOf s LongSTMutable s BitSet
         | Mutable s LongBufferSTMutable s BitSet
         | ArrayOf s ByteSTMutable s BitSet
native java.util.BitSet.valueOf
valueOf𝖆Mutable s ByteBufferSTMutable s BitSet
native java.util.BitSet.valueOf  overloads valueOf
valueOf𝖇ArrayOf s LongSTMutable s BitSet
native java.util.BitSet.valueOf  overloads valueOf
valueOf𝖈Mutable s LongBufferSTMutable s BitSet
native java.util.BitSet.valueOf  overloads valueOf
valueOf𝖉ArrayOf s ByteSTMutable s BitSet
native java.util.BitSet.valueOf  overloads valueOf
xorMutable s BitSetMutable s BitSetST s ()
native xor
data Date = native java.util.Date

The class Date represents a specific instant in time, with millisecond precision.

More: JavaDoc

Several methods are deprecated meanwhile. They are simply commented out here

Member Functions

afterMutable s DateMutable s DateST s Bool
native after
beforeMutable s DateMutable s DateST s Bool
native before
cloneMutable s DateST s Object
native clone
compareToMutable s DateMutable s DateST s Int
native compareTo
equalsMutable s DateObjectST s Bool
native equals
getTimeMutable s DateST s Long
native getTime
hashCodeMutable s DateST s Int
native hashCode
newLongSTMutable s Date
     | ()STMutable RealWorld Date
native new
new𝖆LongSTMutable s Date
native new  overloads new
new𝖇()STMutable RealWorld Date
native new  overloads new
parseStringLong
pure native java.util.Date.parse
setTimeMutable s DateLongST s ()
native setTime
toStringMutable s DateST s String
native toString
uTCIntIntIntIntIntIntLong
pure native java.util.Date.UTC
data TimeZone = pure native java.util.TimeZone

TimeZone represents a time zone offset, and also figures out daylight savings.

More: JavaDoc

Member Functions

cloneTimeZoneObject
pure native clone
getAvailableIDs()STMutable s (JArray String)
                 | IntSTMutable s (JArray String)
native java.util.TimeZone.getAvailableIDs
getAvailableIDs𝖆()STMutable s (JArray String)
native java.util.TimeZone.getAvailableIDs  overloads getAvailableIDs
getAvailableIDs𝖇IntSTMutable s (JArray String)
native java.util.TimeZone.getAvailableIDs  overloads getAvailableIDs
getDSTSavingsTimeZoneInt
pure native getDSTSavings
getDefault()ST s TimeZone
native java.util.TimeZone.getDefault
getDisplayNameTimeZoneBoolIntLocaleString
                | TimeZoneString
                | TimeZoneBoolIntString
                | TimeZoneLocaleString
pure native getDisplayName
getDisplayName𝖆TimeZoneBoolIntLocaleString
pure native getDisplayName  overloads getDisplayName
getDisplayName𝖇TimeZoneString
pure native getDisplayName  overloads getDisplayName
getDisplayName𝖈TimeZoneBoolIntString
pure native getDisplayName  overloads getDisplayName
getDisplayName𝖉TimeZoneLocaleString
pure native getDisplayName  overloads getDisplayName
getIDTimeZoneString
pure native getID
getOffsetTimeZoneIntIntIntIntIntIntInt
           | TimeZoneLongInt
pure native getOffset
getOffset𝖆TimeZoneIntIntIntIntIntIntInt
pure native getOffset  overloads getOffset
getOffset𝖇TimeZoneLongInt
pure native getOffset  overloads getOffset
getRawOffsetTimeZoneInt
pure native getRawOffset
getTimeZoneStringTimeZone
pure native java.util.TimeZone.getTimeZone
hasSameRulesTimeZoneTimeZoneBool
pure native hasSameRules
inDaylightTimeTimeZoneMutable s DateST s Bool
native inDaylightTime
longInt
pure native java.util.TimeZone.LONG
observesDaylightTimeTimeZoneBool
pure native observesDaylightTime
setDefaultTimeZoneST s ()
native java.util.TimeZone.setDefault
setIDTimeZoneStringST s ()
native setID
setRawOffsetTimeZoneIntST s ()
native setRawOffset
shortInt
pure native java.util.TimeZone.SHORT
useDaylightTimeTimeZoneBool
pure native useDaylightTime
data Calendar = native java.util.Calendar

The Calendar class is an abstract class that provides methods for converting between a specific instant in time and a set of calendar fields such as YEAR, MONTH, DAYOFMONTH, HOUR, and so on, and for manipulating the calendar fields, such as getting the date of the next week.

More: JavaDoc

Member Functions

addMutable s CalendarIntIntST s ()
native add
afterMutable s CalendarObjectST s Bool
native after
all_stylesInt
pure native java.util.Calendar.ALL_STYLES
amInt
pure native java.util.Calendar.AM
am_pmInt
pure native java.util.Calendar.AM_PM
aprilInt
pure native java.util.Calendar.APRIL
augustInt
pure native java.util.Calendar.AUGUST
beforeMutable s CalendarObjectST s Bool
native before
clearMutable s CalendarST s ()
       | Mutable s CalendarIntST s ()
native clear
clear𝖆Mutable s CalendarST s ()
native clear  overloads clear
clear𝖇Mutable s CalendarIntST s ()
native clear  overloads clear
cloneMutable s CalendarST s Object
native clone
compareToMutable s CalendarMutable s CalendarST s Int
native compareTo
dateInt
pure native java.util.Calendar.DATE
day_of_monthInt
pure native java.util.Calendar.DAY_OF_MONTH
day_of_weekInt
pure native java.util.Calendar.DAY_OF_WEEK
day_of_week_in_monthInt
pure native java.util.Calendar.DAY_OF_WEEK_IN_MONTH
day_of_yearInt
pure native java.util.Calendar.DAY_OF_YEAR
decemberInt
pure native java.util.Calendar.DECEMBER
dst_offsetInt
pure native java.util.Calendar.DST_OFFSET
equalsMutable s CalendarObjectST s Bool
native equals
eraInt
pure native java.util.Calendar.ERA
februaryInt
pure native java.util.Calendar.FEBRUARY
field_countInt
pure native java.util.Calendar.FIELD_COUNT
fridayInt
pure native java.util.Calendar.FRIDAY
getMutable s CalendarIntST s Int
native get
getActualMaximumMutable s CalendarIntST s Int
native getActualMaximum
getActualMinimumMutable s CalendarIntST s Int
native getActualMinimum
getAvailableLocales()STMutable s (JArray Locale)
native java.util.Calendar.getAvailableLocales
getDisplayNameMutable s CalendarIntIntLocaleST s String
native getDisplayName
getDisplayNamesMutable s CalendarIntIntLocaleSTMutable s (Map String Int)
native getDisplayNames
getFirstDayOfWeekMutable s CalendarST s Int
native getFirstDayOfWeek
getGreatestMinimumMutable s CalendarIntST s Int
native getGreatestMinimum
getInstance()STMutable s Calendar
             | TimeZoneSTMutable s Calendar
             | LocaleSTMutable s Calendar
             | TimeZoneLocaleSTMutable s Calendar
native java.util.Calendar.getInstance
getInstance𝖆()STMutable s Calendar
native java.util.Calendar.getInstance  overloads getInstance
getInstance𝖇TimeZoneSTMutable s Calendar
native java.util.Calendar.getInstance  overloads getInstance
getInstance𝖈LocaleSTMutable s Calendar
native java.util.Calendar.getInstance  overloads getInstance
getInstance𝖉TimeZoneLocaleSTMutable s Calendar
native java.util.Calendar.getInstance  overloads getInstance
getLeastMaximumMutable s CalendarIntST s Int
native getLeastMaximum
getMaximumMutable s CalendarIntST s Int
native getMaximum
getMinimalDaysInFirstWeekMutable s CalendarST s Int
native getMinimalDaysInFirstWeek
getMinimumMutable s CalendarIntST s Int
native getMinimum
getTimeMutable s CalendarSTMutable s Date
native getTime
getTimeInMillisMutable s CalendarST s Long
native getTimeInMillis
getTimeZoneMutable s CalendarST s TimeZone
native getTimeZone
getWeekYearMutable s CalendarST s Int
native getWeekYear
getWeeksInWeekYearMutable s CalendarST s Int
native getWeeksInWeekYear
hashCodeMutable s CalendarST s Int
native hashCode
hourInt
pure native java.util.Calendar.HOUR
hour_of_dayInt
pure native java.util.Calendar.HOUR_OF_DAY
isLenientMutable s CalendarST s Bool
native isLenient
isSetMutable s CalendarIntST s Bool
native isSet
isWeekDateSupportedMutable s CalendarST s Bool
native isWeekDateSupported
januaryInt
pure native java.util.Calendar.JANUARY
julyInt
pure native java.util.Calendar.JULY
juneInt
pure native java.util.Calendar.JUNE
longInt
pure native java.util.Calendar.LONG
marchInt
pure native java.util.Calendar.MARCH
mayInt
pure native java.util.Calendar.MAY
millisecondInt
pure native java.util.Calendar.MILLISECOND
minuteInt
pure native java.util.Calendar.MINUTE
mondayInt
pure native java.util.Calendar.MONDAY
monthInt
pure native java.util.Calendar.MONTH
novemberInt
pure native java.util.Calendar.NOVEMBER
octoberInt
pure native java.util.Calendar.OCTOBER
pmInt
pure native java.util.Calendar.PM
rollMutable s CalendarIntBoolST s ()
      | Mutable s CalendarIntIntST s ()
native roll
roll𝖆Mutable s CalendarIntBoolST s ()
native roll  overloads roll
roll𝖇Mutable s CalendarIntIntST s ()
native roll  overloads roll
saturdayInt
pure native java.util.Calendar.SATURDAY
secondInt
pure native java.util.Calendar.SECOND
septemberInt
pure native java.util.Calendar.SEPTEMBER
setMutable s CalendarIntIntIntIntIntST s ()
     | Mutable s CalendarIntIntST s ()
     | Mutable s CalendarIntIntIntST s ()
     | Mutable s CalendarIntIntIntIntIntIntST s ()
native set
setFirstDayOfWeekMutable s CalendarIntST s ()
native setFirstDayOfWeek
setLenientMutable s CalendarBoolST s ()
native setLenient
setMinimalDaysInFirstWeekMutable s CalendarIntST s ()
native setMinimalDaysInFirstWeek
setTimeMutable s CalendarMutable s DateST s ()
native setTime
setTimeInMillisMutable s CalendarLongST s ()
native setTimeInMillis
setTimeZoneMutable s CalendarTimeZoneST s ()
native setTimeZone
setWeekDateMutable s CalendarIntIntIntST s ()
native setWeekDate
set𝖆Mutable s CalendarIntIntIntIntIntST s ()
native set  overloads set
set𝖇Mutable s CalendarIntIntST s ()
native set  overloads set
set𝖈Mutable s CalendarIntIntIntST s ()
native set  overloads set
set𝖉Mutable s CalendarIntIntIntIntIntIntST s ()
native set  overloads set
shortInt
pure native java.util.Calendar.SHORT
sundayInt
pure native java.util.Calendar.SUNDAY
thursdayInt
pure native java.util.Calendar.THURSDAY
toStringMutable s CalendarST s String
native toString
tuesdayInt
pure native java.util.Calendar.TUESDAY
undecimberInt
pure native java.util.Calendar.UNDECIMBER
wednesdayInt
pure native java.util.Calendar.WEDNESDAY
week_of_monthInt
pure native java.util.Calendar.WEEK_OF_MONTH
week_of_yearInt
pure native java.util.Calendar.WEEK_OF_YEAR
yearInt
pure native java.util.Calendar.YEAR
zone_offsetInt
pure native java.util.Calendar.ZONE_OFFSET
data GregorianCalendar = native java.util.GregorianCalendar

GregorianCalendar is a concrete subclass of Calendar and provides the standard calendar system used by most of the world.

More: JavaDoc

Member Functions

adInt
pure native java.util.GregorianCalendar.AD
addMutable s GregorianCalendarIntIntST s ()
native add
bcInt
pure native java.util.GregorianCalendar.BC
cloneMutable s GregorianCalendarST s Object
native clone
equalsMutable s GregorianCalendarObjectST s Bool
native equals
getActualMaximumMutable s GregorianCalendarIntST s Int
native getActualMaximum
getActualMinimumMutable s GregorianCalendarIntST s Int
native getActualMinimum
getGreatestMinimumMutable s GregorianCalendarIntST s Int
native getGreatestMinimum
getGregorianChangeMutable s GregorianCalendarSTMutable s Date
native getGregorianChange
getLeastMaximumMutable s GregorianCalendarIntST s Int
native getLeastMaximum
getMaximumMutable s GregorianCalendarIntST s Int
native getMaximum
getMinimumMutable s GregorianCalendarIntST s Int
native getMinimum
getTimeZoneMutable s GregorianCalendarST s TimeZone
native getTimeZone
getWeekYearMutable s GregorianCalendarST s Int
native getWeekYear
getWeeksInWeekYearMutable s GregorianCalendarST s Int
native getWeeksInWeekYear
hashCodeMutable s GregorianCalendarST s Int
native hashCode
isLeapYearMutable s GregorianCalendarIntST s Bool
native isLeapYear
isWeekDateSupportedMutable s GregorianCalendarST s Bool
native isWeekDateSupported
newIntIntIntSTMutable s GregorianCalendar
     | IntIntIntIntIntSTMutable s GregorianCalendar
     | IntIntIntIntIntIntSTMutable s GregorianCalendar
     | ()STMutable s GregorianCalendar
     | TimeZoneSTMutable s GregorianCalendar
     | LocaleSTMutable s GregorianCalendar
     | TimeZoneLocaleSTMutable s GregorianCalendar
native new
new𝖆IntIntIntSTMutable s GregorianCalendar
native new  overloads new
new𝖇IntIntIntIntIntSTMutable s GregorianCalendar
native new  overloads new
new𝖈IntIntIntIntIntIntSTMutable s GregorianCalendar
native new  overloads new
new𝖉()STMutable s GregorianCalendar
native new  overloads new
new𝖊TimeZoneSTMutable s GregorianCalendar
native new  overloads new
new𝖋LocaleSTMutable s GregorianCalendar
native new  overloads new
new𝖌TimeZoneLocaleSTMutable s GregorianCalendar
native new  overloads new
rollMutable s GregorianCalendarIntIntST s ()
      | Mutable s GregorianCalendarIntBoolST s ()
native roll
roll𝖆Mutable s GregorianCalendarIntIntST s ()
native roll  overloads roll
roll𝖇Mutable s GregorianCalendarIntBoolST s ()
native roll  overloads roll
setGregorianChangeMutable s GregorianCalendarMutable s DateST s ()
native setGregorianChange
setTimeZoneMutable s GregorianCalendarTimeZoneST s ()
native setTimeZone
setWeekDateMutable s GregorianCalendarIntIntIntST s ()
native setWeekDate
data Collections = pure native java.util.Collections

This class consists exclusively of static methods that operate on or return collections.

More: JavaDoc

Member Functions

addAllMutable s (Collection t)ArrayOf s tST s Bool
native java.util.Collections.addAll
asLifoQueueMutable s (Deque t)STMutable s (Queue t)
native java.util.Collections.asLifoQueue
binarySearchMutable s (List (Comparable t)) → t → ST s Int
              | Mutable s (List t) → t → Comparator t → ST s Int
native java.util.Collections.binarySearch
binarySearch𝖆Mutable s (List (Comparable t))tST s Int
native java.util.Collections.binarySearch  overloads binarySearch
binarySearch𝖇Mutable s (List t)tComparator tST s Int
native java.util.Collections.binarySearch  overloads binarySearch
checkedCollectionMutable s (Collection e)Class eSTMutable s (Collection e)
native java.util.Collections.checkedCollection
checkedListMutable s (List e)Class eSTMutable s (List e)
native java.util.Collections.checkedList
checkedMapMutable s (Map k v)Class kClass vSTMutable s (Map k v)
native java.util.Collections.checkedMap
checkedSetMutable s (Set e)Class eSTMutable s (Set e)
native java.util.Collections.checkedSet
checkedSortedMapMutable s (SortedMap k v)Class kClass vSTMutable s (SortedMap k v)
native java.util.Collections.checkedSortedMap
checkedSortedSetMutable s (SortedSet e)Class eSTMutable s (SortedSet e)
native java.util.Collections.checkedSortedSet
copyMutable s (List t)Mutable s (List t)ST s ()
native java.util.Collections.copy
disjointMutable s (Collection Object)Mutable s (Collection Object)ST s Bool
native java.util.Collections.disjoint
emptyEnumeration()STMutable s (Enumeration t)
native java.util.Collections.emptyEnumeration
emptyIterator()STMutable s (Iterator t)
native java.util.Collections.emptyIterator
emptyList()STMutable s (List t)
native java.util.Collections.emptyList
emptyListIterator()STMutable s (ListIterator t)
native java.util.Collections.emptyListIterator
emptyMap()STMutable s (Map k v)
native java.util.Collections.emptyMap
emptySet()STMutable s (Set t)
native java.util.Collections.emptySet
empty_listSTMutable s (List e)
native java.util.Collections.EMPTY_LIST
empty_mapSTMutable s (Map k v)
native java.util.Collections.EMPTY_MAP
empty_setSTMutable s (Set e)
native java.util.Collections.EMPTY_SET
enumerationMutable s (Collection t)STMutable s (Enumeration t)
native java.util.Collections.enumeration
fillMutable s (List t)tST s ()
native java.util.Collections.fill
frequencyMutable s (Collection Object)ObjectST s Int
native java.util.Collections.frequency
indexOfSubListMutable s (List Object)Mutable s (List Object)ST s Int
native java.util.Collections.indexOfSubList
lastIndexOfSubListMutable s (List Object)Mutable s (List Object)ST s Int
native java.util.Collections.lastIndexOfSubList
listMutable s (Enumeration t)STMutable s (ArrayList t)
native java.util.Collections.list
nCopiesInttSTMutable s (List t)
native java.util.Collections.nCopies
newSetFromMapMutable s (Map e Boolean)STMutable s (Set e)
native java.util.Collections.newSetFromMap
replaceAllMutable s (List t)ttST s Bool
native java.util.Collections.replaceAll
reverseMutable s (List Object)ST s ()
native java.util.Collections.reverse
reverseOrder()ST s (Comparator t)
              | Comparator t → ST s (Comparator t)
native java.util.Collections.reverseOrder
reverseOrder𝖆()ST s (Comparator t)
native java.util.Collections.reverseOrder  overloads reverseOrder
reverseOrder𝖇Comparator tST s (Comparator t)
native java.util.Collections.reverseOrder  overloads reverseOrder
rotateMutable s (List Object)IntST s ()
native java.util.Collections.rotate
shuffleMutable s (List Object) → Mutable s RandomST s ()
         | Mutable s (List Object) → ST s ()
native java.util.Collections.shuffle
shuffle𝖆Mutable s (List Object)Mutable s RandomST s ()
native java.util.Collections.shuffle  overloads shuffle
shuffle𝖇Mutable s (List Object)ST s ()
native java.util.Collections.shuffle  overloads shuffle
singletontSTMutable s (Set t)
native java.util.Collections.singleton
singletonListtSTMutable s (List t)
native java.util.Collections.singletonList
singletonMapkvSTMutable s (Map k v)
native java.util.Collections.singletonMap
sortMutable s (List t)Comparator tST s ()
native java.util.Collections.sort
swapMutable s (List Object)IntIntST s ()
native java.util.Collections.swap
synchronizedCollectionMutable s (Collection t)STMutable s (Collection t)
native java.util.Collections.synchronizedCollection
synchronizedListMutable s (List t)STMutable s (List t)
native java.util.Collections.synchronizedList
synchronizedMapMutable s (Map k v)STMutable s (Map k v)
native java.util.Collections.synchronizedMap
synchronizedSetMutable s (Set t)STMutable s (Set t)
native java.util.Collections.synchronizedSet
synchronizedSortedMapMutable s (SortedMap k v)STMutable s (SortedMap k v)
native java.util.Collections.synchronizedSortedMap
synchronizedSortedSetMutable s (SortedSet t)STMutable s (SortedSet t)
native java.util.Collections.synchronizedSortedSet
unmodifiableCollectionMutable s (Collection t)STMutable s (Collection t)
native java.util.Collections.unmodifiableCollection
unmodifiableListMutable s (List t)STMutable s (List t)
native java.util.Collections.unmodifiableList
unmodifiableMapMutable s (Map k v)STMutable s (Map k v)
native java.util.Collections.unmodifiableMap
unmodifiableSetMutable s (Set t)STMutable s (Set t)
native java.util.Collections.unmodifiableSet
unmodifiableSortedMapMutable s (SortedMap k v)STMutable s (SortedMap k v)
native java.util.Collections.unmodifiableSortedMap
unmodifiableSortedSetMutable s (SortedSet t)STMutable s (SortedSet t)
native java.util.Collections.unmodifiableSortedSet
data Currency = pure native java.util.Currency

Represents a currency.

More: JavaDoc

Member Functions

getAvailableCurrencies()STMutable s (Set Currency)
native java.util.Currency.getAvailableCurrencies
getCurrencyCodeCurrencyString
pure native getCurrencyCode
getDefaultFractionDigitsCurrencyInt
pure native getDefaultFractionDigits
getDisplayNameCurrencyLocaleString
                | CurrencyString
pure native getDisplayName
getDisplayName𝖆CurrencyLocaleString
pure native getDisplayName  overloads getDisplayName
getDisplayName𝖇CurrencyString
pure native getDisplayName  overloads getDisplayName
getInstanceLocaleCurrency
             | StringCurrency
pure native java.util.Currency.getInstance
getInstance𝖆LocaleCurrency
pure native java.util.Currency.getInstance  overloads getInstance
getInstance𝖇StringCurrency
pure native java.util.Currency.getInstance  overloads getInstance
getNumericCodeCurrencyInt
pure native getNumericCode
getSymbolCurrencyString
           | CurrencyLocaleString
pure native getSymbol
getSymbol𝖆CurrencyString
pure native getSymbol  overloads getSymbol
getSymbol𝖇CurrencyLocaleString
pure native getSymbol  overloads getSymbol
toStringCurrencyString
pure native toString
data Dictionary k v = native java.util.Dictionary

The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to values.

More: JavaDoc

Member Functions

elementsMutable s (Dictionary k v)STMutable s (Enumeration v)
native elements
getMutable s (Dictionary k v)ObjectST s v
native get
isEmptyMutable s (Dictionary k v)ST s Bool
native isEmpty
keysMutable s (Dictionary k v)STMutable s (Enumeration k)
native keys
putMutable s (Dictionary k v)kvST s v
native put
removeMutable s (Dictionary k v)ObjectST s v
native remove
sizeMutable s (Dictionary k v)ST s Int
native size
data Hashtable k v = native java.util.Hashtable

This class implements a hash table, which maps keys to values.

More: JavaDoc

Member Functions

clearMutable s (Hashtable k v)ST s ()
native clear
cloneMutable s (Hashtable k v)ST s Object
native clone
containsMutable s (Hashtable k v)ObjectST s Bool
native contains
containsKeyMutable s (Hashtable k v)ObjectST s Bool
native containsKey
containsValueMutable s (Hashtable k v)ObjectST s Bool
native containsValue
elementsMutable s (Hashtable k v)STMutable s (Enumeration v)
native elements
entrySetMutable s (Hashtable k v)STMutable s (Set (MapEntry k v))
native entrySet
equalsMutable s (Hashtable k v)ObjectST s Bool
native equals
getMutable s (Hashtable k v)ObjectST s v
native get
hashCodeMutable s (Hashtable k v)ST s Int
native hashCode
isEmptyMutable s (Hashtable k v)ST s Bool
native isEmpty
keySetMutable s (Hashtable k v)STMutable s (Set k)
native keySet
keysMutable s (Hashtable k v)STMutable s (Enumeration k)
native keys
new()STMutable s (Hashtable k v)
     | IntSTMutable s (Hashtable k v)
     | IntFloatSTMutable s (Hashtable k v)
     | Mutable s (Map k v) → STMutable s (Hashtable k v)
native new
new𝖆()STMutable s (Hashtable k v)
native new  overloads new
new𝖇IntSTMutable s (Hashtable k v)
native new  overloads new
new𝖈IntFloatSTMutable s (Hashtable k v)
native new  overloads new
new𝖉Mutable s (Map k v)STMutable s (Hashtable k v)
native new  overloads new
putMutable s (Hashtable k v)kvST s v
native put
putAllMutable s (Hashtable k v)Mutable s (Map k v)ST s ()
native putAll
removeMutable s (Hashtable k v)ObjectST s v
native remove
sizeMutable s (Hashtable k v)ST s Int
native size
toStringMutable s (Hashtable k v)ST s String
native toString
valuesMutable s (Hashtable k v)STMutable s (Collection v)
native values
data Properties = native java.util.Properties

The Properties class represents a persistent set of properties.

More: JavaDoc

Member Functions

getPropertyMutable s PropertiesStringStringST s String
             | Mutable s PropertiesStringST s String
native getProperty
getProperty𝖆Mutable s PropertiesStringStringST s String
native getProperty  overloads getProperty
getProperty𝖇Mutable s PropertiesStringST s String
native getProperty  overloads getProperty
listMutableIO PropertiesMutableIO PrintStreamIO ()
      | MutableIO PropertiesMutableIO PrintWriterIO ()
native list
list𝖆MutableIO PropertiesMutableIO PrintStreamIO ()
native list  overloads list
list𝖇MutableIO PropertiesMutableIO PrintWriterIO ()
native list  overloads list
loadMutableIO PropertiesMutableIO ReaderIO ()
          throws IOException
      | MutableIO PropertiesMutableIO InputStreamIO ()
          throws IOException
native load
loadFromXMLMutableIO PropertiesMutableIO InputStreamIO ()
native loadFromXML  throws InvalidPropertiesFormatException, IOException
load𝖆MutableIO PropertiesMutableIO ReaderIO ()
native load  throws IOException  overloads load
load𝖇MutableIO PropertiesMutableIO InputStreamIO ()
native load  throws IOException  overloads load
new()STMutable s Properties
     | Mutable s PropertiesSTMutable s Properties
native new
new𝖆()STMutable s Properties
native new  overloads new
new𝖇Mutable s PropertiesSTMutable s Properties
native new  overloads new
setPropertyMutable s PropertiesStringStringST s Object
native setProperty
storeMutableIO PropertiesMutableIO WriterStringIO ()
           throws IOException
       | MutableIO PropertiesMutableIO OutputStreamStringIO ()
           throws IOException
native store
storeToXMLMutableIO PropertiesMutableIO OutputStreamStringIO ()
                throws IOException
            | MutableIO PropertiesMutableIO OutputStreamStringStringIO ()
                throws IOException
native storeToXML
storeToXML𝖆MutableIO PropertiesMutableIO OutputStreamStringIO ()
native storeToXML  throws IOException  overloads storeToXML
storeToXML𝖇MutableIO PropertiesMutableIO OutputStreamStringStringIO ()
native storeToXML  throws IOException  overloads storeToXML
store𝖆MutableIO PropertiesMutableIO WriterStringIO ()
native store  throws IOException  overloads store
store𝖇MutableIO PropertiesMutableIO OutputStreamStringIO ()
native store  throws IOException  overloads store
stringPropertyNamesMutable s PropertiesSTMutable s (Set String)
native stringPropertyNames
data EventListenerProxy t = native java.util.EventListenerProxy

An abstract wrapper class for an EventListener class which associates a set of additional parameters with the listener.

More: JavaDoc

Member Functions

getListenerMutable s (EventListenerProxy EventListener)STMutable s EventListener
native getListener
data EventObject = native java.util.EventObject

The root class from which all event state objects shall be derived.

More: JavaDoc

Member Functions

getSourceMutable s EventObjectST s Object
native getSource
newObjectSTMutable s EventObject
native new
toStringMutable s EventObjectST s String
native toString
data FormattableFlags = pure native java.util.FormattableFlags

FormattableFlags are passed to the Formattable.formatTo() method and modify the output format for Formattables.

More: JavaDoc

Member Functions

alternateInt
pure native java.util.FormattableFlags.ALTERNATE
left_justifyInt
pure native java.util.FormattableFlags.LEFT_JUSTIFY
uppercaseInt
pure native java.util.FormattableFlags.UPPERCASE
data Objects = pure native java.util.Objects

This class consists of static utility methods for operating on objects.

More: JavaDoc

Member Functions

comparettComparator tInt
pure native java.util.Objects.compare
deepEqualsObjectObjectBool
pure native java.util.Objects.deepEquals
equalsObjectObjectBool
pure native java.util.Objects.equals
hashArrayOf s ObjectST s Int
native java.util.Objects.hash
hashCodeObjectInt
pure native java.util.Objects.hashCode
requireNonNull ∷ t → t
                | t → String → t
pure native java.util.Objects.requireNonNull
requireNonNull𝖆t → t
pure native java.util.Objects.requireNonNull  overloads requireNonNull
requireNonNull𝖇tString → t
pure native java.util.Objects.requireNonNull  overloads requireNonNull
toStringObjectString
          | ObjectStringString
pure native java.util.Objects.toString
toString𝖆ObjectString
pure native java.util.Objects.toString  overloads toString
toString𝖇ObjectStringString
pure native java.util.Objects.toString  overloads toString
data PropertyPermission = pure native java.util.PropertyPermission

This class is for property permissions.

More: JavaDoc

Member Functions

equalsPropertyPermissionObjectBool
pure native equals
getActionsPropertyPermissionString
pure native getActions
hashCodePropertyPermissionInt
pure native hashCode
impliesPropertyPermissionPermissionBool
pure native implies
newStringStringST s PropertyPermission
native new
newPermissionCollectionPropertyPermissionSTMutable s PermissionCollection
native newPermissionCollection
data ListResourceBundle = native java.util.ListResourceBundle

ListResourceBundle is an abstract subclass of ResourceBundle that manages resources for a locale in a convenient and easy to use list.

More: JavaDoc

Member Functions

getKeysMutable s ListResourceBundleSTMutable s (Enumeration String)
native getKeys
handleGetObjectMutable s ListResourceBundleStringST s Object
native handleGetObject
data PropertyResourceBundle = native java.util.PropertyResourceBundle

PropertyResourceBundle is a concrete subclass of ResourceBundle that manages resources for a locale using a set of static strings from a property file.

More: JavaDoc

Member Functions

getKeysMutable s PropertyResourceBundleSTMutable s (Enumeration String)
native getKeys
handleGetObjectMutable s PropertyResourceBundleStringST s Object
native handleGetObject
newMutableIO InputStreamSTMutable RealWorld PropertyResourceBundle
         throws IOException
     | MutableIO ReaderSTMutable RealWorld PropertyResourceBundle
         throws IOException
native new
new𝖆MutableIO InputStreamSTMutable RealWorld PropertyResourceBundle
native new  throws IOException  overloads new
new𝖇MutableIO ReaderSTMutable RealWorld PropertyResourceBundle
native new  throws IOException  overloads new
data ResourceBundle = native java.util.ResourceBundle

Resource bundles contain locale-specific objects.

More: JavaDoc

Member Functions

clearCache()ST s ()
            | MutableIO ClassLoaderIO ()
native java.util.ResourceBundle.clearCache
clearCache𝖆()ST s ()
native java.util.ResourceBundle.clearCache  overloads clearCache
clearCache𝖇MutableIO ClassLoaderIO ()
native java.util.ResourceBundle.clearCache  overloads clearCache
containsKeyMutable s ResourceBundleStringST s Bool
native containsKey
getBundleStringLocaleResourceBundle_ControlSTMutable s ResourceBundle
           | StringLocaleMutableIO ClassLoaderSTMutable RealWorld ResourceBundle
           | StringLocaleMutableIO ClassLoaderResourceBundle_ControlSTMutable RealWorld ResourceBundle
           | StringSTMutable s ResourceBundle
           | StringResourceBundle_ControlSTMutable s ResourceBundle
           | StringLocaleSTMutable s ResourceBundle
native java.util.ResourceBundle.getBundle
getBundle𝖆StringLocaleResourceBundle_ControlSTMutable s ResourceBundle
native java.util.ResourceBundle.getBundle  overloads getBundle
getBundle𝖇StringLocaleMutableIO ClassLoaderSTMutable RealWorld ResourceBundle
native java.util.ResourceBundle.getBundle  overloads getBundle
getBundle𝖈StringLocaleMutableIO ClassLoaderResourceBundle_ControlSTMutable RealWorld ResourceBundle
native java.util.ResourceBundle.getBundle  overloads getBundle
getBundle𝖉StringSTMutable s ResourceBundle
native java.util.ResourceBundle.getBundle  overloads getBundle
getBundle𝖊StringResourceBundle_ControlSTMutable s ResourceBundle
native java.util.ResourceBundle.getBundle  overloads getBundle
getBundle𝖋StringLocaleSTMutable s ResourceBundle
native java.util.ResourceBundle.getBundle  overloads getBundle
getKeysMutable s ResourceBundleSTMutable s (Enumeration String)
native getKeys
getLocaleMutable s ResourceBundleST s Locale
native getLocale
getObjectMutable s ResourceBundleStringST s Object
native getObject
getStringMutable s ResourceBundleStringST s String
native getString
getStringArrayMutable s ResourceBundleStringSTMutable s (JArray String)
native getStringArray
keySetMutable s ResourceBundleSTMutable s (Set String)
native keySet
data ResourceBundle_Control = pure native java.util.ResourceBundle.Control

ResourceBundle_Control defines a set of callback methods that are invoked by the 'https://docs.oracle.com/javase/7/docs/api/java/util/ResourceBundle.html

getBundle(java.lang.String,%20java.util.Locale,%20java.lang.ClassLoader,%20java.util.ResourceBundle.Control) ResourceBundle.getBundle'

factory methods during the bundle loading process.

More: JavaDoc

Member Functions

format_classSTMutable s (List String)
native java.util.ResourceBundle.Control.FORMAT_CLASS
format_defaultSTMutable s (List String)
native java.util.ResourceBundle.Control.FORMAT_DEFAULT
format_propertiesSTMutable s (List String)
native java.util.ResourceBundle.Control.FORMAT_PROPERTIES
getCandidateLocalesResourceBundle_ControlStringLocaleSTMutable s (List Locale)
native getCandidateLocales
getControlMutable s (List String)ST s ResourceBundle_Control
native java.util.ResourceBundle.Control.getControl
getFallbackLocaleResourceBundle_ControlStringLocaleLocale
pure native getFallbackLocale
getFormatsResourceBundle_ControlStringSTMutable s (List String)
native getFormats
getNoFallbackControlMutable s (List String)ST s ResourceBundle_Control
native java.util.ResourceBundle.Control.getNoFallbackControl
getTimeToLiveResourceBundle_ControlStringLocaleLong
pure native getTimeToLive
needsReloadResourceBundle_ControlStringLocaleStringMutableIO ClassLoaderMutableIO ResourceBundleLongIO Bool
native needsReload
newBundleResourceBundle_ControlStringLocaleStringMutableIO ClassLoaderBoolSTMutable RealWorld ResourceBundle
native newBundle  throws IllegalAccessException, InstantiationException, IOException
toBundleNameResourceBundle_ControlStringLocaleString
pure native toBundleName
toResourceNameResourceBundle_ControlStringStringString
pure native toResourceName
ttl_dont_cacheLong
pure native java.util.ResourceBundle.Control.TTL_DONT_CACHE
ttl_no_expiration_controlLong
pure native java.util.ResourceBundle.Control.TTL_NO_EXPIRATION_CONTROL
data ServiceLoader t = native java.util.ServiceLoader

A simple service-provider loading facility.

More: JavaDoc

Member Functions

iteratorMutableIO (ServiceLoader t)STMutable RealWorld (Iterator t)
native iterator
loadClass s → STMutable RealWorld (ServiceLoader s)
      | Class s → MutableIO ClassLoaderSTMutable RealWorld (ServiceLoader s)
native java.util.ServiceLoader.load
loadInstalledClass sSTMutable RealWorld (ServiceLoader s)
native java.util.ServiceLoader.loadInstalled
load𝖆Class sSTMutable RealWorld (ServiceLoader s)
native java.util.ServiceLoader.load  overloads load
load𝖇Class sMutableIO ClassLoaderSTMutable RealWorld (ServiceLoader s)
native java.util.ServiceLoader.load  overloads load
reloadMutableIO (ServiceLoader t)IO ()
native reload
toStringMutableIO (ServiceLoader t)IO String
native toString
data SimpleTimeZone = native java.util.SimpleTimeZone

SimpleTimeZone is a concrete subclass of TimeZone that represents a time zone for use with a Gregorian calendar.

More: JavaDoc

Member Functions

cloneMutable s SimpleTimeZoneST s Object
native clone
equalsMutable s SimpleTimeZoneObjectST s Bool
native equals
getDSTSavingsMutable s SimpleTimeZoneST s Int
native getDSTSavings
getOffsetMutable s SimpleTimeZoneLongST s Int
           | Mutable s SimpleTimeZoneIntIntIntIntIntIntST s Int
native getOffset
getOffset𝖆Mutable s SimpleTimeZoneLongST s Int
native getOffset  overloads getOffset
getOffset𝖇Mutable s SimpleTimeZoneIntIntIntIntIntIntST s Int
native getOffset  overloads getOffset
getRawOffsetMutable s SimpleTimeZoneST s Int
native getRawOffset
hasSameRulesMutable s SimpleTimeZoneTimeZoneST s Bool
native hasSameRules
hashCodeMutable s SimpleTimeZoneST s Int
native hashCode
inDaylightTimeMutable s SimpleTimeZoneMutable s DateST s Bool
native inDaylightTime
newIntStringIntIntIntIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone
     | IntStringIntIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone
     | IntStringIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone
     | IntStringSTMutable s SimpleTimeZone
native new
new𝖆IntStringIntIntIntIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone
native new  overloads new
new𝖇IntStringIntIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone
native new  overloads new
new𝖈IntStringIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone
native new  overloads new
new𝖉IntStringSTMutable s SimpleTimeZone
native new  overloads new
observesDaylightTimeMutable s SimpleTimeZoneST s Bool
native observesDaylightTime
setDSTSavingsMutable s SimpleTimeZoneIntST s ()
native setDSTSavings
setEndRuleMutable s SimpleTimeZoneIntIntIntIntST s ()
            | Mutable s SimpleTimeZoneIntIntIntST s ()
            | Mutable s SimpleTimeZoneIntIntIntIntBoolST s ()
native setEndRule
setEndRule𝖆Mutable s SimpleTimeZoneIntIntIntIntST s ()
native setEndRule  overloads setEndRule
setEndRule𝖇Mutable s SimpleTimeZoneIntIntIntST s ()
native setEndRule  overloads setEndRule
setEndRule𝖈Mutable s SimpleTimeZoneIntIntIntIntBoolST s ()
native setEndRule  overloads setEndRule
setRawOffsetMutable s SimpleTimeZoneIntST s ()
native setRawOffset
setStartRuleMutable s SimpleTimeZoneIntIntIntIntBoolST s ()
              | Mutable s SimpleTimeZoneIntIntIntIntST s ()
              | Mutable s SimpleTimeZoneIntIntIntST s ()
native setStartRule
setStartRule𝖆Mutable s SimpleTimeZoneIntIntIntIntBoolST s ()
native setStartRule  overloads setStartRule
setStartRule𝖇Mutable s SimpleTimeZoneIntIntIntIntST s ()
native setStartRule  overloads setStartRule
setStartRule𝖈Mutable s SimpleTimeZoneIntIntIntST s ()
native setStartRule  overloads setStartRule
setStartYearMutable s SimpleTimeZoneIntST s ()
native setStartYear
standard_timeInt
pure native java.util.SimpleTimeZone.STANDARD_TIME
toStringMutable s SimpleTimeZoneST s String
native toString
useDaylightTimeMutable s SimpleTimeZoneST s Bool
native useDaylightTime
utc_timeInt
pure native java.util.SimpleTimeZone.UTC_TIME
wall_timeInt
pure native java.util.SimpleTimeZone.WALL_TIME
data StringTokenizer = native java.util.StringTokenizer

The string tokenizer class allows an application to break a string into tokens.

More: JavaDoc

Member Functions

countTokensMutable s StringTokenizerST s Int
native countTokens
hasMoreElementsMutable s StringTokenizerST s Bool
native hasMoreElements
hasMoreTokensMutable s StringTokenizerST s Bool
native hasMoreTokens
newStringStringSTMutable s StringTokenizer
     | StringStringBoolSTMutable s StringTokenizer
     | StringSTMutable s StringTokenizer
native new
new𝖆StringStringSTMutable s StringTokenizer
native new  overloads new
new𝖇StringStringBoolSTMutable s StringTokenizer
native new  overloads new
new𝖈StringSTMutable s StringTokenizer
native new  overloads new
nextElementMutable s StringTokenizerST s Object
native nextElement
nextTokenMutable s StringTokenizerStringST s String
           | Mutable s StringTokenizerST s String
native nextToken
nextToken𝖆Mutable s StringTokenizerStringST s String
native nextToken  overloads nextToken
nextToken𝖇Mutable s StringTokenizerST s String
native nextToken  overloads nextToken
data Timer = native java.util.Timer

A facility for threads to schedule tasks for future execution in a background thread.

More: JavaDoc

Member Functions

cancelMutable s TimerST s ()
native cancel
newStringBoolSTMutable s Timer
     | BoolSTMutable s Timer
     | ()STMutable s Timer
     | StringSTMutable s Timer
native new
new𝖆StringBoolSTMutable s Timer
native new  overloads new
new𝖇BoolSTMutable s Timer
native new  overloads new
new𝖈()STMutable s Timer
native new  overloads new
new𝖉StringSTMutable s Timer
native new  overloads new
purgeMutable s TimerST s Int
native purge
scheduleMutable s TimerMutable s TimerTaskMutable s DateST s ()
          | Mutable s TimerMutable s TimerTaskMutable s DateLongST s ()
          | Mutable s TimerMutable s TimerTaskLongST s ()
          | Mutable s TimerMutable s TimerTaskLongLongST s ()
native schedule
scheduleAtFixedRateMutable s TimerMutable s TimerTaskMutable s DateLongST s ()
                     | Mutable s TimerMutable s TimerTaskLongLongST s ()
native scheduleAtFixedRate
scheduleAtFixedRate𝖆Mutable s TimerMutable s TimerTaskMutable s DateLongST s ()
native scheduleAtFixedRate  overloads scheduleAtFixedRate
scheduleAtFixedRate𝖇Mutable s TimerMutable s TimerTaskLongLongST s ()
native scheduleAtFixedRate  overloads scheduleAtFixedRate
schedule𝖆Mutable s TimerMutable s TimerTaskMutable s DateST s ()
native schedule  overloads schedule
schedule𝖇Mutable s TimerMutable s TimerTaskMutable s DateLongST s ()
native schedule  overloads schedule
schedule𝖈Mutable s TimerMutable s TimerTaskLongST s ()
native schedule  overloads schedule
schedule𝖉Mutable s TimerMutable s TimerTaskLongLongST s ()
native schedule  overloads schedule
data TimerTask = native java.util.TimerTask

A task that can be scheduled for one-time or repeated execution by a Timer.

More: JavaDoc

Member Functions

cancelMutable s TimerTaskST s Bool
native cancel
runMutable s TimerTaskST s ()
native run
scheduledExecutionTimeMutable s TimerTaskST s Long
native scheduledExecutionTime
data UUID = pure native java.util.UUID

A class that represents an immutable universally unique identifier (UUID).

More: JavaDoc

Member Functions

clockSequenceUUIDInt
pure native clockSequence
compareToUUIDUUIDInt
pure native compareTo
equalsUUIDObjectBool
pure native equals
fromStringStringUUID
pure native java.util.UUID.fromString
getLeastSignificantBitsUUIDLong
pure native getLeastSignificantBits
getMostSignificantBitsUUIDLong
pure native getMostSignificantBits
hashCodeUUIDInt
pure native hashCode
nameUUIDFromBytesArrayOf s ByteST s UUID
native java.util.UUID.nameUUIDFromBytes
newLongLongST s UUID
native new
nodeUUIDLong
pure native node
randomUUID()ST s UUID
native java.util.UUID.randomUUID
timestampUUIDLong
pure native timestamp
toStringUUIDString
pure native toString
variantUUIDInt
pure native variant
versionUUIDInt
pure native version
data InvalidPropertiesFormatException = pure native java.util.InvalidPropertiesFormatException
data ConcurrentModificationException = pure native java.util.ConcurrentModificationException
data DuplicateFormatFlagsException = pure native java.util.DuplicateFormatFlagsException
data FormatFlagsConversionMismatchException = pure native java.util.FormatFlagsConversionMismatchException
data FormatterClosedException = pure native java.util.FormatterClosedException
data IllegalFormatCodePointException = pure native java.util.IllegalFormatCodePointException
data IllegalFormatConversionException = pure native java.util.IllegalFormatConversionException
data IllegalFormatException = pure native java.util.IllegalFormatException
data IllegalFormatFlagsException = pure native java.util.IllegalFormatFlagsException
data IllegalFormatPrecisionException = pure native java.util.IllegalFormatPrecisionException
data IllegalFormatWidthException = pure native java.util.IllegalFormatWidthException
data IllformedLocaleException = pure native java.util.IllformedLocaleException
data InputMismatchException = pure native java.util.InputMismatchException
data MissingFormatArgumentException = pure native java.util.MissingFormatArgumentException
data MissingFormatWidthException = pure native java.util.MissingFormatWidthException
data MissingResourceException = pure native java.util.MissingResourceException
data ServiceConfigurationError = pure native java.util.ServiceConfigurationError
data TooManyListenersException = pure native java.util.TooManyListenersException
data UnknownFormatConversionException = pure native java.util.UnknownFormatConversionException
data UnknownFormatFlagsException = pure native java.util.UnknownFormatFlagsException
data ReadableByteChannel = native java.nio.channels.ReadableByteChannel
data Path = pure native java.nio.file.Path
data BigDecimal = pure native java.math.BigDecimal
data ByteBuffer = native java.nio.ByteBuffer
data LongBuffer = native java.nio.LongBuffer
data Permission = pure native java.security.Permission
data PermissionCollection = native java.security.PermissionCollection

Instances

instance ArrayElement FormatterBigDecimalLayoutForm

Member Functions

arrayFromIndexList[(Int, FormatterBigDecimalLayoutForm)]JArray FormatterBigDecimalLayoutForm

inherited from ArrayElement.arrayFromIndexList

arrayFromIndexListST[(Int, FormatterBigDecimalLayoutForm)]STMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)

inherited from ArrayElement.arrayFromIndexListST

arrayFromList[FormatterBigDecimalLayoutForm]JArray FormatterBigDecimalLayoutForm

inherited from ArrayElement.arrayFromList

arrayFromListST[FormatterBigDecimalLayoutForm]STMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)

inherited from ArrayElement.arrayFromListST

arrayFromMaybeList[Maybe FormatterBigDecimalLayoutForm]JArray FormatterBigDecimalLayoutForm

inherited from ArrayElement.arrayFromMaybeList

arrayFromMaybeListST[Maybe FormatterBigDecimalLayoutForm]STMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)

inherited from ArrayElement.arrayFromMaybeListST

arrayLengthJArray FormatterBigDecimalLayoutFormInt
pure native .length

inherited from ArrayElement.arrayLength

elemAtJArray FormatterBigDecimalLayoutFormIntFormatterBigDecimalLayoutForm
pure native [i]

inherited from ArrayElement.elemAt

getAtArrayOf 𝖆 FormatterBigDecimalLayoutFormIntST 𝖆 (Maybe FormatterBigDecimalLayoutForm)
native [i]

inherited from ArrayElement.getAt

getElemAtArrayOf 𝖆 FormatterBigDecimalLayoutFormIntST 𝖆 FormatterBigDecimalLayoutForm
native [i]

inherited from ArrayElement.getElemAt

itemAtJArray FormatterBigDecimalLayoutFormIntMaybe FormatterBigDecimalLayoutForm
pure native [i]

inherited from ArrayElement.itemAt

javaClassClass FormatterBigDecimalLayoutForm
native java.util.Formatter.BigDecimalLayoutForm.class
listFromArrayJArray FormatterBigDecimalLayoutForm → [FormatterBigDecimalLayoutForm]

inherited from ArrayElement.listFromArray

maybeListFromArrayJArray FormatterBigDecimalLayoutForm → [Maybe FormatterBigDecimalLayoutForm]

inherited from ArrayElement.maybeListFromArray

modifyAt ∷ (FormatterBigDecimalLayoutFormFormatterBigDecimalLayoutForm) → ArrayOf 𝖆 FormatterBigDecimalLayoutFormIntST 𝖆 ()

inherited from ArrayElement.modifyAt

modifyElemAt ∷ (FormatterBigDecimalLayoutFormFormatterBigDecimalLayoutForm) → ArrayOf 𝖆 FormatterBigDecimalLayoutFormIntST 𝖆 ()

inherited from ArrayElement.modifyElemAt

newArrayIntSTMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)
native new[]

inherited from ArrayElement.newArray

setAtArrayOf 𝖆 FormatterBigDecimalLayoutFormIntMaybe FormatterBigDecimalLayoutFormST 𝖆 ()
native []=

inherited from ArrayElement.setAt

setElemAtArrayOf 𝖆 FormatterBigDecimalLayoutFormIntFormatterBigDecimalLayoutFormST 𝖆 ()
native []=

inherited from ArrayElement.setElemAt

instance ArrayElement Locale

Member Functions

arrayFromIndexList[(Int, Locale)]JArray Locale

inherited from ArrayElement.arrayFromIndexList

arrayFromIndexListST[(Int, Locale)]STMutable 𝖆 (JArray Locale)

inherited from ArrayElement.arrayFromIndexListST

arrayFromList[Locale]JArray Locale

inherited from ArrayElement.arrayFromList

arrayFromListST[Locale]STMutable 𝖆 (JArray Locale)

inherited from ArrayElement.arrayFromListST

arrayFromMaybeList[Maybe Locale]JArray Locale

inherited from ArrayElement.arrayFromMaybeList

arrayFromMaybeListST[Maybe Locale]STMutable 𝖆 (JArray Locale)

inherited from ArrayElement.arrayFromMaybeListST

arrayLengthJArray LocaleInt
pure native .length

inherited from ArrayElement.arrayLength

elemAtJArray LocaleIntLocale
pure native [i]

inherited from ArrayElement.elemAt

getAtArrayOf 𝖆 LocaleIntST 𝖆 (Maybe Locale)
native [i]

inherited from ArrayElement.getAt

getElemAtArrayOf 𝖆 LocaleIntST 𝖆 Locale
native [i]

inherited from ArrayElement.getElemAt

itemAtJArray LocaleIntMaybe Locale
pure native [i]

inherited from ArrayElement.itemAt

javaClassClass Locale
pure native java.util.Locale.class
listFromArrayJArray Locale → [Locale]

inherited from ArrayElement.listFromArray

maybeListFromArrayJArray Locale → [Maybe Locale]

inherited from ArrayElement.maybeListFromArray

modifyAt ∷ (LocaleLocale) → ArrayOf 𝖆 LocaleIntST 𝖆 ()

inherited from ArrayElement.modifyAt

modifyElemAt ∷ (LocaleLocale) → ArrayOf 𝖆 LocaleIntST 𝖆 ()

inherited from ArrayElement.modifyElemAt

newArrayIntSTMutable 𝖆 (JArray Locale)
native new[]

inherited from ArrayElement.newArray

setAtArrayOf 𝖆 LocaleIntMaybe LocaleST 𝖆 ()
native []=

inherited from ArrayElement.setAt

setElemAtArrayOf 𝖆 LocaleIntLocaleST 𝖆 ()
native []=

inherited from ArrayElement.setElemAt

instance ArrayElement LocaleCategory

Member Functions

arrayFromIndexList[(Int, LocaleCategory)]JArray LocaleCategory

inherited from ArrayElement.arrayFromIndexList

arrayFromIndexListST[(Int, LocaleCategory)]STMutable 𝖆 (JArray LocaleCategory)

inherited from ArrayElement.arrayFromIndexListST

arrayFromList[LocaleCategory]JArray LocaleCategory

inherited from ArrayElement.arrayFromList

arrayFromListST[LocaleCategory]STMutable 𝖆 (JArray LocaleCategory)

inherited from ArrayElement.arrayFromListST

arrayFromMaybeList[Maybe LocaleCategory]JArray LocaleCategory

inherited from ArrayElement.arrayFromMaybeList

arrayFromMaybeListST[Maybe LocaleCategory]STMutable 𝖆 (JArray LocaleCategory)

inherited from ArrayElement.arrayFromMaybeListST

arrayLengthJArray LocaleCategoryInt
pure native .length

inherited from ArrayElement.arrayLength

elemAtJArray LocaleCategoryIntLocaleCategory
pure native [i]

inherited from ArrayElement.elemAt

getAtArrayOf 𝖆 LocaleCategoryIntST 𝖆 (Maybe LocaleCategory)
native [i]

inherited from ArrayElement.getAt

getElemAtArrayOf 𝖆 LocaleCategoryIntST 𝖆 LocaleCategory
native [i]

inherited from ArrayElement.getElemAt

itemAtJArray LocaleCategoryIntMaybe LocaleCategory
pure native [i]

inherited from ArrayElement.itemAt

javaClassClass LocaleCategory
native java.util.Locale.Category.class
listFromArrayJArray LocaleCategory → [LocaleCategory]

inherited from ArrayElement.listFromArray

maybeListFromArrayJArray LocaleCategory → [Maybe LocaleCategory]

inherited from ArrayElement.maybeListFromArray

modifyAt ∷ (LocaleCategoryLocaleCategory) → ArrayOf 𝖆 LocaleCategoryIntST 𝖆 ()

inherited from ArrayElement.modifyAt

modifyElemAt ∷ (LocaleCategoryLocaleCategory) → ArrayOf 𝖆 LocaleCategoryIntST 𝖆 ()

inherited from ArrayElement.modifyElemAt

newArrayIntSTMutable 𝖆 (JArray LocaleCategory)
native new[]

inherited from ArrayElement.newArray

setAtArrayOf 𝖆 LocaleCategoryIntMaybe LocaleCategoryST 𝖆 ()
native []=

inherited from ArrayElement.setAt

setElemAtArrayOf 𝖆 LocaleCategoryIntLocaleCategoryST 𝖆 ()
native []=

inherited from ArrayElement.setElemAt

instance Exceptional ConcurrentModificationException

Member Functions

javaClassClass ConcurrentModificationException
pure native java.util.ConcurrentModificationException.class
instance Exceptional DuplicateFormatFlagsException

Member Functions

javaClassClass DuplicateFormatFlagsException
pure native java.util.DuplicateFormatFlagsException.class
instance Exceptional FormatFlagsConversionMismatchException

Member Functions

javaClassClass FormatFlagsConversionMismatchException
pure native java.util.FormatFlagsConversionMismatchException.class
instance Exceptional FormatterClosedException

Member Functions

javaClassClass FormatterClosedException
pure native java.util.FormatterClosedException.class
instance Exceptional IllegalFormatCodePointException

Member Functions

javaClassClass IllegalFormatCodePointException
pure native java.util.IllegalFormatCodePointException.class
instance Exceptional IllegalFormatConversionException

Member Functions

javaClassClass IllegalFormatConversionException
pure native java.util.IllegalFormatConversionException.class
instance Exceptional IllegalFormatException

Member Functions

javaClassClass IllegalFormatException
pure native java.util.IllegalFormatException.class
instance Exceptional IllegalFormatFlagsException

Member Functions

javaClassClass IllegalFormatFlagsException
pure native java.util.IllegalFormatFlagsException.class
instance Exceptional IllegalFormatPrecisionException

Member Functions

javaClassClass IllegalFormatPrecisionException
pure native java.util.IllegalFormatPrecisionException.class
instance Exceptional IllegalFormatWidthException

Member Functions

javaClassClass IllegalFormatWidthException
pure native java.util.IllegalFormatWidthException.class
instance Exceptional IllformedLocaleException

Member Functions

javaClassClass IllformedLocaleException
pure native java.util.IllformedLocaleException.class
instance Exceptional InputMismatchException

Member Functions

javaClassClass InputMismatchException
pure native java.util.InputMismatchException.class
instance Exceptional InvalidPropertiesFormatException

Member Functions

javaClassClass InvalidPropertiesFormatException
pure native java.util.InvalidPropertiesFormatException.class
instance Exceptional MissingFormatArgumentException

Member Functions

javaClassClass MissingFormatArgumentException
pure native java.util.MissingFormatArgumentException.class
instance Exceptional MissingFormatWidthException

Member Functions

javaClassClass MissingFormatWidthException
pure native java.util.MissingFormatWidthException.class
instance Exceptional MissingResourceException

Member Functions

javaClassClass MissingResourceException
pure native java.util.MissingResourceException.class
instance Exceptional NoSuchElementException

Member Functions

javaClassClass NoSuchElementException
pure native java.util.NoSuchElementException.class
instance Exceptional ServiceConfigurationError

Member Functions

javaClassClass ServiceConfigurationError
pure native java.util.ServiceConfigurationError.class
instance Exceptional TooManyListenersException

Member Functions

javaClassClass TooManyListenersException
pure native java.util.TooManyListenersException.class
instance Exceptional UnknownFormatConversionException

Member Functions

javaClassClass UnknownFormatConversionException
pure native java.util.UnknownFormatConversionException.class
instance Exceptional UnknownFormatFlagsException

Member Functions

javaClassClass UnknownFormatFlagsException
pure native java.util.UnknownFormatFlagsException.class
instance Serializable (AbstractMapSimpleEntry k v)

Member Functions

copySerializableAbstractMapSimpleEntry 𝖇 𝖆AbstractMapSimpleEntry 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeAbstractMapSimpleEntry 𝖇 𝖆AbstractMapSimpleEntry 𝖇 𝖆

inherited from Serializable.freeze

thawAbstractMapSimpleEntry 𝖇 𝖆AbstractMapSimpleEntry 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (AbstractMapSimpleImmutableEntry k v)

Member Functions

copySerializableAbstractMapSimpleImmutableEntry 𝖇 𝖆AbstractMapSimpleImmutableEntry 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeAbstractMapSimpleImmutableEntry 𝖇 𝖆AbstractMapSimpleImmutableEntry 𝖇 𝖆

inherited from Serializable.freeze

thawAbstractMapSimpleImmutableEntry 𝖇 𝖆AbstractMapSimpleImmutableEntry 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (ArrayDeque e)

Member Functions

copySerializableArrayDeque 𝖆ArrayDeque 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeArrayDeque 𝖆ArrayDeque 𝖆

inherited from Serializable.freeze

thawArrayDeque 𝖆ArrayDeque 𝖆

inherited from Serializable.thaw

instance Serializable (ArrayList e)

Member Functions

copySerializableArrayList 𝖆ArrayList 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeArrayList 𝖆ArrayList 𝖆

inherited from Serializable.freeze

thawArrayList 𝖆ArrayList 𝖆

inherited from Serializable.thaw

instance Serializable BitSet

Member Functions

copySerializableBitSetBitSet
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeBitSetBitSet

inherited from Serializable.freeze

thawBitSetBitSet

inherited from Serializable.thaw

instance Serializable Calendar

Member Functions

copySerializableCalendarCalendar
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeCalendarCalendar

inherited from Serializable.freeze

thawCalendarCalendar

inherited from Serializable.thaw

instance Serializable Currency

Member Functions

copySerializableCurrencyCurrency
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeCurrencyCurrency

inherited from Serializable.freeze

thawCurrencyCurrency

inherited from Serializable.thaw

instance Serializable Date

Member Functions

copySerializableDateDate
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeDateDate

inherited from Serializable.freeze

thawDateDate

inherited from Serializable.thaw

instance Serializable (EnumMap k v)

Member Functions

copySerializableEnumMap 𝖇 𝖆EnumMap 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeEnumMap 𝖇 𝖆EnumMap 𝖇 𝖆

inherited from Serializable.freeze

thawEnumMap 𝖇 𝖆EnumMap 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (EnumSet e)

Member Functions

copySerializableEnumSet 𝖆EnumSet 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeEnumSet 𝖆EnumSet 𝖆

inherited from Serializable.freeze

thawEnumSet 𝖆EnumSet 𝖆

inherited from Serializable.thaw

instance Serializable EventObject

Member Functions

copySerializableEventObjectEventObject
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeEventObjectEventObject

inherited from Serializable.freeze

thawEventObjectEventObject

inherited from Serializable.thaw

instance Serializable FormatterBigDecimalLayoutForm

Member Functions

copySerializableFormatterBigDecimalLayoutFormFormatterBigDecimalLayoutForm
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeFormatterBigDecimalLayoutFormFormatterBigDecimalLayoutForm

inherited from Serializable.freeze

thawFormatterBigDecimalLayoutFormFormatterBigDecimalLayoutForm

inherited from Serializable.thaw

instance Serializable GregorianCalendar

Member Functions

copySerializableGregorianCalendarGregorianCalendar
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeGregorianCalendarGregorianCalendar

inherited from Serializable.freeze

thawGregorianCalendarGregorianCalendar

inherited from Serializable.thaw

instance Serializable (HashMap k v)

Member Functions

copySerializableHashMap 𝖇 𝖆HashMap 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeHashMap 𝖇 𝖆HashMap 𝖇 𝖆

inherited from Serializable.freeze

thawHashMap 𝖇 𝖆HashMap 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (HashSet e)

Member Functions

copySerializableHashSet 𝖆HashSet 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeHashSet 𝖆HashSet 𝖆

inherited from Serializable.freeze

thawHashSet 𝖆HashSet 𝖆

inherited from Serializable.thaw

instance Serializable (Hashtable k v)

Member Functions

copySerializableHashtable 𝖇 𝖆Hashtable 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeHashtable 𝖇 𝖆Hashtable 𝖇 𝖆

inherited from Serializable.freeze

thawHashtable 𝖇 𝖆Hashtable 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (IdentityHashMap k v)

Member Functions

copySerializableIdentityHashMap 𝖇 𝖆IdentityHashMap 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeIdentityHashMap 𝖇 𝖆IdentityHashMap 𝖇 𝖆

inherited from Serializable.freeze

thawIdentityHashMap 𝖇 𝖆IdentityHashMap 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (LinkedHashMap k v)

Member Functions

copySerializableLinkedHashMap 𝖇 𝖆LinkedHashMap 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeLinkedHashMap 𝖇 𝖆LinkedHashMap 𝖇 𝖆

inherited from Serializable.freeze

thawLinkedHashMap 𝖇 𝖆LinkedHashMap 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (LinkedHashSet e)

Member Functions

copySerializableLinkedHashSet 𝖆LinkedHashSet 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeLinkedHashSet 𝖆LinkedHashSet 𝖆

inherited from Serializable.freeze

thawLinkedHashSet 𝖆LinkedHashSet 𝖆

inherited from Serializable.thaw

instance Serializable (LinkedList e)

Member Functions

copySerializableLinkedList 𝖆LinkedList 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeLinkedList 𝖆LinkedList 𝖆

inherited from Serializable.freeze

thawLinkedList 𝖆LinkedList 𝖆

inherited from Serializable.thaw

instance Serializable Locale

Member Functions

copySerializableLocaleLocale
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeLocaleLocale

inherited from Serializable.freeze

thawLocaleLocale

inherited from Serializable.thaw

instance Serializable LocaleCategory

Member Functions

copySerializableLocaleCategoryLocaleCategory
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeLocaleCategoryLocaleCategory

inherited from Serializable.freeze

thawLocaleCategoryLocaleCategory

inherited from Serializable.thaw

instance Serializable (PriorityQueue e)

Member Functions

copySerializablePriorityQueue 𝖆PriorityQueue 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezePriorityQueue 𝖆PriorityQueue 𝖆

inherited from Serializable.freeze

thawPriorityQueue 𝖆PriorityQueue 𝖆

inherited from Serializable.thaw

instance Serializable Properties

Member Functions

copySerializablePropertiesProperties
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezePropertiesProperties

inherited from Serializable.freeze

thawPropertiesProperties

inherited from Serializable.thaw

instance Serializable PropertyPermission

Member Functions

copySerializablePropertyPermissionPropertyPermission
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezePropertyPermissionPropertyPermission

inherited from Serializable.freeze

thawPropertyPermissionPropertyPermission

inherited from Serializable.thaw

instance Serializable SimpleTimeZone

Member Functions

copySerializableSimpleTimeZoneSimpleTimeZone
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeSimpleTimeZoneSimpleTimeZone

inherited from Serializable.freeze

thawSimpleTimeZoneSimpleTimeZone

inherited from Serializable.thaw

instance Serializable (Stack e)

Member Functions

copySerializableStack 𝖆Stack 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeStack 𝖆Stack 𝖆

inherited from Serializable.freeze

thawStack 𝖆Stack 𝖆

inherited from Serializable.thaw

instance Serializable TimeZone

Member Functions

copySerializableTimeZoneTimeZone
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeTimeZoneTimeZone

inherited from Serializable.freeze

thawTimeZoneTimeZone

inherited from Serializable.thaw

instance Serializable (TreeMap k v)

Member Functions

copySerializableTreeMap 𝖇 𝖆TreeMap 𝖇 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeTreeMap 𝖇 𝖆TreeMap 𝖇 𝖆

inherited from Serializable.freeze

thawTreeMap 𝖇 𝖆TreeMap 𝖇 𝖆

inherited from Serializable.thaw

instance Serializable (TreeSet e)

Member Functions

copySerializableTreeSet 𝖆TreeSet 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeTreeSet 𝖆TreeSet 𝖆

inherited from Serializable.freeze

thawTreeSet 𝖆TreeSet 𝖆

inherited from Serializable.thaw

instance Serializable UUID

Member Functions

copySerializableUUIDUUID
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeUUIDUUID

inherited from Serializable.freeze

thawUUIDUUID

inherited from Serializable.thaw

instance Serializable (Vector e)

Member Functions

copySerializableVector 𝖆Vector 𝖆
pure native frege.runtime.Runtime.copySerializable

inherited from Serializable.copySerializable

freezeVector 𝖆Vector 𝖆

inherited from Serializable.freeze

thawVector 𝖆Vector 𝖆

inherited from Serializable.thaw

instance Show Locale

Member Functions

displayLocaleString

inherited from Show.display

showLocaleString
showCharsLocale → [Char]

inherited from Show.showChars

showList[Locale]StringString

inherited from Show.showList

showsPrecIntLocaleStringString

inherited from Show.showsPrec

showsubLocaleString

inherited from Show.showsub

Functions and Values by Type

MutableIO InputStreamStringSTMutable RealWorld Scanner

Scanner.new𝖈

MutableIO InputStreamSTMutable RealWorld PropertyResourceBundle

PropertyResourceBundle.new𝖆

MutableIO InputStreamSTMutable RealWorld Scanner

Scanner.new𝖆

MutableIO OutputStreamStringLocaleSTMutable RealWorld Formatter

Formatter.new𝖐

MutableIO OutputStreamStringSTMutable RealWorld Formatter

Formatter.new𝖋

MutableIO OutputStreamSTMutable RealWorld Formatter

Formatter.new𝖌

MutableIO ClassLoaderIO ()

ResourceBundle.clearCache𝖇

MutableIO PrintStreamSTMutable RealWorld Formatter

Formatter.new𝖍

MutableIO FileStringLocaleSTMutable RealWorld Formatter

Formatter.new𝖎

MutableIO FileStringSTMutable RealWorld Formatter

Formatter.new𝖆

MutableIO FileSTMutable RealWorld Formatter

Formatter.new𝖇

MutableIO PropertiesMutableIO InputStreamIO ()

Properties.load𝖇, Properties.loadFromXML

MutableIO PropertiesMutableIO OutputStreamStringStringIO ()

Properties.storeToXML𝖇

MutableIO PropertiesMutableIO OutputStreamStringIO ()

Properties.store𝖇, Properties.storeToXML𝖆

MutableIO PropertiesMutableIO PrintWriterIO ()

Properties.list𝖇

MutableIO PropertiesMutableIO WriterStringIO ()

Properties.store𝖆

MutableIO PropertiesMutableIO PrintStreamIO ()

Properties.list𝖆

MutableIO PropertiesMutableIO ReaderIO ()

Properties.load𝖆

MutableIO ReaderSTMutable RealWorld PropertyResourceBundle

PropertyResourceBundle.new𝖇

JArray FormatterBigDecimalLayoutFormIntMaybe FormatterBigDecimalLayoutForm

ArrayElement_FormatterBigDecimalLayoutForm.itemAt

JArray FormatterBigDecimalLayoutFormIntFormatterBigDecimalLayoutForm

ArrayElement_FormatterBigDecimalLayoutForm.elemAt

JArray FormatterBigDecimalLayoutForm → [Maybe FormatterBigDecimalLayoutForm]

ArrayElement_FormatterBigDecimalLayoutForm.maybeListFromArray

JArray FormatterBigDecimalLayoutForm → [FormatterBigDecimalLayoutForm]

ArrayElement_FormatterBigDecimalLayoutForm.listFromArray

JArray FormatterBigDecimalLayoutFormInt

ArrayElement_FormatterBigDecimalLayoutForm.arrayLength

JArray LocaleIntMaybe Locale

ArrayElement_Locale.itemAt

JArray LocaleIntLocale

ArrayElement_Locale.elemAt

JArray Locale → [Maybe Locale]

ArrayElement_Locale.maybeListFromArray

JArray Locale → [Locale]

ArrayElement_Locale.listFromArray

JArray LocaleInt

ArrayElement_Locale.arrayLength

JArray LocaleCategoryIntMaybe LocaleCategory

ArrayElement_LocaleCategory.itemAt

JArray LocaleCategoryIntLocaleCategory

ArrayElement_LocaleCategory.elemAt

JArray LocaleCategory → [Maybe LocaleCategory]

ArrayElement_LocaleCategory.maybeListFromArray

JArray LocaleCategory → [LocaleCategory]

ArrayElement_LocaleCategory.listFromArray

JArray LocaleCategoryInt

ArrayElement_LocaleCategory.arrayLength

StringStringStringLocale

Locale.new𝖈

StringStringLocale

Locale.new𝖇

StringLocaleMutableIO ClassLoaderResourceBundle_ControlSTMutable RealWorld ResourceBundle

ResourceBundle.getBundle𝖈

StringLocaleMutableIO ClassLoaderSTMutable RealWorld ResourceBundle

ResourceBundle.getBundle𝖇

StringCurrency

Currency.getInstance𝖇

StringFormatterBigDecimalLayoutForm

FormatterBigDecimalLayoutForm.valueOf

StringLocale

Locale.new𝖆, Locale.forLanguageTag

StringLocaleCategory

LocaleCategory.valueOf

StringTimeZone

TimeZone.getTimeZone

StringUUID

UUID.fromString

StringLong

Date.parse

[(Int, FormatterBigDecimalLayoutForm)] → JArray FormatterBigDecimalLayoutForm

ArrayElement_FormatterBigDecimalLayoutForm.arrayFromIndexList

[(Int, Locale)] → JArray Locale

ArrayElement_Locale.arrayFromIndexList

[(Int, LocaleCategory)] → JArray LocaleCategory

ArrayElement_LocaleCategory.arrayFromIndexList

[Maybe FormatterBigDecimalLayoutForm] → JArray FormatterBigDecimalLayoutForm

ArrayElement_FormatterBigDecimalLayoutForm.arrayFromMaybeList

[Maybe Locale] → JArray Locale

ArrayElement_Locale.arrayFromMaybeList

[Maybe LocaleCategory] → JArray LocaleCategory

ArrayElement_LocaleCategory.arrayFromMaybeList

[FormatterBigDecimalLayoutForm] → JArray FormatterBigDecimalLayoutForm

ArrayElement_FormatterBigDecimalLayoutForm.arrayFromList

[Locale] → StringString

Show_Locale.showList

[Locale] → JArray Locale

ArrayElement_Locale.arrayFromList

[LocaleCategory] → JArray LocaleCategory

ArrayElement_LocaleCategory.arrayFromList

BitSetBitSet

Serializable_BitSet.thaw, Serializable_BitSet.copySerializable, Serializable_BitSet.freeze

CalendarCalendar

Serializable_Calendar.thaw, Serializable_Calendar.copySerializable, Serializable_Calendar.freeze

CurrencyLocaleString

Currency.getSymbol𝖇, Currency.getDisplayName𝖆

CurrencyString

Currency.toString, Currency.getSymbol𝖆, Currency.getDisplayName𝖇, Currency.getCurrencyCode

CurrencyCurrency

Serializable_Currency.thaw, Serializable_Currency.copySerializable, Serializable_Currency.freeze

CurrencyInt

Currency.getNumericCode, Currency.getDefaultFractionDigits

DateDate

Serializable_Date.thaw, Serializable_Date.copySerializable, Serializable_Date.freeze

EventObjectEventObject

Serializable_EventObject.thaw, Serializable_EventObject.copySerializable, Serializable_EventObject.freeze

FormatterBigDecimalLayoutFormFormatterBigDecimalLayoutForm

Serializable_FormatterBigDecimalLayoutForm.thaw, Serializable_FormatterBigDecimalLayoutForm.copySerializable, Serializable_FormatterBigDecimalLayoutForm.freeze

GregorianCalendarGregorianCalendar

Serializable_GregorianCalendar.thaw, Serializable_GregorianCalendar.copySerializable, Serializable_GregorianCalendar.freeze

LocaleStringString

Locale.getUnicodeLocaleType

LocaleLocaleString

Locale.getDisplayVariant𝖆, Locale.getDisplayName𝖆, Locale.getDisplayCountry𝖇, Locale.getDisplayLanguage𝖇, Locale.getDisplayScript𝖇

LocaleCharString

Locale.getExtension

LocaleObjectBool

Locale.equals

LocaleString

Show_Locale.showsub, Show_Locale.display, Show_Locale.show, Locale.toLanguageTag, Locale.toString, Locale.getVariant, Locale.getScript, Locale.getLanguage, Locale.getISO3Language, Locale.getISO3Country, Locale.getDisplayVariant𝖇, Locale.getDisplayScript𝖆, Locale.getDisplayName𝖇, Locale.getDisplayLanguage𝖆, Locale.getDisplayCountry𝖆, Locale.getCountry

Locale → [Char]

Show_Locale.showChars

LocaleCurrency

Currency.getInstance𝖆

LocaleLocale

Serializable_Locale.thaw, Serializable_Locale.copySerializable, Serializable_Locale.freeze

LocaleInt

Locale.hashCode

LocaleObject

Locale.clone

LocaleCategoryLocaleCategory

Serializable_LocaleCategory.thaw, Serializable_LocaleCategory.copySerializable, Serializable_LocaleCategory.freeze

PropertiesProperties

Serializable_Properties.thaw, Serializable_Properties.copySerializable, Serializable_Properties.freeze

PropertyPermissionPermissionBool

PropertyPermission.implies

PropertyPermissionObjectBool

PropertyPermission.equals

PropertyPermissionString

PropertyPermission.getActions

PropertyPermissionPropertyPermission

Serializable_PropertyPermission.thaw, Serializable_PropertyPermission.copySerializable, Serializable_PropertyPermission.freeze

PropertyPermissionInt

PropertyPermission.hashCode

ResourceBundle_ControlStringStringString

ResourceBundle_Control.toResourceName

ResourceBundle_ControlStringLocaleStringMutableIO ClassLoaderMutableIO ResourceBundleLongIO Bool

ResourceBundle_Control.needsReload

ResourceBundle_ControlStringLocaleStringMutableIO ClassLoaderBoolSTMutable RealWorld ResourceBundle

ResourceBundle_Control.newBundle

ResourceBundle_ControlStringLocaleString

ResourceBundle_Control.toBundleName

ResourceBundle_ControlStringLocaleLocale

ResourceBundle_Control.getFallbackLocale

ResourceBundle_ControlStringLocaleLong

ResourceBundle_Control.getTimeToLive

SimpleTimeZoneSimpleTimeZone

Serializable_SimpleTimeZone.thaw, Serializable_SimpleTimeZone.copySerializable, Serializable_SimpleTimeZone.freeze

TimeZoneLocaleString

TimeZone.getDisplayName𝖉

TimeZoneTimeZoneBool

TimeZone.hasSameRules

TimeZoneBoolIntLocaleString

TimeZone.getDisplayName𝖆

TimeZoneBoolIntString

TimeZone.getDisplayName𝖈

TimeZoneIntIntIntIntIntIntInt

TimeZone.getOffset𝖆

TimeZoneLongInt

TimeZone.getOffset𝖇

TimeZoneString

TimeZone.getID, TimeZone.getDisplayName𝖇

TimeZoneTimeZone

Serializable_TimeZone.thaw, Serializable_TimeZone.copySerializable, Serializable_TimeZone.freeze

TimeZoneBool

TimeZone.useDaylightTime, TimeZone.observesDaylightTime

TimeZoneInt

TimeZone.getRawOffset, TimeZone.getDSTSavings

TimeZoneObject

TimeZone.clone

UUIDUUIDInt

UUID.compareTo

UUIDObjectBool

UUID.equals

UUIDString

UUID.toString

UUIDUUID

Serializable_UUID.thaw, Serializable_UUID.copySerializable, Serializable_UUID.freeze

UUIDInt

UUID.version, UUID.variant, UUID.hashCode, UUID.clockSequence

UUIDLong

UUID.timestamp, UUID.node, UUID.getLeastSignificantBits, UUID.getMostSignificantBits

()STMutable RealWorld Date

Date.new𝖇

()STMutable RealWorld Random

Random.new𝖆

IntLocaleStringString

Show_Locale.showsPrec

IntIntIntIntIntIntLong

Date.uTC

ObjectStringString

Objects.toString𝖇

ObjectObjectBool

Objects.deepEquals, Objects.equals

ObjectString

Objects.toString𝖆

ObjectInt

Objects.hashCode

Class ConcurrentModificationException

Exceptional_ConcurrentModificationException.javaClass

Class DuplicateFormatFlagsException

Exceptional_DuplicateFormatFlagsException.javaClass

Class FormatFlagsConversionMismatchException

Exceptional_FormatFlagsConversionMismatchException.javaClass

Class FormatterBigDecimalLayoutForm

ArrayElement_FormatterBigDecimalLayoutForm.javaClass

Class FormatterClosedException

Exceptional_FormatterClosedException.javaClass

Class IllegalFormatCodePointException

Exceptional_IllegalFormatCodePointException.javaClass

Class IllegalFormatConversionException

Exceptional_IllegalFormatConversionException.javaClass

Class IllegalFormatException

Exceptional_IllegalFormatException.javaClass

Class IllegalFormatFlagsException

Exceptional_IllegalFormatFlagsException.javaClass

Class IllegalFormatPrecisionException

Exceptional_IllegalFormatPrecisionException.javaClass

Class IllegalFormatWidthException

Exceptional_IllegalFormatWidthException.javaClass

Class IllformedLocaleException

Exceptional_IllformedLocaleException.javaClass

Class InputMismatchException

Exceptional_InputMismatchException.javaClass

Class InvalidPropertiesFormatException

Exceptional_InvalidPropertiesFormatException.javaClass

Class Locale

ArrayElement_Locale.javaClass

Class LocaleCategory

ArrayElement_LocaleCategory.javaClass

Class MissingFormatArgumentException

Exceptional_MissingFormatArgumentException.javaClass

Class MissingFormatWidthException

Exceptional_MissingFormatWidthException.javaClass

Class MissingResourceException

Exceptional_MissingResourceException.javaClass

Class NoSuchElementException

Exceptional_NoSuchElementException.javaClass

Class ServiceConfigurationError

Exceptional_ServiceConfigurationError.javaClass

Class TooManyListenersException

Exceptional_TooManyListenersException.javaClass

Class UnknownFormatConversionException

Exceptional_UnknownFormatConversionException.javaClass

Class UnknownFormatFlagsException

Exceptional_UnknownFormatFlagsException.javaClass

FormatterBigDecimalLayoutForm

FormatterBigDecimalLayoutForm.scientific, FormatterBigDecimalLayoutForm.decimal_float

Locale

Locale.us, Locale.traditional_chinese, Locale.uk, Locale.simplified_chinese, Locale.taiwan, Locale.root, Locale.prc, Locale.korean, Locale.japanese, Locale.italian, Locale.italy, Locale.japan, Locale.korea, Locale.german, Locale.french, Locale.france, Locale.germany, Locale.english, Locale.china, Locale.canada, Locale.canada_french, Locale.chinese

LocaleCategory

LocaleCategory.display, LocaleCategory.format

Char

Locale.unicode_locale_extension, Locale.private_use_extension

Int

Calendar.zone_offset, Calendar.week_of_year, Calendar.year, Calendar.wednesday, Calendar.tuesday, Calendar.undecimber, Calendar.week_of_month, Calendar.thursday, Calendar.short, Calendar.sunday, Calendar.second, Calendar.saturday, Calendar.september, Calendar.october, Calendar.month, Calendar.monday, Calendar.november, Calendar.pm, Calendar.millisecond, Calendar.may, Calendar.june, Calendar.long, Calendar.march, Calendar.january, Calendar.hour, Calendar.hour_of_day, Calendar.july, Calendar.minute, Calendar.friday, Calendar.era, Calendar.february, Calendar.dst_offset, Calendar.field_count, Calendar.day_of_year, Calendar.day_of_week_in_month, Calendar.day_of_month, Calendar.date, Calendar.day_of_week, Calendar.april, Calendar.august, Calendar.am, Calendar.all_styles, Calendar.am_pm, Calendar.december, FormattableFlags.uppercase, FormattableFlags.alternate, FormattableFlags.left_justify, GregorianCalendar.bc, GregorianCalendar.ad, SimpleTimeZone.utc_time, SimpleTimeZone.wall_time, SimpleTimeZone.standard_time, TimeZone.short, TimeZone.long

Long

ResourceBundle_Control.ttl_no_expiration_control, ResourceBundle_Control.ttl_dont_cache

(FormatterBigDecimalLayoutFormFormatterBigDecimalLayoutForm) → ArrayOf 𝖆 FormatterBigDecimalLayoutFormIntST 𝖆 ()

ArrayElement_FormatterBigDecimalLayoutForm.modifyElemAt, ArrayElement_FormatterBigDecimalLayoutForm.modifyAt

(LocaleLocale) → ArrayOf 𝖆 LocaleIntST 𝖆 ()

ArrayElement_Locale.modifyElemAt, ArrayElement_Locale.modifyAt

(LocaleCategoryLocaleCategory) → ArrayOf 𝖆 LocaleCategoryIntST 𝖆 ()

ArrayElement_LocaleCategory.modifyElemAt, ArrayElement_LocaleCategory.modifyAt

MutableIO (ServiceLoader t) → STMutable RealWorld (Iterator t)

ServiceLoader.iterator

MutableIO (ServiceLoader t) → IO String

ServiceLoader.toString

MutableIO (ServiceLoader t) → IO ()

ServiceLoader.reload

Mutable s (Collection Object) → Mutable s (Collection Object) → ST s Bool

Collections.disjoint

Mutable s (Collection Object) → ObjectST s Int

Collections.frequency

Mutable s (EventListenerProxy EventListener) → STMutable s EventListener

EventListenerProxy.getListener

Mutable s (List String) → ST s ResourceBundle_Control

ResourceBundle_Control.getNoFallbackControl, ResourceBundle_Control.getControl

Mutable s (List Object) → Mutable s (List Object) → ST s Int

Collections.lastIndexOfSubList, Collections.indexOfSubList

Mutable s (List Object) → Mutable s RandomST s ()

Collections.shuffle𝖆

Mutable s (List Object) → IntIntST s ()

Collections.swap

Mutable s (List Object) → IntST s ()

Collections.rotate

Mutable s (List Object) → ST s ()

Collections.shuffle𝖇, Collections.reverse

ArrayOf s ByteArrayOf s ByteST s Bool

Arrays.equals𝖍

ArrayOf s ByteByteST s ()

Arrays.fill𝖒

ArrayOf s ByteByteST s Int

Arrays.binarySearch𝖈

ArrayOf s ByteIntIntByteST s ()

Arrays.fill𝖓

ArrayOf s ByteIntIntByteST s Int

Arrays.binarySearch𝖉

ArrayOf s ByteIntIntSTMutable s (JArray Byte)

Arrays.copyOfRange𝖌

ArrayOf s ByteIntIntST s ()

Arrays.sort𝖐

ArrayOf s ByteIntSTMutable s (JArray Byte)

Arrays.copyOf𝖉

ArrayOf s ByteSTMutable s BitSet

BitSet.valueOf𝖉

ArrayOf s ByteST s String

Arrays.toString𝖎

ArrayOf s ByteST s UUID

UUID.nameUUIDFromBytes

ArrayOf s ByteST s ()

Arrays.sort𝖑

ArrayOf s ByteST s Int

Arrays.hashCode𝖆

ArrayOf s ShortArrayOf s ShortST s Bool

Arrays.equals𝖇

ArrayOf s ShortShortST s ()

Arrays.fill𝖉

ArrayOf s ShortShortST s Int

Arrays.binarySearch𝖎

ArrayOf s ShortIntIntShortST s ()

Arrays.fill𝖆

ArrayOf s ShortIntIntShortST s Int

Arrays.binarySearch𝖏

ArrayOf s ShortIntIntSTMutable s (JArray Short)

Arrays.copyOfRange𝖍

ArrayOf s ShortIntIntST s ()

Arrays.sort𝖌

ArrayOf s ShortIntSTMutable s (JArray Short)

Arrays.copyOf𝖇

ArrayOf s ShortST s String

Arrays.toString𝖌

ArrayOf s ShortST s ()

Arrays.sort𝖍

ArrayOf s ShortST s Int

Arrays.hashCode𝖍

ArrayOf s BoolArrayOf s BoolST s Bool

Arrays.equals𝖌

ArrayOf s BoolBoolST s ()

Arrays.fill𝖔

ArrayOf s BoolIntIntBoolST s ()

Arrays.fill𝖕

ArrayOf s BoolIntIntSTMutable s (JArray Bool)

Arrays.copyOfRange𝖆

ArrayOf s BoolIntSTMutable s (JArray Bool)

Arrays.copyOf𝖋

ArrayOf s BoolST s String

Arrays.toString𝖆

ArrayOf s BoolST s Int

Arrays.hashCode𝖇

ArrayOf s CharArrayOf s CharST s Bool

Arrays.equals𝖆

ArrayOf s CharCharST s ()

Arrays.fill𝖐

ArrayOf s CharCharST s Int

Arrays.binarySearch𝖇

ArrayOf s CharIntIntCharST s ()

Arrays.fill𝖑

ArrayOf s CharIntIntCharST s Int

Arrays.binarySearch𝖆

ArrayOf s CharIntIntSTMutable s (JArray Char)

Arrays.copyOfRange𝖊

ArrayOf s CharIntIntST s ()

Arrays.sort𝖒

ArrayOf s CharIntSTMutable s (JArray Char)

Arrays.copyOf𝖎

ArrayOf s CharST s String

Arrays.toString𝖍

ArrayOf s CharST s ()

Arrays.sort𝖓

ArrayOf s CharST s Int

Arrays.hashCode𝖎

ArrayOf s DoubleArrayOf s DoubleST s Bool

Arrays.equals𝖋

ArrayOf s DoubleDoubleST s ()

Arrays.fill𝖊

ArrayOf s DoubleDoubleST s Int

Arrays.binarySearch𝖊

ArrayOf s DoubleIntIntDoubleST s ()

Arrays.fill𝖋

ArrayOf s DoubleIntIntDoubleST s Int

Arrays.binarySearch𝖕

ArrayOf s DoubleIntIntSTMutable s (JArray Double)

Arrays.copyOfRange𝖇

ArrayOf s DoubleIntIntST s ()

Arrays.sort𝖉

ArrayOf s DoubleIntSTMutable s (JArray Double)

Arrays.copyOf𝖌

ArrayOf s DoubleST s String

Arrays.toString𝖈

ArrayOf s DoubleST s ()

Arrays.sort𝖈

ArrayOf s DoubleST s Int

Arrays.hashCode𝖉

ArrayOf s FloatArrayOf s FloatST s Bool

Arrays.equals𝖊

ArrayOf s FloatFloatST s ()

Arrays.fill𝖌

ArrayOf s FloatFloatST s Int

Arrays.binarySearch𝖗

ArrayOf s FloatIntIntFloatST s ()

Arrays.fill𝖍

ArrayOf s FloatIntIntFloatST s Int

Arrays.binarySearch𝖑

ArrayOf s FloatIntIntSTMutable s (JArray Float)

Arrays.copyOfRange𝖉

ArrayOf s FloatIntIntST s ()

Arrays.sort𝖊

ArrayOf s FloatIntSTMutable s (JArray Float)

Arrays.copyOf𝖍

ArrayOf s FloatST s String

Arrays.toString𝖇

ArrayOf s FloatST s ()

Arrays.sort𝖇

ArrayOf s FloatST s Int

Arrays.hashCode𝖈

ArrayOf s IntArrayOf s IntST s Bool

Arrays.equals𝖈

ArrayOf s IntIntIntIntST s ()

Arrays.fill𝖈

ArrayOf s IntIntIntIntST s Int

Arrays.binarySearch𝖌

ArrayOf s IntIntIntSTMutable s (JArray Int)

Arrays.copyOfRange𝖎

ArrayOf s IntIntIntST s ()

Arrays.sort𝖔

ArrayOf s IntIntSTMutable s (JArray Int)

Arrays.copyOf𝖆

ArrayOf s IntIntST s ()

Arrays.fill𝖇

ArrayOf s IntIntST s Int

Arrays.binarySearch𝖋

ArrayOf s IntST s String

Arrays.toString𝖋

ArrayOf s IntST s ()

Arrays.sort𝖗

ArrayOf s IntST s Int

Arrays.hashCode𝖌

ArrayOf s LongArrayOf s LongST s Bool

Arrays.equals𝖎

ArrayOf s LongIntIntLongST s ()

Arrays.fill𝖗

ArrayOf s LongIntIntLongST s Int

Arrays.binarySearch𝖍

ArrayOf s LongIntIntSTMutable s (JArray Long)

Arrays.copyOfRange𝖈

ArrayOf s LongIntIntST s ()

Arrays.sort𝖎

ArrayOf s LongIntSTMutable s (JArray Long)

Arrays.copyOf𝖈

ArrayOf s LongLongST s ()

Arrays.fill𝖖

ArrayOf s LongLongST s Int

Arrays.binarySearch𝖐

ArrayOf s LongSTMutable s BitSet

BitSet.valueOf𝖇

ArrayOf s LongST s String

Arrays.toString𝖊

ArrayOf s LongST s ()

Arrays.sort𝖏

ArrayOf s LongST s Int

Arrays.hashCode𝖋

ArrayOf s ObjectST s Int

Objects.hash

Mutable s AppendableLocaleSTMutable s Formatter

Formatter.new𝖑

Mutable s AppendableSTMutable s Formatter

Formatter.new𝖓

Mutable s ReadableSTMutable s Scanner

Scanner.new𝖇

Mutable s BitSetMutable s BitSetST s ()

BitSet.xor, BitSet.or, BitSet.andNot, BitSet.and

Mutable s BitSetMutable s BitSetST s Bool

BitSet.intersects

Mutable s BitSetIntBoolST s ()

BitSet.set𝖇

Mutable s BitSetIntIntBoolST s ()

BitSet.set𝖉

Mutable s BitSetIntIntSTMutable s BitSet

BitSet.get𝖆

Mutable s BitSetIntIntST s ()

BitSet.set𝖈, BitSet.clear𝖇, BitSet.flip𝖆

Mutable s BitSetIntST s ()

BitSet.set𝖆, BitSet.flip𝖇, BitSet.clear𝖆

Mutable s BitSetIntST s Bool

BitSet.get𝖇

Mutable s BitSetIntST s Int

BitSet.previousSetBit, BitSet.nextClearBit, BitSet.nextSetBit, BitSet.previousClearBit

Mutable s BitSetObjectST s Bool

BitSet.equals

Mutable s BitSetSTMutable s (JArray Byte)

BitSet.toByteArray

Mutable s BitSetSTMutable s (JArray Long)

BitSet.toLongArray

Mutable s BitSetST s String

BitSet.toString

Mutable s BitSetST s ()

BitSet.clear𝖈

Mutable s BitSetST s Bool

BitSet.isEmpty

Mutable s BitSetST s Int

BitSet.size, BitSet.length, BitSet.hashCode, BitSet.cardinality

Mutable s BitSetST s Object

BitSet.clone

Mutable s ByteBufferSTMutable s BitSet

BitSet.valueOf𝖆

Mutable s CalendarMutable s CalendarST s Int

Calendar.compareTo

Mutable s CalendarMutable s DateST s ()

Calendar.setTime

Mutable s CalendarTimeZoneST s ()

Calendar.setTimeZone

Mutable s CalendarBoolST s ()

Calendar.setLenient

Mutable s CalendarIntBoolST s ()

Calendar.roll𝖆

Mutable s CalendarIntIntLocaleSTMutable s (Map String Int)

Calendar.getDisplayNames

Mutable s CalendarIntIntLocaleST s String

Calendar.getDisplayName

Mutable s CalendarIntIntIntIntIntIntST s ()

Calendar.set𝖉

Mutable s CalendarIntIntIntIntIntST s ()

Calendar.set𝖆

Mutable s CalendarIntIntIntST s ()

Calendar.setWeekDate, Calendar.set𝖈

Mutable s CalendarIntIntST s ()

Calendar.set𝖇, Calendar.roll𝖇, Calendar.add

Mutable s CalendarIntST s ()

Calendar.setMinimalDaysInFirstWeek, Calendar.setFirstDayOfWeek, Calendar.clear𝖇

Mutable s CalendarIntST s Bool

Calendar.isSet

Mutable s CalendarIntST s Int

Calendar.getMinimum, Calendar.getLeastMaximum, Calendar.getGreatestMinimum, Calendar.getActualMinimum, Calendar.get, Calendar.getActualMaximum, Calendar.getMaximum

Mutable s CalendarLongST s ()

Calendar.setTimeInMillis

Mutable s CalendarObjectST s Bool

Calendar.equals, Calendar.before, Calendar.after

Mutable s CalendarSTMutable s Date

Calendar.getTime

Mutable s CalendarST s String

Calendar.toString

Mutable s CalendarST s TimeZone

Calendar.getTimeZone

Mutable s CalendarST s ()

Calendar.clear𝖆

Mutable s CalendarST s Bool

Calendar.isWeekDateSupported, Calendar.isLenient

Mutable s CalendarST s Int

Calendar.getWeekYear, Calendar.getWeeksInWeekYear, Calendar.getMinimalDaysInFirstWeek, Calendar.hashCode, Calendar.getFirstDayOfWeek

Mutable s CalendarST s Long

Calendar.getTimeInMillis

Mutable s CalendarST s Object

Calendar.clone

Mutable s DateMutable s DateST s Bool

Date.before, Date.after

Mutable s DateMutable s DateST s Int

Date.compareTo

Mutable s DateLongST s ()

Date.setTime

Mutable s DateObjectST s Bool

Date.equals

Mutable s DateST s String

Date.toString

Mutable s DateST s Int

Date.hashCode

Mutable s DateST s Long

Date.getTime

Mutable s DateST s Object

Date.clone

Mutable s EventObjectST s String

EventObject.toString

Mutable s EventObjectST s Object

EventObject.getSource

Mutable s FileStringSTMutable s Scanner

Scanner.new𝖉

Mutable s FileSTMutable s Scanner

Scanner.new𝖊

Mutable s FormattableMutable s FormatterIntIntIntST s ()

Formattable.formatTo

Mutable s FormatterStringArrayOf s ObjectSTMutable s Formatter

Formatter.format𝖆

Mutable s FormatterLocaleStringArrayOf s ObjectSTMutable s Formatter

Formatter.format𝖇

Mutable s FormatterSTMutable s Appendable

Formatter.out

Mutable s FormatterST s String

Formatter.toString

Mutable s FormatterST s IOException

Formatter.ioException

Mutable s FormatterST s Locale

Formatter.locale

Mutable s FormatterST s ()

Formatter.flush, Formatter.close

Mutable s GregorianCalendarMutable s DateST s ()

GregorianCalendar.setGregorianChange

Mutable s GregorianCalendarTimeZoneST s ()

GregorianCalendar.setTimeZone

Mutable s GregorianCalendarIntBoolST s ()

GregorianCalendar.roll𝖇

Mutable s GregorianCalendarIntIntIntST s ()

GregorianCalendar.setWeekDate

Mutable s GregorianCalendarIntIntST s ()

GregorianCalendar.roll𝖆, GregorianCalendar.add

Mutable s GregorianCalendarIntST s Bool

GregorianCalendar.isLeapYear

Mutable s GregorianCalendarIntST s Int

GregorianCalendar.getMaximum, GregorianCalendar.getMinimum, GregorianCalendar.getActualMinimum, GregorianCalendar.getActualMaximum, GregorianCalendar.getGreatestMinimum, GregorianCalendar.getLeastMaximum

Mutable s GregorianCalendarObjectST s Bool

GregorianCalendar.equals

Mutable s GregorianCalendarSTMutable s Date

GregorianCalendar.getGregorianChange

Mutable s GregorianCalendarST s TimeZone

GregorianCalendar.getTimeZone

Mutable s GregorianCalendarST s Bool

GregorianCalendar.isWeekDateSupported

Mutable s GregorianCalendarST s Int

GregorianCalendar.getWeeksInWeekYear, GregorianCalendar.getWeekYear, GregorianCalendar.hashCode

Mutable s GregorianCalendarST s Object

GregorianCalendar.clone

Mutable s ListResourceBundleStringST s Object

ListResourceBundle.handleGetObject

Mutable s ListResourceBundleSTMutable s (Enumeration String)

ListResourceBundle.getKeys

Mutable s LocaleBuilderStringStringSTMutable s LocaleBuilder

LocaleBuilder.setUnicodeLocaleKeyword

Mutable s LocaleBuilderStringSTMutable s LocaleBuilder

LocaleBuilder.setVariant, LocaleBuilder.setScript, LocaleBuilder.setLanguage, LocaleBuilder.setLanguageTag, LocaleBuilder.setRegion, LocaleBuilder.addUnicodeLocaleAttribute, LocaleBuilder.removeUnicodeLocaleAttribute

Mutable s LocaleBuilderLocaleSTMutable s LocaleBuilder

LocaleBuilder.setLocale

Mutable s LocaleBuilderCharStringSTMutable s LocaleBuilder

LocaleBuilder.setExtension

Mutable s LocaleBuilderSTMutable s LocaleBuilder

LocaleBuilder.clearExtensions, LocaleBuilder.clear

Mutable s LocaleBuilderST s Locale

LocaleBuilder.build

Mutable s LongBufferSTMutable s BitSet

BitSet.valueOf𝖈

Mutable s PropertiesStringStringST s String

Properties.getProperty𝖆

Mutable s PropertiesStringStringST s Object

Properties.setProperty

Mutable s PropertiesStringST s String

Properties.getProperty𝖇

Mutable s PropertiesSTMutable s (Set String)

Properties.stringPropertyNames

Mutable s PropertiesSTMutable s Properties

Properties.new𝖇

Mutable s PropertyResourceBundleStringST s Object

PropertyResourceBundle.handleGetObject

Mutable s PropertyResourceBundleSTMutable s (Enumeration String)

PropertyResourceBundle.getKeys

Mutable s RandomIntST s Int

Random.nextInt𝖇

Mutable s RandomLongST s ()

Random.setSeed

Mutable s RandomST s Bool

Random.nextBoolean

Mutable s RandomST s Double

Random.nextGaussian, Random.nextDouble

Mutable s RandomST s Float

Random.nextFloat

Mutable s RandomST s Int

Random.nextInt𝖆

Mutable s RandomST s Long

Random.nextLong

Mutable s ReadableByteChannelStringSTMutable s Scanner

Scanner.new𝖍

Mutable s ReadableByteChannelSTMutable s Scanner

Scanner.new𝖌

Mutable s ResourceBundleStringSTMutable s (JArray String)

ResourceBundle.getStringArray

Mutable s ResourceBundleStringST s String

ResourceBundle.getString

Mutable s ResourceBundleStringST s Bool

ResourceBundle.containsKey

Mutable s ResourceBundleStringST s Object

ResourceBundle.getObject

Mutable s ResourceBundleSTMutable s (Enumeration String)

ResourceBundle.getKeys

Mutable s ResourceBundleSTMutable s (Set String)

ResourceBundle.keySet

Mutable s ResourceBundleST s Locale

ResourceBundle.getLocale

Mutable s ScannerStringIntST s String

Scanner.findWithinHorizon𝖆

Mutable s ScannerStringSTMutable s Scanner

Scanner.useDelimiter𝖆, Scanner.skip𝖆

Mutable s ScannerStringST s String

Scanner.next𝖆, Scanner.findInLine𝖇

Mutable s ScannerStringST s Bool

Scanner.hasNext𝖇

Mutable s ScannerLocaleSTMutable s Scanner

Scanner.useLocale

Mutable s ScannerRegexIntST s String

Scanner.findWithinHorizon𝖇

Mutable s ScannerRegexSTMutable s Scanner

Scanner.useDelimiter𝖇, Scanner.skip𝖇

Mutable s ScannerRegexST s String

Scanner.next𝖇, Scanner.findInLine𝖆

Mutable s ScannerRegexST s Bool

Scanner.hasNext𝖈

Mutable s ScannerIntSTMutable s Scanner

Scanner.useRadix

Mutable s ScannerIntST s Byte

Scanner.nextByte𝖇

Mutable s ScannerIntST s Short

Scanner.nextShort𝖇

Mutable s ScannerIntST s Bool

Scanner.hasNextShort𝖆, Scanner.hasNextLong𝖇, Scanner.hasNextByte𝖆, Scanner.hasNextBigInteger𝖆, Scanner.hasNextInt𝖆

Mutable s ScannerIntST s Int

Scanner.nextInt𝖇

Mutable s ScannerIntST s Integer

Scanner.nextBigInteger𝖇

Mutable s ScannerIntST s Long

Scanner.nextLong𝖇

Mutable s ScannerSTMutable s Scanner

Scanner.reset

Mutable s ScannerST s String

Scanner.next𝖈, Scanner.toString, Scanner.nextLine

Mutable s ScannerST s Byte

Scanner.nextByte𝖆

Mutable s ScannerST s IOException

Scanner.ioException

Mutable s ScannerST s Short

Scanner.nextShort𝖆

Mutable s ScannerST s BigDecimal

Scanner.nextBigDecimal

Mutable s ScannerST s Locale

Scanner.locale

Mutable s ScannerST s MatchResult

Scanner.match

Mutable s ScannerST s Regex

Scanner.delimiter

Mutable s ScannerST s ()

Scanner.remove, Scanner.close

Mutable s ScannerST s Bool

Scanner.nextBoolean, Scanner.hasNext𝖆, Scanner.hasNextShort𝖇, Scanner.hasNextLong𝖆, Scanner.hasNextInt𝖇, Scanner.hasNextLine, Scanner.hasNextDouble, Scanner.hasNextFloat, Scanner.hasNextBoolean, Scanner.hasNextBigInteger𝖇, Scanner.hasNextByte𝖇, Scanner.hasNextBigDecimal

Mutable s ScannerST s Double

Scanner.nextDouble

Mutable s ScannerST s Float

Scanner.nextFloat

Mutable s ScannerST s Int

Scanner.radix, Scanner.nextInt𝖆

Mutable s ScannerST s Integer

Scanner.nextBigInteger𝖆

Mutable s ScannerST s Long

Scanner.nextLong𝖆

Mutable s SimpleTimeZoneMutable s DateST s Bool

SimpleTimeZone.inDaylightTime

Mutable s SimpleTimeZoneTimeZoneST s Bool

SimpleTimeZone.hasSameRules

Mutable s SimpleTimeZoneIntIntIntIntBoolST s ()

SimpleTimeZone.setStartRule𝖆, SimpleTimeZone.setEndRule𝖈

Mutable s SimpleTimeZoneIntIntIntIntIntIntST s Int

SimpleTimeZone.getOffset𝖇

Mutable s SimpleTimeZoneIntIntIntIntST s ()

SimpleTimeZone.setStartRule𝖇, SimpleTimeZone.setEndRule𝖆

Mutable s SimpleTimeZoneIntIntIntST s ()

SimpleTimeZone.setStartRule𝖈, SimpleTimeZone.setEndRule𝖇

Mutable s SimpleTimeZoneIntST s ()

SimpleTimeZone.setStartYear, SimpleTimeZone.setRawOffset, SimpleTimeZone.setDSTSavings

Mutable s SimpleTimeZoneLongST s Int

SimpleTimeZone.getOffset𝖆

Mutable s SimpleTimeZoneObjectST s Bool

SimpleTimeZone.equals

Mutable s SimpleTimeZoneST s String

SimpleTimeZone.toString

Mutable s SimpleTimeZoneST s Bool

SimpleTimeZone.useDaylightTime, SimpleTimeZone.observesDaylightTime

Mutable s SimpleTimeZoneST s Int

SimpleTimeZone.hashCode, SimpleTimeZone.getDSTSavings, SimpleTimeZone.getRawOffset

Mutable s SimpleTimeZoneST s Object

SimpleTimeZone.clone

Mutable s StringTokenizerStringST s String

StringTokenizer.nextToken𝖆

Mutable s StringTokenizerST s String

StringTokenizer.nextToken𝖇

Mutable s StringTokenizerST s Bool

StringTokenizer.hasMoreElements, StringTokenizer.hasMoreTokens

Mutable s StringTokenizerST s Int

StringTokenizer.countTokens

Mutable s StringTokenizerST s Object

StringTokenizer.nextElement

Mutable s TimerMutable s TimerTaskMutable s DateLongST s ()

Timer.schedule𝖇, Timer.scheduleAtFixedRate𝖆

Mutable s TimerMutable s TimerTaskMutable s DateST s ()

Timer.schedule𝖆

Mutable s TimerMutable s TimerTaskLongLongST s ()

Timer.schedule𝖉, Timer.scheduleAtFixedRate𝖇

Mutable s TimerMutable s TimerTaskLongST s ()

Timer.schedule𝖈

Mutable s TimerST s ()

Timer.cancel

Mutable s TimerST s Int

Timer.purge

Mutable s TimerTaskST s ()

TimerTask.run

Mutable s TimerTaskST s Bool

TimerTask.cancel

Mutable s TimerTaskST s Long

TimerTask.scheduledExecutionTime

ArrayOf 𝖆 FormatterBigDecimalLayoutFormIntMaybe FormatterBigDecimalLayoutFormST 𝖆 ()

ArrayElement_FormatterBigDecimalLayoutForm.setAt

ArrayOf 𝖆 FormatterBigDecimalLayoutFormIntFormatterBigDecimalLayoutFormST 𝖆 ()

ArrayElement_FormatterBigDecimalLayoutForm.setElemAt

ArrayOf 𝖆 FormatterBigDecimalLayoutFormIntST 𝖆 (Maybe FormatterBigDecimalLayoutForm)

ArrayElement_FormatterBigDecimalLayoutForm.getAt

ArrayOf 𝖆 FormatterBigDecimalLayoutFormIntST 𝖆 FormatterBigDecimalLayoutForm

ArrayElement_FormatterBigDecimalLayoutForm.getElemAt

ArrayOf 𝖆 LocaleIntMaybe LocaleST 𝖆 ()

ArrayElement_Locale.setAt

ArrayOf 𝖆 LocaleIntLocaleST 𝖆 ()

ArrayElement_Locale.setElemAt

ArrayOf 𝖆 LocaleIntST 𝖆 (Maybe Locale)

ArrayElement_Locale.getAt

ArrayOf 𝖆 LocaleIntST 𝖆 Locale

ArrayElement_Locale.getElemAt

ArrayOf 𝖆 LocaleCategoryIntMaybe LocaleCategoryST 𝖆 ()

ArrayElement_LocaleCategory.setAt

ArrayOf 𝖆 LocaleCategoryIntLocaleCategoryST 𝖆 ()

ArrayElement_LocaleCategory.setElemAt

ArrayOf 𝖆 LocaleCategoryIntST 𝖆 (Maybe LocaleCategory)

ArrayElement_LocaleCategory.getAt

ArrayOf 𝖆 LocaleCategoryIntST 𝖆 LocaleCategory

ArrayElement_LocaleCategory.getElemAt

ArrayDeque 𝖆 → ArrayDeque 𝖆

Serializable_ArrayDeque.thaw, Serializable_ArrayDeque.copySerializable, Serializable_ArrayDeque.freeze

ArrayList 𝖆 → ArrayList 𝖆

Serializable_ArrayList.thaw, Serializable_ArrayList.copySerializable, Serializable_ArrayList.freeze

Comparator t → Comparator t → Bool

Comparator.equals

Comparator t → t → t → Int

Comparator.compare

EnumSet 𝖆 → EnumSet 𝖆

Serializable_EnumSet.thaw, Serializable_EnumSet.copySerializable, Serializable_EnumSet.freeze

HashSet 𝖆 → HashSet 𝖆

Serializable_HashSet.thaw, Serializable_HashSet.copySerializable, Serializable_HashSet.freeze

LinkedHashSet 𝖆 → LinkedHashSet 𝖆

Serializable_LinkedHashSet.thaw, Serializable_LinkedHashSet.copySerializable, Serializable_LinkedHashSet.freeze

LinkedList 𝖆 → LinkedList 𝖆

Serializable_LinkedList.thaw, Serializable_LinkedList.copySerializable, Serializable_LinkedList.freeze

PriorityQueue 𝖆 → PriorityQueue 𝖆

Serializable_PriorityQueue.thaw, Serializable_PriorityQueue.copySerializable, Serializable_PriorityQueue.freeze

Stack 𝖆 → Stack 𝖆

Serializable_Stack.thaw, Serializable_Stack.copySerializable, Serializable_Stack.freeze

TreeSet 𝖆 → TreeSet 𝖆

Serializable_TreeSet.thaw, Serializable_TreeSet.copySerializable, Serializable_TreeSet.freeze

Vector 𝖆 → Vector 𝖆

Serializable_Vector.thaw, Serializable_Vector.copySerializable, Serializable_Vector.freeze

Class s → MutableIO ClassLoaderSTMutable RealWorld (ServiceLoader s)

ServiceLoader.load𝖇

Class s → STMutable RealWorld (ServiceLoader s)

ServiceLoader.loadInstalled, ServiceLoader.load𝖆

StringStringLocaleSTMutable s Formatter

Formatter.new𝖈

StringStringBoolSTMutable s StringTokenizer

StringTokenizer.new𝖇

StringStringSTMutable s Formatter

Formatter.new𝖉

StringStringSTMutable s StringTokenizer

StringTokenizer.new𝖆

StringStringST s PropertyPermission

PropertyPermission.new

StringLocaleResourceBundle_ControlSTMutable s ResourceBundle

ResourceBundle.getBundle𝖆

StringLocaleSTMutable s ResourceBundle

ResourceBundle.getBundle𝖋

StringResourceBundle_ControlSTMutable s ResourceBundle

ResourceBundle.getBundle𝖊

StringBoolSTMutable s Timer

Timer.new𝖆

StringSTMutable s Formatter

Formatter.new𝖊

StringSTMutable s ResourceBundle

ResourceBundle.getBundle𝖉

StringSTMutable s Scanner

Scanner.new𝖋

StringSTMutable s StringTokenizer

StringTokenizer.new𝖈

StringSTMutable s Timer

Timer.new𝖉

[(Int, FormatterBigDecimalLayoutForm)] → STMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)

ArrayElement_FormatterBigDecimalLayoutForm.arrayFromIndexListST

[(Int, Locale)] → STMutable 𝖆 (JArray Locale)

ArrayElement_Locale.arrayFromIndexListST

[(Int, LocaleCategory)] → STMutable 𝖆 (JArray LocaleCategory)

ArrayElement_LocaleCategory.arrayFromIndexListST

[Maybe FormatterBigDecimalLayoutForm] → STMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)

ArrayElement_FormatterBigDecimalLayoutForm.arrayFromMaybeListST

[Maybe Locale] → STMutable 𝖆 (JArray Locale)

ArrayElement_Locale.arrayFromMaybeListST

[Maybe LocaleCategory] → STMutable 𝖆 (JArray LocaleCategory)

ArrayElement_LocaleCategory.arrayFromMaybeListST

[FormatterBigDecimalLayoutForm] → STMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)

ArrayElement_FormatterBigDecimalLayoutForm.arrayFromListST

[Locale] → STMutable 𝖆 (JArray Locale)

ArrayElement_Locale.arrayFromListST

[LocaleCategory] → STMutable 𝖆 (JArray LocaleCategory)

ArrayElement_LocaleCategory.arrayFromListST

LocaleSTMutable s (Set String)

Locale.getUnicodeLocaleKeys, Locale.getUnicodeLocaleAttributes

LocaleSTMutable s (Set Character)

Locale.getExtensionKeys

LocaleSTMutable s Calendar

Calendar.getInstance𝖈

LocaleSTMutable s Formatter

Formatter.new𝖒

LocaleSTMutable s GregorianCalendar

GregorianCalendar.new𝖋

LocaleST s ()

Locale.setDefault𝖆

LocaleCategoryLocaleST s ()

Locale.setDefault𝖇

LocaleCategoryST s Locale

Locale.getDefault𝖆

PathStringSTMutable s Scanner

Scanner.new𝖎

PathSTMutable s Scanner

Scanner.new𝖏

PropertyPermissionSTMutable s PermissionCollection

PropertyPermission.newPermissionCollection

ResourceBundle_ControlStringLocaleSTMutable s (List Locale)

ResourceBundle_Control.getCandidateLocales

ResourceBundle_ControlStringSTMutable s (List String)

ResourceBundle_Control.getFormats

TimeZoneMutable s DateST s Bool

TimeZone.inDaylightTime

TimeZoneStringST s ()

TimeZone.setID

TimeZoneLocaleSTMutable s Calendar

Calendar.getInstance𝖉

TimeZoneLocaleSTMutable s GregorianCalendar

GregorianCalendar.new𝖌

TimeZoneIntST s ()

TimeZone.setRawOffset

TimeZoneSTMutable s Calendar

Calendar.getInstance𝖇

TimeZoneSTMutable s GregorianCalendar

GregorianCalendar.new𝖊

TimeZoneST s ()

TimeZone.setDefault

()STMutable s (Set Currency)

Currency.getAvailableCurrencies

()STMutable s (JArray String)

Locale.getISOLanguages, Locale.getISOCountries, TimeZone.getAvailableIDs𝖆

()STMutable s (JArray FormatterBigDecimalLayoutForm)

FormatterBigDecimalLayoutForm.values

()STMutable s (JArray Locale)

Calendar.getAvailableLocales, Locale.getAvailableLocales

()STMutable s (JArray LocaleCategory)

LocaleCategory.values

()STMutable s BitSet

BitSet.new𝖇

()STMutable s Calendar

Calendar.getInstance𝖆

()STMutable s Formatter

Formatter.new𝖏

()STMutable s GregorianCalendar

GregorianCalendar.new𝖉

()STMutable s LocaleBuilder

LocaleBuilder.new

()STMutable s Properties

Properties.new𝖆

()STMutable s Timer

Timer.new𝖈

()ST s Locale

Locale.getDefault𝖇

()ST s TimeZone

TimeZone.getDefault

()ST s UUID

UUID.randomUUID

()ST s ()

ResourceBundle.clearCache𝖆

BoolSTMutable s Timer

Timer.new𝖇

IntStringIntIntIntIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone

SimpleTimeZone.new𝖆

IntStringIntIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone

SimpleTimeZone.new𝖇

IntStringIntIntIntIntIntIntIntIntSTMutable s SimpleTimeZone

SimpleTimeZone.new𝖈

IntStringSTMutable s SimpleTimeZone

SimpleTimeZone.new𝖉

IntIntIntIntIntIntSTMutable s GregorianCalendar

GregorianCalendar.new𝖈

IntIntIntIntIntSTMutable s GregorianCalendar

GregorianCalendar.new𝖇

IntIntIntSTMutable s GregorianCalendar

GregorianCalendar.new𝖆

IntSTMutable s (JArray String)

TimeZone.getAvailableIDs𝖇

IntSTMutable s BitSet

BitSet.new𝖆

IntSTMutable 𝖆 (JArray FormatterBigDecimalLayoutForm)

ArrayElement_FormatterBigDecimalLayoutForm.newArray

IntSTMutable 𝖆 (JArray Locale)

ArrayElement_Locale.newArray

IntSTMutable 𝖆 (JArray LocaleCategory)

ArrayElement_LocaleCategory.newArray

LongLongST s UUID

UUID.new

LongSTMutable s Date

Date.new𝖆

LongSTMutable s Random

Random.new𝖇

ObjectSTMutable s EventObject

EventObject.new

t → String → t

Objects.requireNonNull𝖇

t → t → Comparator t → Int

Objects.compare

t → t

Objects.requireNonNull𝖆

STMutable s (List String)

ResourceBundle_Control.format_properties, ResourceBundle_Control.format_class, ResourceBundle_Control.format_default

ω

AbstractCollection.toArray, AbstractList.listIterator, AbstractList.add, AbstractMapSimpleEntry.new, AbstractMapSimpleImmutableEntry.new, ArrayDeque.toArray, ArrayDeque.remove, ArrayDeque.new, ArrayList.toArray, ArrayList.remove, ArrayList.new, ArrayList.listIterator, ArrayList.add, ArrayList.addAll, Arrays.toString, Arrays.sort, Arrays.hashCode, Arrays.fill, Arrays.equals, Arrays.copyOfRange, Arrays.copyOf, Arrays.binarySearch, BitSet.valueOf, BitSet.set, BitSet.get, BitSet.flip, BitSet.clear, BitSet.new, Calendar.set, Calendar.roll, Calendar.getInstance, Calendar.clear, Collection.toArray, Collections.shuffle, Collections.reverseOrder, Collections.binarySearch, Currency.getSymbol, Currency.getInstance, Currency.getDisplayName, Date.new, Deque.remove, EnumMap.new, EnumSet.from, EnumSet.copyOf, Formatter.new, Formatter.format, GregorianCalendar.roll, GregorianCalendar.new, HashMap.new, HashSet.new, Hashtable.new, IdentityHashMap.new, LinkedHashMap.new, LinkedHashSet.new, LinkedList.toArray, LinkedList.remove, LinkedList.new, LinkedList.addAll, LinkedList.add, List.toArray, List.remove, List.listIterator, List.add, List.addAll, Locale.setDefault, Locale.new, Locale.getDisplayVariant, Locale.getDisplayScript, Locale.getDisplayName, Locale.getDisplayCountry, Locale.getDisplayLanguage, Locale.getDefault, NavigableMap.tailMap, NavigableMap.subMap, NavigableMap.headMap, NavigableSet.tailSet, NavigableSet.subSet, NavigableSet.headSet, Objects.toString, Objects.requireNonNull, PriorityQueue.toArray, PriorityQueue.new, Properties.storeToXML, Properties.store, Properties.load, Properties.list, Properties.getProperty, Properties.new, PropertyResourceBundle.new, Random.nextInt, Random.new, ResourceBundle.getBundle, ResourceBundle.clearCache, Scanner.useDelimiter, Scanner.skip, Scanner.nextShort, Scanner.nextLong, Scanner.nextInt, Scanner.nextByte, Scanner.next, Scanner.nextBigInteger, Scanner.new, Scanner.hasNextLong, Scanner.hasNextShort, Scanner.hasNextInt, Scanner.hasNextByte, Scanner.hasNextBigInteger, Scanner.hasNext, Scanner.findWithinHorizon, Scanner.findInLine, ServiceLoader.load, Set.toArray, SimpleTimeZone.setStartRule, SimpleTimeZone.setEndRule, SimpleTimeZone.new, SimpleTimeZone.getOffset, StringTokenizer.nextToken, StringTokenizer.new, TimeZone.getOffset, TimeZone.getDisplayName, TimeZone.getAvailableIDs, Timer.schedule, Timer.scheduleAtFixedRate, Timer.new, TreeMap.tailMap, TreeMap.subMap, TreeMap.new, TreeMap.headMap, TreeSet.tailSet, TreeSet.subSet, TreeSet.new, TreeSet.headSet, Vector.toArray, Vector.remove, Vector.new, Vector.listIterator, Vector.lastIndexOf, Vector.indexOf, Vector.add, Vector.addAll, WeakHashMap.new

AbstractMapSimpleEntry 𝖇 𝖆 → AbstractMapSimpleEntry 𝖇 𝖆

Serializable_AbstractMapSimpleEntry.thaw, Serializable_AbstractMapSimpleEntry.copySerializable, Serializable_AbstractMapSimpleEntry.freeze

AbstractMapSimpleImmutableEntry k v → ObjectBool

AbstractMapSimpleImmutableEntry.equals

AbstractMapSimpleImmutableEntry k v → String

AbstractMapSimpleImmutableEntry.toString

AbstractMapSimpleImmutableEntry k v → Int

AbstractMapSimpleImmutableEntry.hashCode

AbstractMapSimpleImmutableEntry k v → k

AbstractMapSimpleImmutableEntry.getKey

AbstractMapSimpleImmutableEntry k v → v

AbstractMapSimpleImmutableEntry.getValue

AbstractMapSimpleImmutableEntry 𝖇 𝖆 → AbstractMapSimpleImmutableEntry 𝖇 𝖆

Serializable_AbstractMapSimpleImmutableEntry.thaw, Serializable_AbstractMapSimpleImmutableEntry.copySerializable, Serializable_AbstractMapSimpleImmutableEntry.freeze

EnumMap 𝖇 𝖆 → EnumMap 𝖇 𝖆

Serializable_EnumMap.thaw, Serializable_EnumMap.copySerializable, Serializable_EnumMap.freeze

HashMap 𝖇 𝖆 → HashMap 𝖇 𝖆

Serializable_HashMap.thaw, Serializable_HashMap.copySerializable, Serializable_HashMap.freeze

Hashtable 𝖇 𝖆 → Hashtable 𝖇 𝖆

Serializable_Hashtable.thaw, Serializable_Hashtable.copySerializable, Serializable_Hashtable.freeze

IdentityHashMap 𝖇 𝖆 → IdentityHashMap 𝖇 𝖆

Serializable_IdentityHashMap.thaw, Serializable_IdentityHashMap.copySerializable, Serializable_IdentityHashMap.freeze

LinkedHashMap 𝖇 𝖆 → LinkedHashMap 𝖇 𝖆

Serializable_LinkedHashMap.thaw, Serializable_LinkedHashMap.copySerializable, Serializable_LinkedHashMap.freeze

TreeMap 𝖇 𝖆 → TreeMap 𝖇 𝖆

Serializable_TreeMap.thaw, Serializable_TreeMap.copySerializable, Serializable_TreeMap.freeze

Mutable s (Map e Boolean) → STMutable s (Set e)

Collections.newSetFromMap

Mutable s (AbstractCollection e) → Mutable s (Collection Object) → ST s Bool

AbstractCollection.retainAll, AbstractCollection.removeAll, AbstractCollection.containsAll

Mutable s (AbstractCollection e) → Mutable s (Collection e) → ST s Bool

AbstractCollection.addAll

Mutable s (AbstractCollection e) → ArrayOf s ObjectSTMutable s (JArray Object)

AbstractCollection.toArray𝖆

Mutable s (AbstractCollection e) → ObjectST s Bool

AbstractCollection.contains

Mutable s (AbstractCollection e) → e → ST s Bool

AbstractCollection.remove, AbstractCollection.add

Mutable s (AbstractCollection e) → STMutable s (Iterator e)

AbstractCollection.iterator

Mutable s (AbstractCollection e) → STMutable s (JArray Object)

AbstractCollection.toArray𝖇

Mutable s (AbstractCollection e) → ST s String

AbstractCollection.toString

Mutable s (AbstractCollection e) → ST s ()

AbstractCollection.clear

Mutable s (AbstractCollection e) → ST s Bool

AbstractCollection.isEmpty

Mutable s (AbstractCollection e) → ST s Int

AbstractCollection.size

Mutable s (AbstractList e) → IntMutable s (Collection e) → ST s Bool

AbstractList.addAll

Mutable s (AbstractList e) → IntIntSTMutable s (List e)

AbstractList.subList

Mutable s (AbstractList e) → Int → e → ST s ()

AbstractList.add𝖆

Mutable s (AbstractList e) → Int → e → ST s e

AbstractList.set

Mutable s (AbstractList e) → IntSTMutable s (ListIterator e)

AbstractList.listIterator𝖇

Mutable s (AbstractList e) → IntST s e

AbstractList.remove, AbstractList.get

Mutable s (AbstractList e) → ObjectST s Bool

AbstractList.equals

Mutable s (AbstractList e) → ObjectST s Int

AbstractList.indexOf, AbstractList.lastIndexOf

Mutable s (AbstractList e) → e → ST s Bool

AbstractList.add𝖇

Mutable s (AbstractList e) → STMutable s (Iterator e)

AbstractList.iterator

Mutable s (AbstractList e) → STMutable s (ListIterator e)

AbstractList.listIterator𝖆

Mutable s (AbstractList e) → ST s ()

AbstractList.clear

Mutable s (AbstractList e) → ST s Int

AbstractList.hashCode

Mutable s (AbstractQueue e) → Mutable s (Collection e) → ST s Bool

AbstractQueue.addAll

Mutable s (AbstractQueue e) → e → ST s Bool

AbstractQueue.add

Mutable s (AbstractQueue e) → ST s ()

AbstractQueue.clear

Mutable s (AbstractQueue e) → ST s e

AbstractQueue.remove, AbstractQueue.element

Mutable s (AbstractSequentialList e) → IntMutable s (Collection e) → ST s Bool

AbstractSequentialList.addAll

Mutable s (AbstractSequentialList e) → Int → e → ST s ()

AbstractSequentialList.add

Mutable s (AbstractSequentialList e) → Int → e → ST s e

AbstractSequentialList.set

Mutable s (AbstractSequentialList e) → IntSTMutable s (ListIterator e)

AbstractSequentialList.listIterator

Mutable s (AbstractSequentialList e) → IntST s e

AbstractSequentialList.remove, AbstractSequentialList.get

Mutable s (AbstractSequentialList e) → STMutable s (Iterator e)

AbstractSequentialList.iterator

Mutable s (AbstractSet e) → Mutable s (Collection Object) → ST s Bool

AbstractSet.removeAll

Mutable s (AbstractSet e) → ObjectST s Bool

AbstractSet.equals

Mutable s (AbstractSet e) → ST s Int

AbstractSet.hashCode

Mutable s (ArrayDeque e) → ArrayOf s ObjectSTMutable s (JArray Object)

ArrayDeque.toArray𝖆

Mutable s (ArrayDeque e) → ObjectST s Bool

ArrayDeque.remove𝖆, ArrayDeque.removeLastOccurrence, ArrayDeque.removeFirstOccurrence, ArrayDeque.contains

Mutable s (ArrayDeque e) → e → ST s ()

ArrayDeque.push, ArrayDeque.addFirst, ArrayDeque.addLast

Mutable s (ArrayDeque e) → e → ST s Bool

ArrayDeque.offerLast, ArrayDeque.offerFirst, ArrayDeque.add, ArrayDeque.offer

Mutable s (ArrayDeque e) → STMutable s (ArrayDeque e)

ArrayDeque.clone

Mutable s (ArrayDeque e) → STMutable s (Iterator e)

ArrayDeque.iterator, ArrayDeque.descendingIterator

Mutable s (ArrayDeque e) → STMutable s (JArray Object)

ArrayDeque.toArray𝖇

Mutable s (ArrayDeque e) → ST s ()

ArrayDeque.clear

Mutable s (ArrayDeque e) → ST s Bool

ArrayDeque.isEmpty

Mutable s (ArrayDeque e) → ST s Int

ArrayDeque.size

Mutable s (ArrayDeque e) → ST s e

ArrayDeque.removeLast, ArrayDeque.remove𝖇, ArrayDeque.removeFirst, ArrayDeque.pop, ArrayDeque.poll, ArrayDeque.pollFirst, ArrayDeque.peekFirst, ArrayDeque.peek, ArrayDeque.peekLast, ArrayDeque.pollLast, ArrayDeque.getLast, ArrayDeque.getFirst, ArrayDeque.element

Mutable s (ArrayList e) → Mutable s (Collection e) → ST s Bool

ArrayList.retainAll, ArrayList.removeAll, ArrayList.addAll𝖇

Mutable s (ArrayList e) → ArrayOf s ObjectSTMutable s (JArray Object)

ArrayList.toArray𝖇

Mutable s (ArrayList e) → IntMutable s (Collection e) → ST s Bool

ArrayList.addAll𝖆

Mutable s (ArrayList e) → IntIntSTMutable s (List e)

ArrayList.subList

Mutable s (ArrayList e) → Int → e → ST s ()

ArrayList.add𝖆

Mutable s (ArrayList e) → Int → e → ST s e

ArrayList.set

Mutable s (ArrayList e) → IntSTMutable s (ListIterator e)

ArrayList.listIterator𝖆

Mutable s (ArrayList e) → IntST s ()

ArrayList.ensureCapacity

Mutable s (ArrayList e) → IntST s e

ArrayList.remove𝖆, ArrayList.get

Mutable s (ArrayList e) → e → ST s Bool

ArrayList.remove𝖇, ArrayList.contains, ArrayList.add𝖇

Mutable s (ArrayList e) → e → ST s Int

ArrayList.lastIndexOf, ArrayList.indexOf

Mutable s (ArrayList e) → STMutable s (Iterator e)

ArrayList.iterator

Mutable s (ArrayList e) → STMutable s (ListIterator e)

ArrayList.listIterator𝖇

Mutable s (ArrayList e) → STMutable s (JArray Object)

ArrayList.toArray𝖆

Mutable s (ArrayList e) → ST s ()

ArrayList.trimToSize, ArrayList.clear

Mutable s (ArrayList e) → ST s Bool

ArrayList.isEmpty

Mutable s (ArrayList e) → ST s Int

ArrayList.size

Mutable s (ArrayList e) → ST s Object

ArrayList.clone

Mutable s (Collection a) → [a] → ST s ()

Collection.addAllFromList

Mutable s (Collection e) → Mutable s (Collection Object) → ST s Bool

Collection.retainAll, Collection.removeAll

Mutable s (Collection e) → Mutable s (Collection e) → ST s Bool

Collection.containsAll, Collection.addAll, Collection.equals

Mutable s (Collection e) → ArrayOf s ObjectSTMutable s (JArray Object)

Collection.toArray𝖇

Mutable s (Collection e) → Class e → STMutable s (Collection e)

Collections.checkedCollection

Mutable s (Collection e) → e → ST s Bool

Collection.remove, Collection.contains, Collection.add

Mutable s (Collection e) → STMutable s (ArrayDeque e)

ArrayDeque.new𝖈

Mutable s (Collection e) → STMutable s (ArrayList e)

ArrayList.new𝖆

Mutable s (Collection e) → STMutable s (HashSet e)

HashSet.new𝖈

Mutable s (Collection e) → STMutable s (Iterator e)

Collection.iterator

Mutable s (Collection e) → STMutable s (LinkedHashSet e)

LinkedHashSet.new𝖆

Mutable s (Collection e) → STMutable s (LinkedList e)

LinkedList.new𝖇

Mutable s (Collection e) → STMutable s (PriorityQueue e)

PriorityQueue.new𝖈

Mutable s (Collection e) → STMutable s (TreeSet e)

TreeSet.new𝖇

Mutable s (Collection e) → STMutable s (Vector e)

Vector.new𝖆

Mutable s (Collection e) → STMutable s (JArray Object)

Collection.toArray𝖆

Mutable s (Collection e) → ST s [e]

Collection.toList

Mutable s (Collection e) → ST s ()

Collection.clear

Mutable s (Collection e) → ST s Bool

Collection.isEmpty

Mutable s (Collection e) → ST s Int

Collection.size, Collection.hashCode

Mutable s (Collection t) → ArrayOf s t → ST s Bool

Collections.addAll

Mutable s (Collection t) → STMutable s (Collection t)

Collections.unmodifiableCollection, Collections.synchronizedCollection

Mutable s (Collection t) → STMutable s (Enumeration t)

Collections.enumeration

Mutable s (Collection e) → STMutable s (EnumSet e)

EnumSet.copyOf𝖇

Mutable s (Deque e) → ObjectST s Bool

Deque.remove𝖇, Deque.removeFirstOccurrence, Deque.removeLastOccurrence, Deque.contains

Mutable s (Deque e) → e → ST s ()

Deque.push, Deque.addFirst, Deque.addLast

Mutable s (Deque e) → e → ST s Bool

Deque.offerLast, Deque.offer, Deque.offerFirst, Deque.add

Mutable s (Deque e) → STMutable s (Iterator e)

Deque.iterator, Deque.descendingIterator

Mutable s (Deque e) → ST s Int

Deque.size

Mutable s (Deque e) → ST s e

Deque.remove𝖆, Deque.removeLast, Deque.pollLast, Deque.poll, Deque.peekLast, Deque.pollFirst, Deque.pop, Deque.removeFirst, Deque.peek, Deque.getLast, Deque.getFirst, Deque.element, Deque.peekFirst

Mutable s (Deque t) → STMutable s (Queue t)

Collections.asLifoQueue

Mutable s (EnumSet e) → STMutable s (EnumSet e)

EnumSet.copyOf𝖆, EnumSet.clone, EnumSet.complementOf

Mutable s (Enumeration e) → ST s [e]

Enumeration.toList

Mutable s (Enumeration e) → ST s Bool

Enumeration.hasMoreElements

Mutable s (Enumeration e) → ST s e

Enumeration.nextElement

Mutable s (Enumeration t) → STMutable s (ArrayList t)

Collections.list

Mutable s (HashSet e) → ObjectST s Bool

HashSet.contains

Mutable s (HashSet e) → e → ST s Bool

HashSet.remove, HashSet.add

Mutable s (HashSet e) → STMutable s (Iterator e)

HashSet.iterator

Mutable s (HashSet e) → ST s ()

HashSet.clear

Mutable s (HashSet e) → ST s Bool

HashSet.isEmpty

Mutable s (HashSet e) → ST s Int

HashSet.size

Mutable s (HashSet e) → ST s Object

HashSet.clone

Mutable s (Iterator e) → ST s [e]

Iterator.toList

Mutable s (Iterator e) → ST s ()

Iterator.remove

Mutable s (Iterator e) → ST s Bool

Iterator.hasNext

Mutable s (Iterator e) → ST s e

Iterator.next

Mutable s (LinkedList e) → Mutable s (Collection e) → ST s Bool

LinkedList.addAll𝖆

Mutable s (LinkedList e) → ArrayOf s ObjectSTMutable s (JArray Object)

LinkedList.toArray𝖆

Mutable s (LinkedList e) → IntMutable s (Collection e) → ST s Bool

LinkedList.addAll𝖇

Mutable s (LinkedList e) → Int → e → ST s ()

LinkedList.add𝖇

Mutable s (LinkedList e) → Int → e → ST s e

LinkedList.set

Mutable s (LinkedList e) → IntSTMutable s (ListIterator e)

LinkedList.listIterator

Mutable s (LinkedList e) → IntST s e

LinkedList.remove𝖆, LinkedList.get

Mutable s (LinkedList e) → e → ST s ()

LinkedList.push, LinkedList.addLast, LinkedList.addFirst

Mutable s (LinkedList e) → e → ST s Bool

LinkedList.remove𝖈, LinkedList.removeLastOccurrence, LinkedList.removeFirstOccurrence, LinkedList.offerFirst, LinkedList.offerLast, LinkedList.offer, LinkedList.add𝖆, LinkedList.contains

Mutable s (LinkedList e) → e → ST s Int

LinkedList.indexOf, LinkedList.lastIndexOf

Mutable s (LinkedList e) → STMutable s (Iterator e)

LinkedList.descendingIterator

Mutable s (LinkedList e) → STMutable s (JArray Object)

LinkedList.toArray𝖇

Mutable s (LinkedList e) → ST s ()

LinkedList.clear

Mutable s (LinkedList e) → ST s Int

LinkedList.size

Mutable s (LinkedList e) → ST s Object

LinkedList.clone

Mutable s (LinkedList e) → ST s e

LinkedList.removeLast, LinkedList.remove𝖇, LinkedList.pollFirst, LinkedList.pollLast, LinkedList.peekLast, LinkedList.poll, LinkedList.pop, LinkedList.removeFirst, LinkedList.peek, LinkedList.getLast, LinkedList.element, LinkedList.getFirst, LinkedList.peekFirst

Mutable s (List (Comparable t)) → t → ST s Int

Collections.binarySearch𝖆

Mutable s (List e) → Mutable s (Collection e) → ST s Bool

List.retainAll, List.removeAll, List.containsAll, List.addAll𝖇

Mutable s (List e) → Mutable s (List e) → ST s Bool

List.equals

Mutable s (List e) → ArrayOf s ObjectSTMutable s (JArray Object)

List.toArray𝖇

Mutable s (List e) → Class e → STMutable s (List e)

Collections.checkedList

Mutable s (List e) → IntMutable s (Collection e) → ST s Bool

List.addAll𝖆

Mutable s (List e) → IntIntSTMutable s (List e)

List.subList

Mutable s (List e) → Int → e → ST s ()

List.add𝖇

Mutable s (List e) → Int → e → ST s e

List.set

Mutable s (List e) → IntSTMutable s (ListIterator e)

List.listIterator𝖇

Mutable s (List e) → IntST s (Maybe e)

List.get

Mutable s (List e) → IntST s e

List.remove𝖇

Mutable s (List e) → e → ST s Bool

List.contains, List.add𝖆, List.remove𝖆

Mutable s (List e) → e → ST s Int

List.lastIndexOf, List.indexOf

Mutable s (List e) → STMutable s (Iterator e)

List.iterator

Mutable s (List e) → STMutable s (ListIterator e)

List.listIterator𝖆

Mutable s (List e) → STMutable s (JArray Object)

List.toArray𝖆

Mutable s (List e) → ST s ()

List.clear

Mutable s (List e) → ST s Bool

List.isEmpty

Mutable s (List e) → ST s Int

List.size, List.hashCode

Mutable s (List t) → Mutable s (List t) → ST s ()

Collections.copy

Mutable s (List t) → Comparator t → ST s ()

Collections.sort

Mutable s (List t) → t → Comparator t → ST s Int

Collections.binarySearch𝖇

Mutable s (List t) → t → t → ST s Bool

Collections.replaceAll

Mutable s (List t) → t → ST s ()

Collections.fill

Mutable s (List t) → STMutable s (List t)

Collections.unmodifiableList, Collections.synchronizedList

Mutable s (ListIterator e) → e → ST s ()

ListIterator.set, ListIterator.add

Mutable s (ListIterator e) → ST s ()

ListIterator.remove

Mutable s (ListIterator e) → ST s Bool

ListIterator.hasNext, ListIterator.hasPrevious

Mutable s (ListIterator e) → ST s Int

ListIterator.previousIndex, ListIterator.nextIndex

Mutable s (ListIterator e) → ST s e

ListIterator.next, ListIterator.previous

Mutable s (NavigableSet e) → e → Bool → e → BoolSTMutable s (NavigableSet e)

NavigableSet.subSet𝖆

Mutable s (NavigableSet e) → e → BoolSTMutable s (NavigableSet e)

NavigableSet.tailSet𝖆, NavigableSet.headSet𝖆

Mutable s (NavigableSet e) → e → e → STMutable s (SortedSet e)

NavigableSet.subSet𝖇

Mutable s (NavigableSet e) → e → STMutable s (SortedSet e)

NavigableSet.tailSet𝖇, NavigableSet.headSet𝖇

Mutable s (NavigableSet e) → e → ST s e

NavigableSet.lower, NavigableSet.higher, NavigableSet.floor, NavigableSet.ceiling

Mutable s (NavigableSet e) → STMutable s (Iterator e)

NavigableSet.iterator, NavigableSet.descendingIterator

Mutable s (NavigableSet e) → STMutable s (NavigableSet e)

NavigableSet.descendingSet

Mutable s (NavigableSet e) → ST s e

NavigableSet.pollFirst, NavigableSet.pollLast

Mutable s (PriorityQueue e) → ArrayOf s ObjectSTMutable s (JArray Object)

PriorityQueue.toArray𝖇

Mutable s (PriorityQueue e) → ObjectST s Bool

PriorityQueue.remove, PriorityQueue.contains

Mutable s (PriorityQueue e) → e → ST s Bool

PriorityQueue.offer, PriorityQueue.add

Mutable s (PriorityQueue e) → STMutable s (Iterator e)

PriorityQueue.iterator

Mutable s (PriorityQueue e) → STMutable s (PriorityQueue e)

PriorityQueue.new𝖇

Mutable s (PriorityQueue e) → STMutable s (JArray Object)

PriorityQueue.toArray𝖆

Mutable s (PriorityQueue e) → ST s (Comparator >)

PriorityQueue.comparator

Mutable s (PriorityQueue e) → ST s ()

PriorityQueue.clear

Mutable s (PriorityQueue e) → ST s Int

PriorityQueue.size

Mutable s (PriorityQueue e) → ST s e

PriorityQueue.peek, PriorityQueue.poll

Mutable s (Queue e) → e → ST s Bool

Queue.add, Queue.offer

Mutable s (Queue e) → ST s e

Queue.remove, Queue.peek, Queue.poll, Queue.element

Mutable s (Set e) → Mutable s (Collection e) → ST s Bool

Set.retainAll, Set.containsAll, Set.addAll, Set.removeAll

Mutable s (Set e) → Mutable s (Set e) → ST s Bool

Set.equals

Mutable s (Set e) → ArrayOf s ObjectSTMutable s (JArray Object)

Set.toArray𝖇

Mutable s (Set e) → Class e → STMutable s (Set e)

Collections.checkedSet

Mutable s (Set e) → e → ST s Bool

Set.remove, Set.contains, Set.add

Mutable s (Set e) → STMutable s (Iterator e)

Set.iterator

Mutable s (Set e) → STMutable s (JArray Object)

Set.toArray𝖆

Mutable s (Set e) → ST s [e]

Set.toList

Mutable s (Set e) → ST s ()

Set.clear

Mutable s (Set e) → ST s Bool

Set.isEmpty

Mutable s (Set e) → ST s Int

Set.size, Set.hashCode

Mutable s (Set t) → STMutable s (Set t)

Collections.unmodifiableSet, Collections.synchronizedSet

Mutable s (SortedSet e) → Class e → STMutable s (SortedSet e)

Collections.checkedSortedSet

Mutable s (SortedSet e) → e → e → STMutable s (SortedSet e)

SortedSet.subSet

Mutable s (SortedSet e) → e → STMutable s (SortedSet e)

SortedSet.tailSet, SortedSet.headSet

Mutable s (SortedSet e) → STMutable s (PriorityQueue e)

PriorityQueue.new𝖆

Mutable s (SortedSet e) → STMutable s (TreeSet e)

TreeSet.new𝖆

Mutable s (SortedSet e) → ST s (Comparator >)

SortedSet.comparator

Mutable s (SortedSet e) → ST s e

SortedSet.last, SortedSet.first

Mutable s (SortedSet t) → STMutable s (SortedSet t)

Collections.unmodifiableSortedSet, Collections.synchronizedSortedSet

Mutable s (Stack e) → ObjectST s Int

Stack.search

Mutable s (Stack e) → e → ST s e

Stack.push

Mutable s (Stack e) → ST s Bool

Stack.empty

Mutable s (Stack e) → ST s e

Stack.pop, Stack.peek

Mutable s (TreeSet e) → Mutable s (Collection e) → ST s Bool

TreeSet.addAll

Mutable s (TreeSet e) → ObjectST s Bool

TreeSet.contains

Mutable s (TreeSet e) → e → Bool → e → BoolSTMutable s (NavigableSet e)

TreeSet.subSet𝖇

Mutable s (TreeSet e) → e → BoolSTMutable s (NavigableSet e)

TreeSet.tailSet𝖆, TreeSet.headSet𝖇

Mutable s (TreeSet e) → e → e → STMutable s (SortedSet e)

TreeSet.subSet𝖆

Mutable s (TreeSet e) → e → STMutable s (SortedSet e)

TreeSet.tailSet𝖇, TreeSet.headSet𝖆

Mutable s (TreeSet e) → e → ST s Bool

TreeSet.remove, TreeSet.add

Mutable s (TreeSet e) → e → ST s e

TreeSet.lower, TreeSet.higher, TreeSet.ceiling, TreeSet.floor

Mutable s (TreeSet e) → STMutable s (Iterator e)

TreeSet.iterator, TreeSet.descendingIterator

Mutable s (TreeSet e) → STMutable s (NavigableSet e)

TreeSet.descendingSet

Mutable s (TreeSet e) → ST s (Comparator >)

TreeSet.comparator

Mutable s (TreeSet e) → ST s ()

TreeSet.clear

Mutable s (TreeSet e) → ST s Bool

TreeSet.isEmpty

Mutable s (TreeSet e) → ST s Int

TreeSet.size

Mutable s (TreeSet e) → ST s Object

TreeSet.clone

Mutable s (TreeSet e) → ST s e

TreeSet.pollLast, TreeSet.pollFirst, TreeSet.last, TreeSet.first

Mutable s (Vector e) → Mutable s (Collection e) → ST s Bool

Vector.retainAll, Vector.removeAll, Vector.containsAll, Vector.addAll𝖇

Mutable s (Vector e) → ArrayOf s ObjectSTMutable s (JArray Object)

Vector.toArray𝖇

Mutable s (Vector e) → ArrayOf s ObjectST s ()

Vector.copyInto

Mutable s (Vector e) → IntMutable s (Collection e) → ST s Bool

Vector.addAll𝖆

Mutable s (Vector e) → IntIntSTMutable s (List e)

Vector.subList

Mutable s (Vector e) → Int → e → ST s ()

Vector.add𝖇

Mutable s (Vector e) → Int → e → ST s e

Vector.set

Mutable s (Vector e) → IntSTMutable s (ListIterator e)

Vector.listIterator𝖇

Mutable s (Vector e) → IntST s ()

Vector.setSize, Vector.removeElementAt, Vector.ensureCapacity

Mutable s (Vector e) → IntST s e

Vector.remove𝖇, Vector.get, Vector.elementAt

Mutable s (Vector e) → e → IntST s ()

Vector.setElementAt, Vector.insertElementAt

Mutable s (Vector e) → e → IntST s Int

Vector.indexOf𝖇, Vector.lastIndexOf𝖆

Mutable s (Vector e) → e → ST s ()

Vector.addElement

Mutable s (Vector e) → e → ST s Bool

Vector.remove𝖆, Vector.removeElement, Vector.equals, Vector.contains, Vector.add𝖆

Mutable s (Vector e) → e → ST s Int

Vector.lastIndexOf𝖇, Vector.indexOf𝖆

Mutable s (Vector e) → STMutable s (Enumeration e)

Vector.elements

Mutable s (Vector e) → STMutable s (Iterator e)

Vector.iterator

Mutable s (Vector e) → STMutable s (ListIterator e)

Vector.listIterator𝖆

Mutable s (Vector e) → STMutable s (JArray Object)

Vector.toArray𝖆

Mutable s (Vector e) → ST s String

Vector.toString

Mutable s (Vector e) → ST s ()

Vector.trimToSize, Vector.removeAllElements, Vector.clear

Mutable s (Vector e) → ST s Bool

Vector.isEmpty

Mutable s (Vector e) → ST s Int

Vector.size, Vector.hashCode, Vector.capacity

Mutable s (Vector e) → ST s Object

Vector.clone

Mutable s (Vector e) → ST s e

Vector.lastElement, Vector.firstElement

ArrayOf s t → ArrayOf s t → ST s Bool

Arrays.equals𝖉, Arrays.deepEquals

ArrayOf s t → Comparator t → ST s ()

Arrays.sort𝖖

ArrayOf s t → IntIntComparator t → ST s ()

Arrays.sort𝖕

ArrayOf s t → IntInt → t → Comparator > → ST s Int

Arrays.binarySearch𝖒

ArrayOf s t → IntInt → t → ST s ()

Arrays.fill𝖏

ArrayOf s t → IntInt → t → ST s Int

Arrays.binarySearch𝖓

ArrayOf s t → IntIntSTMutable s (JArray t)

Arrays.copyOfRange𝖋

ArrayOf s t → IntIntST s ()

Arrays.sort𝖆

ArrayOf s t → IntSTMutable s (JArray Object)

Arrays.copyOf𝖊

ArrayOf s t → t → Comparator > → ST s Int

Arrays.binarySearch𝖔

ArrayOf s t → t → ST s ()

Arrays.fill𝖎

ArrayOf s t → t → ST s Int

Arrays.binarySearch𝖖

ArrayOf s t → STMutable s (List t)

Arrays.asList

ArrayOf s t → ST s String

Arrays.toString𝖉, Arrays.deepToString

ArrayOf s t → ST s ()

Arrays.sort𝖋

ArrayOf s t → ST s Int

Arrays.hashCode𝖊, Arrays.deepHashCode

Comparator e → STMutable s (TreeSet e)

TreeSet.new𝖈

Comparator t → ST s (Comparator t)

Collections.reverseOrder𝖇

Class e → STMutable s (EnumSet e)

EnumSet.noneOf, EnumSet.allOf

[a] → STMutable s (ArrayList a)

ArrayList.fromList

[a] → STMutable s (LinkedList a)

LinkedList.fromList

[a] → STMutable s (Vector a)

Vector.fromList

()STMutable s (ArrayDeque e)

ArrayDeque.new𝖆

()STMutable s (ArrayList e)

ArrayList.new𝖇

()STMutable s (Enumeration t)

Collections.emptyEnumeration

()STMutable s (HashSet e)

HashSet.new𝖉

()STMutable s (Iterator t)

Collections.emptyIterator

()STMutable s (LinkedHashSet e)

LinkedHashSet.new𝖇

()STMutable s (LinkedList e)

LinkedList.new𝖆

()STMutable s (List t)

Collections.emptyList

()STMutable s (ListIterator t)

Collections.emptyListIterator

()STMutable s (PriorityQueue e)

PriorityQueue.new𝖉

()STMutable s (Set t)

Collections.emptySet

()STMutable s (Stack e)

Stack.new

()STMutable s (TreeSet e)

TreeSet.new𝖉

()STMutable s (Vector e)

Vector.new𝖇

()ST s (Comparator t)

Collections.reverseOrder𝖆

IntComparator e → STMutable s (PriorityQueue e)

PriorityQueue.new𝖋

IntFloatSTMutable s (HashSet e)

HashSet.new𝖇

IntFloatSTMutable s (LinkedHashSet e)

LinkedHashSet.new𝖉

IntIntSTMutable s (Vector e)

Vector.new𝖉

Int → t → STMutable s (List t)

Collections.nCopies

IntSTMutable s (ArrayDeque e)

ArrayDeque.new𝖇

IntSTMutable s (ArrayList e)

ArrayList.new𝖈

IntSTMutable s (HashSet e)

HashSet.new𝖆

IntSTMutable s (LinkedHashSet e)

LinkedHashSet.new𝖈

IntSTMutable s (PriorityQueue e)

PriorityQueue.new𝖊

IntSTMutable s (Vector e)

Vector.new𝖈

t → STMutable s (List t)

Collections.singletonList

t → STMutable s (Set t)

Collections.singleton

e → ArrayOf s e → STMutable s (EnumSet e)

EnumSet.from𝖈

e → e → e → e → e → STMutable s (EnumSet e)

EnumSet.from𝖇

e → e → e → e → STMutable s (EnumSet e)

EnumSet.from𝖆

e → e → e → STMutable s (EnumSet e)

EnumSet.from𝖋

e → e → STMutable s (EnumSet e)

EnumSet.range, EnumSet.from𝖊

e → STMutable s (EnumSet e)

EnumSet.from𝖉

STMutable s (List e)

Collections.empty_list

STMutable s (Set e)

Collections.empty_set

(c → a → c) → c → Mutable s (Iterator a) → ST s c

Iterator.fold

Mutable s (AbstractMap k v) → Mutable s (AbstractMap k v) → ST s Bool

AbstractMap.equals

Mutable s (AbstractMap k v) → Mutable s (Map k v) → ST s ()

AbstractMap.putAll

Mutable s (AbstractMap k v) → k → v → ST s (Maybe v)

AbstractMap.put

Mutable s (AbstractMap k v) → k → ST s (Maybe v)

AbstractMap.get

Mutable s (AbstractMap k v) → k → ST s Bool

AbstractMap.containsKey

Mutable s (AbstractMap k v) → k → ST s v

AbstractMap.remove

Mutable s (AbstractMap k v) → v → ST s Bool

AbstractMap.containsValue

Mutable s (AbstractMap k v) → STMutable s (Collection v)

AbstractMap.values

Mutable s (AbstractMap k v) → STMutable s (Set (Mutable s (MapEntry k v)))

AbstractMap.entrySet

Mutable s (AbstractMap k v) → STMutable s (Set k)

AbstractMap.keySet

Mutable s (AbstractMap k v) → ST s String

AbstractMap.toString

Mutable s (AbstractMap k v) → ST s ()

AbstractMap.clear

Mutable s (AbstractMap k v) → ST s Bool

AbstractMap.isEmpty

Mutable s (AbstractMap k v) → ST s Int

AbstractMap.size, AbstractMap.hashCode

Mutable s (AbstractMapSimpleEntry k v) → ObjectST s Bool

AbstractMapSimpleEntry.equals

Mutable s (AbstractMapSimpleEntry k v) → v → ST s v

AbstractMapSimpleEntry.setValue

Mutable s (AbstractMapSimpleEntry k v) → ST s String

AbstractMapSimpleEntry.toString

Mutable s (AbstractMapSimpleEntry k v) → ST s Int

AbstractMapSimpleEntry.hashCode

Mutable s (AbstractMapSimpleEntry k v) → ST s k

AbstractMapSimpleEntry.getKey

Mutable s (AbstractMapSimpleEntry k v) → ST s v

AbstractMapSimpleEntry.getValue

Mutable s (Dictionary k v) → ObjectST s v

Dictionary.remove, Dictionary.get

Mutable s (Dictionary k v) → k → v → ST s v

Dictionary.put

Mutable s (Dictionary k v) → STMutable s (Enumeration k)

Dictionary.keys

Mutable s (Dictionary k v) → STMutable s (Enumeration v)

Dictionary.elements

Mutable s (Dictionary k v) → ST s Bool

Dictionary.isEmpty

Mutable s (Dictionary k v) → ST s Int

Dictionary.size

Mutable s (EnumMap k v) → Mutable s (EnumMap k v) → ST s Bool

EnumMap.equals

Mutable s (EnumMap k v) → Mutable s (Map k v) → ST s ()

EnumMap.putAll

Mutable s (EnumMap k v) → ObjectST s Bool

EnumMap.containsValue, EnumMap.containsKey

Mutable s (EnumMap k v) → k → v → ST s (Maybe v)

EnumMap.put

Mutable s (EnumMap k v) → k → ST s (Maybe v)

EnumMap.remove, EnumMap.get

Mutable s (EnumMap k v) → STMutable s (EnumMap k v)

EnumMap.new𝖈, EnumMap.clone

Mutable s (EnumMap k v) → STMutable s (Collection v)

EnumMap.values

Mutable s (EnumMap k v) → STMutable s (Set (MapEntry k v))

EnumMap.entrySet

Mutable s (EnumMap k v) → STMutable s (Set k)

EnumMap.keySet

Mutable s (EnumMap k v) → ST s ()

EnumMap.clear

Mutable s (EnumMap k v) → ST s Int

EnumMap.size, EnumMap.hashCode

Mutable s (HashMap k v) → Mutable s (Map k v) → ST s ()

HashMap.putAll

Mutable s (HashMap k v) → k → v → ST s (Maybe v)

HashMap.put

Mutable s (HashMap k v) → k → ST s (Maybe v)

HashMap.get

Mutable s (HashMap k v) → k → ST s Bool

HashMap.containsKey, HashMap.containsValue

Mutable s (HashMap k v) → k → ST s v

HashMap.remove

Mutable s (HashMap k v) → STMutable s (Collection v)

HashMap.values

Mutable s (HashMap k v) → STMutable s (Set (Mutable s (MapEntry k v)))

HashMap.entrySet

Mutable s (HashMap k v) → STMutable s (Set k)

HashMap.keySet

Mutable s (HashMap k v) → ST s ()

HashMap.clear

Mutable s (HashMap k v) → ST s Bool

HashMap.isEmpty

Mutable s (HashMap k v) → ST s Int

HashMap.size

Mutable s (Hashtable k v) → Mutable s (Map k v) → ST s ()

Hashtable.putAll

Mutable s (Hashtable k v) → ObjectST s Bool

Hashtable.equals, Hashtable.containsKey, Hashtable.contains, Hashtable.containsValue

Mutable s (Hashtable k v) → ObjectST s v

Hashtable.remove, Hashtable.get

Mutable s (Hashtable k v) → k → v → ST s v

Hashtable.put

Mutable s (Hashtable k v) → STMutable s (Collection v)

Hashtable.values

Mutable s (Hashtable k v) → STMutable s (Enumeration k)

Hashtable.keys

Mutable s (Hashtable k v) → STMutable s (Enumeration v)

Hashtable.elements

Mutable s (Hashtable k v) → STMutable s (Set (MapEntry k v))

Hashtable.entrySet

Mutable s (Hashtable k v) → STMutable s (Set k)

Hashtable.keySet

Mutable s (Hashtable k v) → ST s String

Hashtable.toString

Mutable s (Hashtable k v) → ST s ()

Hashtable.clear

Mutable s (Hashtable k v) → ST s Bool

Hashtable.isEmpty

Mutable s (Hashtable k v) → ST s Int

Hashtable.size, Hashtable.hashCode

Mutable s (Hashtable k v) → ST s Object

Hashtable.clone

Mutable s (IdentityHashMap k v) → Mutable s (Map k v) → ST s ()

IdentityHashMap.putAll

Mutable s (IdentityHashMap k v) → ObjectST s Bool

IdentityHashMap.equals, IdentityHashMap.containsKey, IdentityHashMap.containsValue

Mutable s (IdentityHashMap k v) → ObjectST s v

IdentityHashMap.remove, IdentityHashMap.get

Mutable s (IdentityHashMap k v) → k → v → ST s v

IdentityHashMap.put

Mutable s (IdentityHashMap k v) → STMutable s (Collection v)

IdentityHashMap.values

Mutable s (IdentityHashMap k v) → STMutable s (Set (MapEntry k v))

IdentityHashMap.entrySet

Mutable s (IdentityHashMap k v) → STMutable s (Set k)

IdentityHashMap.keySet

Mutable s (IdentityHashMap k v) → ST s ()

IdentityHashMap.clear

Mutable s (IdentityHashMap k v) → ST s Bool

IdentityHashMap.isEmpty

Mutable s (IdentityHashMap k v) → ST s Int

IdentityHashMap.size, IdentityHashMap.hashCode

Mutable s (IdentityHashMap k v) → ST s Object

IdentityHashMap.clone

Mutable s (LinkedHashMap k v) → k → ST s (Maybe v)

LinkedHashMap.get

Mutable s (LinkedHashMap k v) → k → ST s Bool

LinkedHashMap.containsValue

Mutable s (LinkedHashMap k v) → ST s ()

LinkedHashMap.clear

Mutable s (Map k v) → Mutable s (Map k v) → ST s ()

Map.putAll

Mutable s (Map k v) → Mutable s (Map k v) → ST s Bool

Map.equals

Mutable s (Map k v) → Class k → Class v → STMutable s (Map k v)

Collections.checkedMap

Mutable s (Map k v) → [(k, v)] → ST s ()

Map.addAllFromList

Mutable s (Map k v) → k → v → ST s (Maybe v)

Map.put

Mutable s (Map k v) → k → ST s (Maybe v)

Map.remove, Map.get

Mutable s (Map k v) → k → ST s Bool

Map.containsKey

Mutable s (Map k v) → v → ST s Bool

Map.containsValue

Mutable s (Map k v) → STMutable s (HashMap k v)

HashMap.new𝖆

Mutable s (Map k v) → STMutable s (Hashtable k v)

Hashtable.new𝖉

Mutable s (Map k v) → STMutable s (IdentityHashMap k v)

IdentityHashMap.new𝖈

Mutable s (Map k v) → STMutable s (LinkedHashMap k v)

LinkedHashMap.new𝖇

Mutable s (Map k v) → STMutable s (Map k v)

Collections.unmodifiableMap, Collections.synchronizedMap

Mutable s (Map k v) → STMutable s (TreeMap k v)

TreeMap.new𝖇

Mutable s (Map k v) → STMutable s (WeakHashMap k v)

WeakHashMap.new𝖉

Mutable s (Map k v) → STMutable s (Collection v)

Map.values

Mutable s (Map k v) → STMutable s (Set (Mutable s (MapEntry k v)))

Map.entrySet

Mutable s (Map k v) → STMutable s (Set k)

Map.keySet

Mutable s (Map k v) → ST s [(k, v)]

Map.toList

Mutable s (Map k v) → ST s ()

Map.clear

Mutable s (Map k v) → ST s Bool

Map.isEmpty

Mutable s (Map k v) → ST s Int

Map.size, Map.hashCode

Mutable s (Map k v) → STMutable s (EnumMap k v)

EnumMap.new𝖇

Mutable s (MapEntry k v) → Mutable s (MapEntry k v) → ST s Bool

MapEntry.equals

Mutable s (MapEntry k v) → v → ST s v

MapEntry.setValue

Mutable s (MapEntry k v) → ST s (AbstractMapSimpleImmutableEntry k v)

AbstractMapSimpleImmutableEntry.new𝖇

Mutable s (MapEntry k v) → STMutable s (AbstractMapSimpleEntry k v)

AbstractMapSimpleEntry.new𝖇

Mutable s (MapEntry k v) → ST s Int

MapEntry.hashCode

Mutable s (MapEntry k v) → ST s k

MapEntry.getKey

Mutable s (MapEntry k v) → ST s v

MapEntry.getValue

Mutable s (NavigableMap k v) → k → Bool → k → BoolSTMutable s (NavigableMap k v)

NavigableMap.subMap𝖇

Mutable s (NavigableMap k v) → k → BoolSTMutable s (NavigableMap k v)

NavigableMap.tailMap𝖆, NavigableMap.headMap𝖆

Mutable s (NavigableMap k v) → k → k → STMutable s (SortedMap k v)

NavigableMap.subMap𝖆

Mutable s (NavigableMap k v) → k → STMutable s (MapEntry k v)

NavigableMap.lowerEntry, NavigableMap.ceilingEntry, NavigableMap.floorEntry, NavigableMap.higherEntry

Mutable s (NavigableMap k v) → k → STMutable s (SortedMap k v)

NavigableMap.tailMap𝖇, NavigableMap.headMap𝖇

Mutable s (NavigableMap k v) → k → ST s k

NavigableMap.higherKey, NavigableMap.lowerKey, NavigableMap.floorKey, NavigableMap.ceilingKey

Mutable s (NavigableMap k v) → STMutable s (MapEntry k v)

NavigableMap.pollLastEntry, NavigableMap.lastEntry, NavigableMap.pollFirstEntry, NavigableMap.firstEntry

Mutable s (NavigableMap k v) → STMutable s (NavigableMap k v)

NavigableMap.descendingMap

Mutable s (NavigableMap k v) → STMutable s (NavigableSet k)

NavigableMap.navigableKeySet, NavigableMap.descendingKeySet

Mutable s (SortedMap k v) → Class k → Class v → STMutable s (SortedMap k v)

Collections.checkedSortedMap

Mutable s (SortedMap k v) → k → k → STMutable s (SortedMap k v)

SortedMap.subMap

Mutable s (SortedMap k v) → k → STMutable s (SortedMap k v)

SortedMap.tailMap, SortedMap.headMap

Mutable s (SortedMap k v) → STMutable s (SortedMap k v)

Collections.unmodifiableSortedMap, Collections.synchronizedSortedMap

Mutable s (SortedMap k v) → STMutable s (TreeMap k v)

TreeMap.new𝖆

Mutable s (SortedMap k v) → STMutable s (Collection v)

SortedMap.values

Mutable s (SortedMap k v) → STMutable s (Set (MapEntry k v))

SortedMap.entrySet

Mutable s (SortedMap k v) → STMutable s (Set k)

SortedMap.keySet

Mutable s (SortedMap k v) → ST s (Comparator >)

SortedMap.comparator

Mutable s (SortedMap k v) → ST s k

SortedMap.firstKey, SortedMap.lastKey

Mutable s (TreeMap k v) → Mutable s (Map k v) → ST s ()

TreeMap.putAll

Mutable s (TreeMap k v) → k → Bool → k → BoolSTMutable s (NavigableMap k v)

TreeMap.subMap𝖆

Mutable s (TreeMap k v) → k → BoolSTMutable s (NavigableMap k v)

TreeMap.tailMap𝖆, TreeMap.headMap𝖆

Mutable s (TreeMap k v) → k → k → STMutable s (SortedMap k v)

TreeMap.subMap𝖇

Mutable s (TreeMap k v) → k → v → ST s v

TreeMap.put

Mutable s (TreeMap k v) → k → STMutable s (MapEntry k v)

TreeMap.higherEntry, TreeMap.lowerEntry, TreeMap.floorEntry, TreeMap.ceilingEntry

Mutable s (TreeMap k v) → k → STMutable s (SortedMap k v)

TreeMap.tailMap𝖇, TreeMap.headMap𝖇

Mutable s (TreeMap k v) → k → ST s (Maybe v)

TreeMap.remove, TreeMap.get

Mutable s (TreeMap k v) → k → ST s Bool

TreeMap.containsKey, TreeMap.containsValue

Mutable s (TreeMap k v) → k → ST s k

TreeMap.lowerKey, TreeMap.higherKey, TreeMap.floorKey, TreeMap.ceilingKey

Mutable s (TreeMap k v) → STMutable s (MapEntry k v)

TreeMap.pollFirstEntry, TreeMap.pollLastEntry, TreeMap.lastEntry, TreeMap.firstEntry

Mutable s (TreeMap k v) → STMutable s (NavigableMap k v)

TreeMap.descendingMap

Mutable s (TreeMap k v) → STMutable s (Collection v)

TreeMap.values

Mutable s (TreeMap k v) → STMutable s (NavigableSet k)

TreeMap.navigableKeySet, TreeMap.descendingKeySet

Mutable s (TreeMap k v) → STMutable s (Set (MapEntry k v))

TreeMap.entrySet

Mutable s (TreeMap k v) → STMutable s (Set k)

TreeMap.keySet

Mutable s (TreeMap k v) → ST s (Comparator >)

TreeMap.comparator

Mutable s (TreeMap k v) → ST s ()

TreeMap.clear

Mutable s (TreeMap k v) → ST s Int

TreeMap.size

Mutable s (TreeMap k v) → ST s k

TreeMap.lastKey, TreeMap.firstKey

Mutable s (WeakHashMap k v) → Mutable s (Map k v) → ST s ()

WeakHashMap.putAll

Mutable s (WeakHashMap k v) → k → v → ST s (Maybe v)

WeakHashMap.put

Mutable s (WeakHashMap k v) → k → ST s (Maybe v)

WeakHashMap.remove, WeakHashMap.get

Mutable s (WeakHashMap k v) → k → ST s Bool

WeakHashMap.containsKey

Mutable s (WeakHashMap k v) → v → ST s Bool

WeakHashMap.containsValue

Mutable s (WeakHashMap k v) → STMutable s (Collection v)

WeakHashMap.values

Mutable s (WeakHashMap k v) → STMutable s (Set (MapEntry k v))

WeakHashMap.entrySet

Mutable s (WeakHashMap k v) → STMutable s (Set k)

WeakHashMap.keySet

Mutable s (WeakHashMap k v) → ST s ()

WeakHashMap.clear

Mutable s (WeakHashMap k v) → ST s Bool

WeakHashMap.isEmpty

Mutable s (WeakHashMap k v) → ST s Int

WeakHashMap.size

Comparator k → STMutable s (TreeMap k v)

TreeMap.new𝖈

Class k → STMutable s (EnumMap k v)

EnumMap.new𝖆

[(k, v)] → STMutable s (HashMap k v)

HashMap.fromList

[(k, v)] → STMutable s (IdentityHashMap k v)

IdentityHashMap.fromList

[(k, v)] → STMutable s (LinkedHashMap k v)

LinkedHashMap.fromList

[(k, v)] → STMutable s (TreeMap k v)

TreeMap.fromList

()STMutable s (HashMap k v)

HashMap.new𝖇

()STMutable s (Hashtable k v)

Hashtable.new𝖆

()STMutable s (IdentityHashMap k v)

IdentityHashMap.new𝖇

()STMutable s (LinkedHashMap k v)

LinkedHashMap.new𝖈

()STMutable s (Map k v)

Collections.emptyMap

()STMutable s (TreeMap k v)

TreeMap.new𝖉

()STMutable s (WeakHashMap k v)

WeakHashMap.new𝖆

IntFloatBoolSTMutable s (LinkedHashMap k v)

LinkedHashMap.new𝖆

IntFloatSTMutable s (HashMap k v)

HashMap.new𝖉

IntFloatSTMutable s (Hashtable k v)

Hashtable.new𝖈

IntFloatSTMutable s (LinkedHashMap k v)

LinkedHashMap.new𝖊

IntFloatSTMutable s (WeakHashMap k v)

WeakHashMap.new𝖈

IntSTMutable s (HashMap k v)

HashMap.new𝖈

IntSTMutable s (Hashtable k v)

Hashtable.new𝖇

IntSTMutable s (IdentityHashMap k v)

IdentityHashMap.new𝖆

IntSTMutable s (LinkedHashMap k v)

LinkedHashMap.new𝖉

IntSTMutable s (WeakHashMap k v)

WeakHashMap.new𝖇

k → v → ST s (AbstractMapSimpleImmutableEntry k v)

AbstractMapSimpleImmutableEntry.new𝖆

k → v → STMutable s (AbstractMapSimpleEntry k v)

AbstractMapSimpleEntry.new𝖆

k → v → STMutable s (Map k v)

Collections.singletonMap

STMutable s (Map k v)

Collections.empty_map

Valid HTML 4.01 Strict