public enum QuickfixType extends Enum<QuickfixType>
| Enum Constant and Description |
|---|
DELETE_LINE
It searches for a token and deletes whole found line
|
INSERT_LINE
It searches for a token and inserts a new line after found line
|
REGULAR_EXPRESSION
Transforms via a regular expression.
|
REPLACE
It searches for token and replaces it by another token
|
TRANSFORMATION
Transforms based upon a custom Java implementation of a transformer.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static QuickfixType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuickfixType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuickfixType REPLACE
public static final QuickfixType DELETE_LINE
public static final QuickfixType INSERT_LINE
public static final QuickfixType REGULAR_EXPRESSION
public static final QuickfixType TRANSFORMATION
public static QuickfixType[] values()
for (QuickfixType c : QuickfixType.values()) System.out.println(c);
public static QuickfixType 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<QuickfixType>Copyright © 2021 JBoss by Red Hat. All rights reserved.