public enum ReplaceType extends Enum<ReplaceType>
| Enum Constant and Description |
|---|
ColumnValue |
Concat |
Null |
SubstringByCharSeq |
SubstringByIndex |
SubstringByRegex |
TextReplaceMatchingRegex |
Value |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ReplaceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplaceType Null
public static final ReplaceType Value
public static final ReplaceType ColumnValue
public static final ReplaceType SubstringByRegex
public static final ReplaceType SubstringByIndex
public static final ReplaceType SubstringByCharSeq
public static final ReplaceType TextReplaceMatchingRegex
public static final ReplaceType Concat
public static ReplaceType[] values()
for (ReplaceType c : ReplaceType.values()) System.out.println(c);
public static ReplaceType 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 toString()
toString in class Enum<ReplaceType>Copyright © 2014. All Rights Reserved.