Package de.undercouch.citeproc.output
Enum SecondFieldAlign
- java.lang.Object
-
- java.lang.Enum<SecondFieldAlign>
-
- de.undercouch.citeproc.output.SecondFieldAlign
-
- All Implemented Interfaces:
Serializable,Comparable<SecondFieldAlign>
public enum SecondFieldAlign extends Enum<SecondFieldAlign>
Specifies whether subsequent lines of bibliographies should be aligned along the second field- Author:
- Michel Kraemer
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SecondFieldAlignfromString(String str)Converts the given string to a SecondFieldAlignStringtoString()static SecondFieldAlignvalueOf(String name)Returns the enum constant of this type with the specified name.static SecondFieldAlign[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FLUSH
public static final SecondFieldAlign FLUSH
-
MARGIN
public static final SecondFieldAlign MARGIN
-
FALSE
public static final SecondFieldAlign FALSE
-
-
Method Detail
-
values
public static SecondFieldAlign[] 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 (SecondFieldAlign c : SecondFieldAlign.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecondFieldAlign valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<SecondFieldAlign>
-
fromString
public static SecondFieldAlign fromString(String str)
Converts the given string to a SecondFieldAlign- Parameters:
str- the string- Returns:
- the converted SecondFieldAlign
-
-