public enum SplitType extends Enum<SplitType>
Enum Constant and Description |
---|
SPLIT_BACKSLASH
切分标记:反斜杠
|
SPLIT_COMMA_CH
切分标记:中文逗号
|
SPLIT_COMMA_EN
切分标记:英文逗号
|
SPLIT_SEMICOLON_CH
切分标记:中文分号
|
SPLIT_SEMICOLON_EN
切分标记:英文分号
|
SPLIT_SLASH
切分标记:斜杠
|
SPLIT_SPACE
切分标记:空格
|
SPLIT_STOP_CH
切分标记:中文顿号
|
SPLIT_TAB
切分标记:tap
|
Modifier and Type | Method and Description |
---|---|
String |
getSplitSign()
用于返回分隔文本的符号
|
static SplitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitType SPLIT_TAB
public static final SplitType SPLIT_SPACE
public static final SplitType SPLIT_COMMA_CH
public static final SplitType SPLIT_COMMA_EN
public static final SplitType SPLIT_SEMICOLON_CH
public static final SplitType SPLIT_SEMICOLON_EN
public static final SplitType SPLIT_STOP_CH
public static final SplitType SPLIT_SLASH
public static final SplitType SPLIT_BACKSLASH
public static SplitType[] values()
for (SplitType c : SplitType.values()) System.out.println(c);
public static SplitType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getSplitSign()
Copyright © 2024. All rights reserved.