public static enum Merge.Mode extends Enum<Merge.Mode>
| Enum Constant and Description | 
|---|
| CONCATConcat the sources. | 
| MERGEMerge the different sources. | 
| ONEPick the first source and use only this one. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Merge.Mode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Merge.Mode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Merge.Mode ONE
public static final Merge.Mode MERGE
public static final Merge.Mode CONCAT
public static Merge.Mode[] values()
for (Merge.Mode c : Merge.Mode.values()) System.out.println(c);
public static Merge.Mode 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 nullCopyright © 2018–2021 SmallRye. All rights reserved.