- TableColumnModel - Interface in javax.swing.table
-
- TableModel - Interface in javax.swing.table
-
- Temporal - Interface in java.time.temporal
-
- TemporalAccessor - Interface in java.time.temporal
-
- TemporalAmount - Interface in java.time.temporal
-
- Thread - Class in java.lang
-
- Throwable - Class in java.lang
-
- TimeZone - Class in java.util
-
- Timer - Class in java.util
-
- Timestamp - Class in java.sql
-
- TreeNode - Interface in javax.swing.tree
-
- TreePath - Class in javax.swing.tree
-
- tail() - Method in interface java.lang.Iterable
- Returns the items from the Iterable excluding the first item.
- tail() - Method in class java.lang.Object[]
- Returns the items from the array excluding the first item.
- tail() - Method in interface java.util.Iterator
- Returns the original iterator after throwing away the first element.
- tail() - Method in interface java.util.List
- Returns the items from the List excluding the first item.
- tail() - Method in interface java.util.SortedSet
- Returns the items from the SortedSet excluding the first item.
- tails() - Method in interface java.lang.Iterable
- Calculates the tail values of this Iterable: the first value will be this list of all items from the iterable and the final one will be an empty list, with the intervening values the results of successive applications of tail on the items.
- take(int) - Method in class groovy.lang.GString
- A GString variant of the equivalent CharSequence method.
- take(int) - Method in interface java.lang.CharSequence
- Returns the first
num
elements from this CharSequence.
- take(int) - Method in interface java.lang.Iterable
- Returns the first
num
elements from the head of this Iterable.
- take(int) - Method in class java.lang.Object[]
- Returns the first
num
elements from the head of this array.
- take(int) - Method in class java.lang.String
- A String variant of the equivalent CharSequence method.
- take(int) - Method in interface java.util.Iterator
- Returns an iterator of up to the first
num
elements from this iterator.
- take(int) - Method in interface java.util.List
- Returns the first
num
elements from the head of this List.
- take(int) - Method in interface java.util.Map
- Returns a new map containing the first
num
elements from the head of this map.
- take(int) - Method in interface java.util.SortedSet
- Returns the first
num
elements from the head of this SortedSet.
- takeAfter(java.lang.CharSequence) - Method in class groovy.lang.GString
- A GString variant of the equivalent CharSequence method CharSequence#takeAfter(CharSequence)
- takeAfter(java.lang.CharSequence) - Method in interface java.lang.CharSequence
- Returns the
CharSequence
that exists after the first occurrence of the given
searchString
in this CharSequence
def text = "Groovy development.
- takeAfter(java.lang.CharSequence) - Method in class java.lang.String
- A String variant of the equivalent CharSequence method CharSequence#takeAfter(CharSequence)
- takeBefore(java.lang.CharSequence) - Method in interface java.lang.CharSequence
- Returns the
CharSequence
that exists before the first occurrence of the given
searchString
in this CharSequence
def text = "Groovy development.
- takeBefore(java.lang.String) - Method in class groovy.lang.GString
- A GString variant of the equivalent CharSequence method CharSequence#takeBefore(CharSequence)
- takeBefore(java.lang.String) - Method in class java.lang.String
- A String variant of the equivalent CharSequence method CharSequence#takeBefore(CharSequence)
- takeBetween(java.lang.CharSequence) - Method in class groovy.lang.GString
- A GString variant of the equivalent CharSequence method CharSequence#takeBetween(CharSequence)
- takeBetween(java.lang.CharSequence) - Method in interface java.lang.CharSequence
- Method to take the characters between the first occurrence of the two subsequent
enclosure
strings
def text = "name = 'some name'"
assert text.takeBetween( "'" ) == 'some name'
assert text.takeBetween( 'z' ) == ''
- takeBetween(java.lang.CharSequence) - Method in class java.lang.String
- A String variant of the equivalent CharSequence method CharSequence#takeBetween(CharSequence)
- takeBetween(java.lang.CharSequence, int) - Method in class groovy.lang.GString
- A GString variant of the equivalent CharSequence method
CharSequence#takeBetween(CharSequence, int)
- takeBetween(java.lang.CharSequence, int) - Method in interface java.lang.CharSequence
- Method to take the characters between nth (specified by occurrence) pair of @code enclosure} strings
def text = "t1='10' ms, t2='100' ms"
assert text.takeBetween( "'", 0 ) == '10'
assert text.takeBetween( "'", 1 ) == '100'
assert text.takeBetween( "'", 2 ) == ''
- takeBetween(java.lang.CharSequence, int) - Method in class java.lang.String
- A String variant of the equivalent CharSequence method
CharSequence#takeBetween(CharSequence, int)
- takeBetween(java.lang.CharSequence, java.lang.CharSequence) - Method in class groovy.lang.GString
- A GString variant of the equivalent CharSequence method CharSequence#takeBetween(CharSequence, CharSequence)
- takeBetween(java.lang.CharSequence, java.lang.CharSequence) - Method in interface java.lang.CharSequence
- Returns the CharSequence that is in between the first occurrence of the given
from
and to
CharSequences and empty if the unavailable inputs are given
def text = "Groovy"
assert text.takeBetween( 'r', 'v' ) == 'oo'
assert text.takeBetween( 'r', 'z' ) == ''
assert text.takeBetween( 'a', 'r' ) == ''
- takeBetween(java.lang.CharSequence, java.lang.CharSequence) - Method in class java.lang.String
- A String variant of the equivalent CharSequence method CharSequence#takeBetween(CharSequence, CharSequence)
- takeBetween(java.lang.CharSequence, java.lang.CharSequence, int) - Method in class groovy.lang.GString
- A GString variant of the equivalent CharSequence method
CharSequence#takeBetween(CharSequence, CharSequence, int)
- takeBetween(java.lang.CharSequence, java.lang.CharSequence, int) - Method in interface java.lang.CharSequence
- Returns the CharSequence that is in between the given the nth (specified by occurrence) pair of
from
and to
CharSequences and empty if the unavailable inputs are given.
- takeBetween(java.lang.CharSequence, java.lang.CharSequence, int) - Method in class java.lang.String
- A String variant of the equivalent CharSequence method
CharSequence#takeBetween(CharSequence, CharSequence, int)
- takeRight(int) - Method in class groovy.lang.GString
- A String variant of the equivalent CharSequence method CharSequence#takeRight(int)
- takeRight(int) - Method in interface java.lang.CharSequence
- Returns the last
num
elements from this CharSequence.
- takeRight(int) - Method in interface java.lang.Iterable
- Returns the last
num
elements from the tail of this Iterable.
- takeRight(int) - Method in class java.lang.Object[]
- Returns the last
num
elements from the tail of this array.
- takeRight(int) - Method in class java.lang.String
- A GString variant of the equivalent CharSequence method CharSequence#takeRight(int)
- takeRight(int) - Method in interface java.util.List
- Returns the last
num
elements from the tail of this List.
- takeRight(int) - Method in interface java.util.SortedSet
- Returns the last
num
elements from the tail of this SortedSet.
- takeWhile(groovy.lang.Closure) - Method in class groovy.lang.GString
- A GString variant of the equivalent GString method.
- takeWhile(groovy.lang.Closure) - Method in interface java.lang.CharSequence
- Returns the longest prefix of this CharSequence where each
element passed to the given closure evaluates to true.
- takeWhile(groovy.lang.Closure) - Method in interface java.lang.Iterable
- Returns a Collection containing the longest prefix of the elements from this Iterable
where each element passed to the given closure evaluates to true.
- takeWhile(groovy.lang.Closure) - Method in class java.lang.Object[]
- Returns the longest prefix of this array where each element
passed to the given closure evaluates to true.
- takeWhile(groovy.lang.Closure) - Method in interface java.util.Iterator
- Returns the longest prefix of elements in this iterator where
each element passed to the given condition closure evaluates to true.
- takeWhile(groovy.lang.Closure) - Method in interface java.util.List
- Returns the longest prefix of this list where each element
passed to the given closure condition evaluates to true.
- takeWhile(groovy.lang.Closure) - Method in interface java.util.Map
- Returns the longest prefix of this Map where each entry (or key/value pair) when
passed to the given closure evaluates to true.
- takeWhile(groovy.lang.Closure) - Method in interface java.util.SortedSet
- Returns the longest prefix of this SortedSet where each element
passed to the given closure condition evaluates to true.
- tap(groovy.lang.Closure) - Method in class java.lang.Object
- Allows the closure to be called for the object reference self (similar
to
with
and always returns self.
- times(groovy.lang.Closure) - Method in class java.lang.Number
- Executes the closure this many times, starting from zero.
- toArray(java.lang.Class) - Method in interface java.util.stream.Stream
- Returns an array containing the elements of the stream.
- toArrayString() - Method in class java.lang.Object
- Returns the string representation of the given array.
- toBigDecimal() - Method in interface java.lang.CharSequence
- Parse a CharSequence into a BigDecimal
- toBigDecimal() - Method in class java.lang.Number
- Transform a Number into a BigDecimal
- toBigInteger() - Method in interface java.lang.CharSequence
- Parse a CharSequence into a BigInteger
- toBigInteger() - Method in class java.lang.Number
- Transform this Number into a BigInteger.
- toBoolean() - Method in class java.lang.Boolean
- Identity conversion which returns Boolean.TRUE for a true Boolean and Boolean.FALSE for a false Boolean.
- toBoolean() - Method in class java.lang.String
- Converts the given string into a Boolean object.
- toCalendar() - Method in class java.time.Instant
- Returns a generally equivalent Calendar in the GMT time zone, truncated to milliseconds.
- toCalendar() - Method in class java.time.LocalDate
- Returns an equivalent instance of Calendar.
- toCalendar() - Method in class java.time.LocalDateTime
- Returns a generally equivalent instance of Calendar.
- toCalendar() - Method in class java.time.LocalTime
- Returns a generally equivalent instance of Calendar.
- toCalendar() - Method in class java.time.OffsetDateTime
- Returns a generally equivalent instance of Calendar.
- toCalendar() - Method in class java.time.OffsetTime
- Returns a generally equivalent instance of Calendar.
- toCalendar() - Method in class java.time.ZonedDateTime
- Returns a generally equivalent instance of Calendar.
- toCalendar() - Method in class java.util.Date
- Convert a Date to a Calendar.
- toCharacter() - Method in class java.lang.String
- Converts the given string into a Character object
using the first character in the string.
- toDate() - Method in class java.time.Instant
- Returns a generally equivalent Date according the number of milliseconds since the epoch,
adjusted into the system default time zone.
- toDate() - Method in class java.time.LocalDate
- Returns an equivalent instance of Date.
- toDate() - Method in class java.time.LocalDateTime
- Returns a generally equivalent instance of Date.
- toDate() - Method in class java.time.LocalTime
- Returns a generally equivalent instance of Date.
- toDate() - Method in class java.time.OffsetDateTime
- Returns a generally equivalent instance of Date.
- toDate() - Method in class java.time.OffsetTime
- Returns a generally equivalent instance of Date.
- toDate() - Method in class java.time.ZonedDateTime
- Returns a generally equivalent instance of Date.
- toDayOfWeek() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding DayOfWeek.
- toDayOfWeek() - Method in class java.util.Date
- Converts the Date to a corresponding DayOfWeek.
- toDouble() - Method in interface java.lang.CharSequence
- Parse a CharSequence into a Double
- toDouble() - Method in class java.lang.Number
- Transform a Number into a Double
- toFloat() - Method in interface java.lang.CharSequence
- Parse a CharSequence into a Float
- toFloat() - Method in class java.lang.Number
- Transform a Number into a Float
- toInstant() - Method in class java.util.Calendar
- Convenience method for converting a Calendar to a corresponding Instant.
- toInteger() - Method in interface java.lang.CharSequence
- Parse a CharSequence into an Integer
- toInteger() - Method in class java.lang.Number
- Transform a Number into an Integer
- toList() - Method in interface java.lang.CharSequence
- Converts the given CharSequence into a List of Strings of one character.
- toList() - Method in interface java.lang.Iterable
- Convert an Iterable to a List.
- toList() - Method in class java.lang.Object[]
- Allows conversion of arrays into a mutable List.
- toList() - Method in interface java.util.Enumeration
- Convert an enumeration to a List.
- toList() - Method in interface java.util.Iterator
- Convert an iterator to a List.
- toList() - Method in interface java.util.stream.BaseStream
- Accumulates the elements of stream into a new List.
- toList() - Method in interface java.util.stream.Stream
- Accumulates the elements of stream into a new List.
- toList() - Method in class primitive-types.boolean
- Converts this array to a List of the same size, with each element
added to the list.
- toList() - Method in class primitive-types.byte
- Converts this array to a List of the same size, with each element
added to the list.
- toList() - Method in class primitive-types.char
- Converts this array to a List of the same size, with each element
added to the list.
- toList() - Method in class primitive-types.double
- Converts this array to a List of the same size, with each element
added to the list.
- toList() - Method in class primitive-types.float
- Converts this array to a List of the same size, with each element
added to the list.
- toList() - Method in class primitive-types.int
- Converts this array to a List of the same size, with each element
added to the list.
- toList() - Method in class primitive-types.long
- Converts this array to a List of the same size, with each element
added to the list.
- toList() - Method in class primitive-types.short
- Converts this array to a List of the same size, with each element
added to the list.
- toListString() - Method in interface java.util.Collection
- Returns the string representation of the given list.
- toListString(int) - Method in interface java.util.Collection
- Returns the string representation of the given list.
- toLocalDate() - Method in class java.util.Date
- Converts the Date to a corresponding LocalDate.
- toLocalDateTime() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding LocalDateTime.
- toLocalDateTime() - Method in class java.util.Date
- Converts the Date to a corresponding LocalDateTime.
- toLocalTime() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding LocalTime.
- toLocalTime() - Method in class java.util.Date
- Converts the Date to a corresponding LocalTime.
- toLong() - Method in interface java.lang.CharSequence
- Parse a CharSequence into a Long
- toLong() - Method in class java.lang.Number
- Transform a Number into a Long
- toLowerCase() - Method in class java.lang.Character
- Converts the character to lowercase.
- toMapString() - Method in interface java.util.Map
- Returns the string representation of this map.
- toMapString(int) - Method in interface java.util.Map
- Returns the string representation of this map.
- toMonth() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding Month.
- toMonth() - Method in class java.util.Date
- Converts the Date to a corresponding Month.
- toMonthDay() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding MonthDay.
- toMonthDay() - Method in class java.util.Date
- Converts the Date to a corresponding MonthDay.
- toOffsetDateTime() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding OffsetDateTime.
- toOffsetDateTime() - Method in class java.util.Date
- Converts the Date to a corresponding OffsetDateTime.
- toOffsetTime() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding OffsetTime.
- toOffsetTime() - Method in class java.util.Date
- Converts the Date to a corresponding OffsetTime.
- toRowResult() - Method in interface java.sql.ResultSet
- Returns a GroovyRowResult given a ResultSet.
- toSet() - Method in interface java.lang.CharSequence
- Converts the given CharSequence into a Set of unique Strings of one character.
- toSet() - Method in interface java.lang.Iterable
- Convert an Iterable to a Set.
- toSet() - Method in interface java.util.Collection
- Convert a Collection to a Set.
- toSet() - Method in interface java.util.Enumeration
- Convert an enumeration to a Set.
- toSet() - Method in interface java.util.Iterator
- Convert an iterator to a Set.
- toSet() - Method in interface java.util.stream.BaseStream
- Accumulates the elements of stream into a new Set.
- toSet() - Method in interface java.util.stream.Stream
- Accumulates the elements of stream into a new Set.
- toSet() - Method in class primitive-types.boolean
- Converts this array to a Set, with each unique element
added to the set.
- toSet() - Method in class primitive-types.byte
- Converts this array to a Set, with each unique element
added to the set.
- toSet() - Method in class primitive-types.char
- Converts this array to a Set, with each unique element
added to the set.
- toSet() - Method in class primitive-types.double
- Converts this array to a Set, with each unique element
added to the set.
- toSet() - Method in class primitive-types.float
- Converts this array to a Set, with each unique element
added to the set.
- toSet() - Method in class primitive-types.int
- Converts this array to a Set, with each unique element
added to the set.
- toSet() - Method in class primitive-types.long
- Converts this array to a Set, with each unique element
added to the set.
- toSet() - Method in class primitive-types.short
- Converts this array to a Set, with each unique element
added to the set.
- toShort() - Method in interface java.lang.CharSequence
- Parse a CharSequence into a Short
- toSorted() - Method in interface java.lang.Iterable
- Sorts the Iterable.
- toSorted() - Method in class java.lang.Object[]
- Returns a sorted version of the given array using the supplied comparator.
- toSorted() - Method in interface java.util.Iterator
- Sorts the Iterator.
- toSorted() - Method in interface java.util.Map
- Sorts the elements from the given map into a new ordered map using
a NumberAwareComparator on map entry values to determine the resulting order.
- toSorted() - Method in interface java.util.SortedMap
- Avoids doing unnecessary work when sorting an already sorted map
- toSorted() - Method in interface java.util.SortedSet
- Avoids doing unnecessary work when sorting an already sorted set
- toSorted(groovy.lang.Closure) - Method in interface java.lang.Iterable
- Sorts this Iterable using the given Closure to determine the correct ordering.
- toSorted(groovy.lang.Closure) - Method in class java.lang.Object[]
- Sorts the elements from this array into a newly created array using
the Closure to determine the correct ordering.
- toSorted(groovy.lang.Closure) - Method in interface java.util.Iterator
- Sorts the given iterator items into a sorted iterator using the Closure to determine the correct ordering.
- toSorted(groovy.lang.Closure) - Method in interface java.util.Map
- Sorts the elements from the given map into a new ordered map using
the supplied Closure condition as a comparator to determine the ordering.
- toSorted(java.util.Comparator) - Method in interface java.lang.Iterable
- Sorts the Iterable using the given Comparator.
- toSorted(java.util.Comparator) - Method in class java.lang.Object[]
- Returns a sorted version of the given array using the supplied comparator to determine the resulting order.
- toSorted(java.util.Comparator) - Method in interface java.util.Iterator
- Sorts the given iterator items using the comparator.
- toSorted(java.util.Comparator) - Method in interface java.util.Map
- Sorts the elements from the given map into a new ordered map using
the supplied comparator to determine the ordering.
- toSpreadMap() - Method in interface java.lang.Iterable
- Creates a spreadable map from this iterable.
- toSpreadMap() - Method in class java.lang.Object
- Creates a spreadable map from this array.
- toSpreadMap() - Method in interface java.util.List
- Creates a spreadable map from this list.
- toSpreadMap() - Method in interface java.util.Map
- Returns a new
SpreadMap
from this map.
- toString() - Method in class java.lang.Object
- Returns the string representation of this array's contents.
- toString() - Method in class java.util.AbstractCollection
- Returns the string representation of the given collection.
- toString() - Method in class java.util.AbstractMap
- Returns the string representation of the given map.
- toString() - Method in class primitive-types.boolean
- Returns the string representation of the given array.
- toString() - Method in class primitive-types.byte
- Returns the string representation of the given array.
- toString() - Method in class primitive-types.char
- Returns the string representation of the given array.
- toString() - Method in class primitive-types.double
- Returns the string representation of the given array.
- toString() - Method in class primitive-types.float
- Returns the string representation of the given array.
- toString() - Method in class primitive-types.int
- Returns the string representation of the given array.
- toString() - Method in class primitive-types.long
- Returns the string representation of the given array.
- toString() - Method in class primitive-types.short
- Returns the string representation of the given array.
- toTimeZone() - Method in class java.time.ZoneId
- Returns a TimeZone equivalent to this zone.
- toTimeZone() - Method in class java.time.ZoneOffset
- Returns a generally equivalent TimeZone.
- toTimestamp() - Method in class java.util.Date
- Return a java.sql.Timestamp given a java.util.Date.
- toURI() - Method in interface java.lang.CharSequence
- Transforms a CharSequence representing a URI into a URI object.
- toURI() - Method in class java.lang.String
- Transforms a String representing a URI into a URI object.
- toURL() - Method in interface java.lang.CharSequence
- Transforms a CharSequence representing a URL into a URL object.
- toURL() - Method in class java.lang.String
- Transforms a String representing a URL into a URL object.
- toUnique() - Method in interface java.lang.Iterable
- Returns a Collection containing the items from the Iterable but with duplicates removed
using the natural ordering of the items to determine uniqueness.
- toUnique() - Method in class java.lang.Object[]
- Returns a new Array containing the items from the original Array but with duplicates removed using the
natural ordering of the items in the array.
- toUnique() - Method in interface java.util.Iterator
- Returns an iterator equivalent to this iterator with all duplicated
items removed by using the natural ordering of the items.
- toUnique() - Method in interface java.util.List
- Returns a List containing the items from the List but with duplicates removed
using the natural ordering of the items to determine uniqueness.
- toUnique(groovy.lang.Closure) - Method in interface java.lang.Iterable
- Returns a Collection containing the items from the Iterable but with duplicates removed.
- toUnique(groovy.lang.Closure) - Method in class java.lang.Object[]
- Returns a new Array containing the items from the original Array but with duplicates removed with the supplied
comparator determining which items are unique.
- toUnique(groovy.lang.Closure) - Method in interface java.util.Iterator
- Returns an iterator equivalent to this iterator but with all duplicated items
removed where duplicate (equal) items are deduced by calling the supplied Closure condition.
- toUnique(groovy.lang.Closure) - Method in interface java.util.List
- Returns a List containing the items from the List but with duplicates removed.
- toUnique(java.util.Comparator) - Method in interface java.lang.Iterable
- Returns a Collection containing the items from the Iterable but with duplicates removed.
- toUnique(java.util.Comparator) - Method in class java.lang.Object[]
- Returns a new Array containing the items from the original Array but with duplicates removed with the supplied
comparator determining which items are unique.
- toUnique(java.util.Comparator) - Method in interface java.util.Iterator
- Returns an iterator equivalent to this iterator with all duplicated
items removed by using the supplied comparator.
- toUnique(java.util.Comparator) - Method in interface java.util.List
- Returns a List containing the items from the List but with duplicates removed.
- toUpperCase() - Method in class java.lang.Character
- Converts the character to uppercase.
- toYear() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding Year.
- toYear() - Method in class java.util.Date
- Converts the Date to a corresponding Year.
- toYearMonth() - Method in class java.util.Calendar
- Converts the Calendar to a corresponding YearMonth.
- toYearMonth() - Method in class java.util.Date
- Converts the Date to a corresponding YearMonth.
- toZoneOffset() - Method in class java.util.TimeZone
- Converts the TimeZone to a corresponding ZoneOffset.
- toZoneOffset(java.time.Instant) - Method in class java.util.TimeZone
- Converts this TimeZone to a corresponding ZoneOffset.
- toZonedDateTime() - Method in class java.util.Calendar
-
Converts the Calendar to a corresponding ZonedDateTime.
- toZonedDateTime() - Method in class java.util.Date
- Converts the Date to a corresponding ZonedDateTime.
- tokenize() - Method in interface java.lang.CharSequence
- Tokenize a CharSequence (with a whitespace as the delimiter).
- tokenize(java.lang.CharSequence) - Method in interface java.lang.CharSequence
- Tokenize a CharSequence based on the given CharSequence.
- tokenize(java.lang.Character) - Method in interface java.lang.CharSequence
- Tokenize a CharSequence based on the given character delimiter.
- tr(java.lang.CharSequence, java.lang.CharSequence) - Method in interface java.lang.CharSequence
- Translates a CharSequence by replacing characters from the sourceSet with characters from replacementSet.
- transformChar(java.io.Writer, groovy.lang.Closure) - Method in class java.io.Reader
- Transforms each character from this reader by passing it to the given
closure.
- transformLine(java.io.Writer, groovy.lang.Closure) - Method in class java.io.Reader
- Transforms the lines from a reader with a Closure and
write them to a writer.
- transpose() - Method in interface java.util.List
- Adds GroovyCollections#transpose(List) as a method on lists.
- traverse(groovy.lang.Closure) - Method in class java.io.File
- Processes each descendant file in this directory and any sub-directories.
- traverse(groovy.lang.Closure) - Method in interface java.nio.file.Path
- Processes each descendant file in this directory and any sub-directories.
- traverse(java.util.Map) - Method in class java.io.File
- Invokes the closure specified with key 'visit' in the options Map
for each descendant file in this directory tree.
- traverse(java.util.Map) - Method in interface java.nio.file.Path
- Invokes the closure specified with key 'visit' in the options Map
for each descendant file in this directory tree.
- traverse(java.util.Map, groovy.lang.Closure) - Method in class java.io.File
- Processes each descendant file in this directory and any sub-directories.
- traverse(java.util.Map, groovy.lang.Closure) - Method in interface java.nio.file.Path
- Processes each descendant file in this directory and any sub-directories.
- trunc() - Method in class java.lang.Double
- Truncate the value
- trunc() - Method in class java.lang.Float
- Truncate the value
- trunc() - Method in class java.math.BigDecimal
- Truncate the value
- trunc(int) - Method in class java.lang.Double
- Truncate the value
- trunc(int) - Method in class java.lang.Float
- Truncate the value
- trunc(int) - Method in class java.math.BigDecimal
- Truncate the value