com.atlassian.confluence.diff
Enum DiffType
java.lang.Object
java.lang.Enum<DiffType>
com.atlassian.confluence.diff.DiffType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DiffType>
public enum DiffType
- extends java.lang.Enum<DiffType>
Holds all the different types of diffs and the styles applied to them
This need to be available because some email clients don't support
adding style classes to emails.
Method Summary |
java.lang.String |
getClassName()
|
java.lang.String |
getStyle()
|
boolean |
isChangedLineType()
|
static DiffType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DiffType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
UNCHANGED
public static final DiffType UNCHANGED
SNIPPED_LINES
public static final DiffType SNIPPED_LINES
ADDED_LINES
public static final DiffType ADDED_LINES
DELETED_LINES
public static final DiffType DELETED_LINES
CHANGED_LINES
public static final DiffType CHANGED_LINES
ADDED_WORDS
public static final DiffType ADDED_WORDS
DELETED_WORDS
public static final DiffType DELETED_WORDS
CHANGED_WORDS
public static final DiffType CHANGED_WORDS
ADDED_CHARACTERS
public static final DiffType ADDED_CHARACTERS
DELETED_CHARACTERS
public static final DiffType DELETED_CHARACTERS
values
public static DiffType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DiffType c : DiffType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DiffType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getClassName
public java.lang.String getClassName()
getStyle
public java.lang.String getStyle()
isChangedLineType
public boolean isChangedLineType()
Copyright © 2003-2014 Atlassian. All Rights Reserved.