Return type | Name and parameters |
---|---|
Object
|
asType(Class c)
Converts the GString to a File, or delegates to the default DefaultGroovyMethods#asType(Object, Class) |
String
|
drop(int num)
A GString variant of the equivalent CharSequence method. |
String
|
dropWhile(Closure condition)
A GString variant of the equivalent CharSequence method. |
String
|
getAt(IntRange range)
Support the range subscript operator for GString with IntRange |
String
|
getAt(Range range)
Support the range subscript operator for GString |
String
|
getAt(int index)
Support the subscript operator for GString. |
String
|
take(int num)
A GString variant of the equivalent CharSequence method. |
String
|
takeWhile(Closure condition)
A GString variant of the equivalent GString method. |
addShutdownHook
, any
, any
, asBoolean
, asType
, collect
, collect
, collect
, contains
, count
, dump
, each
, eachWithIndex
, equals
, every
, every
, find
, find
, findAll
, findAll
, findIndexOf
, findIndexOf
, findIndexValues
, findIndexValues
, findLastIndexOf
, findLastIndexOf
, findResult
, findResult
, flatten
, getAt
, getMetaClass
, getMetaPropertyValues
, getProperties
, grep
, grep
, groupBy
, groupBy
, hasProperty
, identity
, inject
, inject
, inspect
, invokeMethod
, is
, isCase
, iterator
, join
, metaClass
, print
, print
, printf
, printf
, println
, println
, println
, putAt
, respondsTo
, respondsTo
, setMetaClass
, size
, split
, sprintf
, sprintf
, sum
, sum
, tap
, toArrayString
, toSpreadMap
, toString
, use
, use
, use
, with
, with
, withTraits
asBoolean
, asType
, bitwiseNegate
, capitalize
, center
, center
, contains
, count
, denormalize
, digest
, drop
, dropWhile
, eachLine
, eachLine
, eachMatch
, eachMatch
, endsWithAny
, expand
, expand
, expandLine
, find
, find
, find
, find
, findAll
, findAll
, findAll
, findAll
, getAt
, getAt
, getAt
, getAt
, getAt
, getChars
, isAllWhitespace
, isBigDecimal
, isBigInteger
, isBlank
, isCase
, isDouble
, isFloat
, isInteger
, isLong
, isNumber
, leftShift
, matches
, md5
, minus
, minus
, multiply
, next
, normalize
, padLeft
, padLeft
, padRight
, padRight
, plus
, previous
, readLines
, replace
, replace
, replaceAll
, replaceAll
, replaceAll
, replaceAll
, replaceFirst
, replaceFirst
, replaceFirst
, replaceFirst
, reverse
, size
, split
, splitEachLine
, splitEachLine
, startsWithAny
, stripIndent
, stripIndent
, stripMargin
, stripMargin
, stripMargin
, take
, takeWhile
, toBigDecimal
, toBigInteger
, toDouble
, toFloat
, toInteger
, toList
, toLong
, toSet
, toShort
, toURI
, toURL
, tokenize
, tokenize
, tokenize
, tr
, uncapitalize
, unexpand
, unexpand
, unexpandLine
Converts the GString to a File, or delegates to the default DefaultGroovyMethods#asType(Object, Class)
c
- the desired classA GString variant of the equivalent CharSequence method.
num
- the number of characters to drop from this GStringnum
ones,
or else an empty String, if the toString() of this GString has less than num
characters.A GString variant of the equivalent CharSequence method.
condition
- the closure that while continuously evaluating to true will cause us to drop elements from
the front of the original GStringSupport the range subscript operator for GString with IntRange
range
- an IntRangeSupport the range subscript operator for GString
range
- a RangeSupport the subscript operator for GString.
index
- the index of the Character to getA GString variant of the equivalent CharSequence method.
num
- the number of chars to take from this GStringnum
chars,
or else the whole GString if it has less then num
elements.A GString variant of the equivalent GString method.
condition
- the closure that must evaluate to true to continue taking elements