Module org.tquadrat.foundation.util
Package org.tquadrat.foundation.util
Enum Class StringUtils.Padding
- All Implemented Interfaces:
Serializable
,Comparable<StringUtils.Padding>
,Constable
- Enclosing class:
StringUtils
@ClassVersion(sourceVersion="$Id: StringUtils.java 1138 2024-06-03 22:46:54Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public static enum StringUtils.Padding
extends Enum<StringUtils.Padding>
The padding mode that is used for the methods
StringUtils.pad(CharSequence,int,char,Padding,boolean)
and
StringUtils.pad(CharSequence,int,char,Padding,Clipping)
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: StringUtils.java 1138 2024-06-03 22:46:54Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.StringUtils.Padding"
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe pad characters are distributed evenly at begin and end of the string.The pad characters are added at the beginning of the string (prefixing it).The pad characters are added the end of the string (as a suffix). -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract String
pad
(CharSequence input, int padSize, char c) Pads the given input String.private static String
padding
(int repeat, char padChar) Returns padding using the specified pad character repeated to the given length.static StringUtils.Padding
Returns the enum constant of this class with the specified name.static StringUtils.Padding[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PADDING_CENTER
The pad characters are distributed evenly at begin and end of the string. -
PADDING_LEFT
The pad characters are added at the beginning of the string (prefixing it). -
PADDING_RIGHT
The pad characters are added the end of the string (as a suffix).
-
-
Constructor Details
-
Padding
private Padding()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
pad
Pads the given input String.- Parameters:
input
- The input String.padSize
- The pad size.c
- The pad character.- Returns:
- The result String.
-
padding
Returns padding using the specified pad character repeated to the given length.
Padding.padding( 0, 'e' ) ⇒ ""
Padding.padding( 3, 'e' ) ⇒ "eee"
Padding.padding( -2, 'e' ) ⇒ IndexOutOfBoundsException
- Parameters:
repeat
- Number of times to repeatpadChar
; must be 0 or greater.padChar
- Character to repeat.- Returns:
- String with repeated
padChar
character, or the empty String ifrepeat
is 0. - Throws:
IndexOutOfBoundsException
-repeat
is less than 0.- See Also:
-