public static enum Mode.CharPadding extends Enum<Mode.CharPadding>
| 枚举常量和说明 |
|---|
ALWAYS
CHAR values are always right-padded with spaces.
|
IN_RESULT_SETS
Spaces are trimmed from the right side of CHAR values, but CHAR
values in result sets are right-padded with spaces to the declared
length
|
NEVER
Spaces are trimmed from the right side of CHAR values.
|
public static final Mode.CharPadding ALWAYS
public static final Mode.CharPadding IN_RESULT_SETS
public static final Mode.CharPadding NEVER
public static Mode.CharPadding[] values()
for (Mode.CharPadding c : Mode.CharPadding.values()) System.out.println(c);
public static Mode.CharPadding valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.