public enum DiffOutputFormat extends Enum<DiffOutputFormat>
Enum Constant and Description |
---|
LINE_BY_LINE |
SIDE_BY_SIDE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static DiffOutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiffOutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiffOutputFormat SIDE_BY_SIDE
public static final DiffOutputFormat LINE_BY_LINE
public static DiffOutputFormat[] values()
for (DiffOutputFormat c : DiffOutputFormat.values()) System.out.println(c);
public static DiffOutputFormat 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<DiffOutputFormat>
Copyright © 2012–2020 JBoss by Red Hat. All rights reserved.