public final class StringUtils extends Object
Modifier and Type | Method and Description |
---|---|
static boolean |
endsWithWhitespace(CharSequence charSeq)
Finds out if the given character sequence ends with a whitespace
character.
|
static boolean |
startsWithWhitespace(CharSequence charSeq)
Finds out if the given character sequence starts with a whitespace
character.
|
public static boolean startsWithWhitespace(CharSequence charSeq)
true
if the given character sequence is not empty
and starts with a whitespace character; false
otherwiseNullPointerException
- if the given character sequence is
null
public static boolean endsWithWhitespace(CharSequence charSeq)
true
if the given character sequence is not empty
and ends with a whitespace character; false
otherwiseNullPointerException
- if the given character sequence is
null
Copyright © 2018 JBoss by Red Hat. All rights reserved.