Package adams.doc.latex.generator
Enum AbstractFileReferencingCodeGenerator.PathType
- java.lang.Object
-
- java.lang.Enum<AbstractFileReferencingCodeGenerator.PathType>
-
- adams.doc.latex.generator.AbstractFileReferencingCodeGenerator.PathType
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractFileReferencingCodeGenerator.PathType>
- Enclosing class:
- AbstractFileReferencingCodeGenerator
public static enum AbstractFileReferencingCodeGenerator.PathType extends Enum<AbstractFileReferencingCodeGenerator.PathType>
Determines how to process the file path.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSOLUTE
BASENAME
SUPPLIED_DIR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractFileReferencingCodeGenerator.PathType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractFileReferencingCodeGenerator.PathType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABSOLUTE
public static final AbstractFileReferencingCodeGenerator.PathType ABSOLUTE
-
BASENAME
public static final AbstractFileReferencingCodeGenerator.PathType BASENAME
-
SUPPLIED_DIR
public static final AbstractFileReferencingCodeGenerator.PathType SUPPLIED_DIR
-
-
Method Detail
-
values
public static AbstractFileReferencingCodeGenerator.PathType[] 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 (AbstractFileReferencingCodeGenerator.PathType c : AbstractFileReferencingCodeGenerator.PathType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractFileReferencingCodeGenerator.PathType 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
-
-