cz.kebrt.html2latex
Enum LinksConversion

java.lang.Object
  extended by java.lang.Enum<LinksConversion>
      extended by cz.kebrt.html2latex.LinksConversion
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LinksConversion>

 enum LinksConversion
extends java.lang.Enum<LinksConversion>

The way of converting hyperlinks.


Enum Constant Summary
BIBLIO
          Hyperlinks will be converted into the bibliography items.
FOOTNOTES
          Hyperlinks will be converted into the footnotes containing the link.
HYPERTEX
          Hyperlinks will be converted using the hyperref package which is built on hypertex package.
IGNORE
          Hyperlinks are ignored.
 
Method Summary
static LinksConversion valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LinksConversion[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FOOTNOTES

public static final LinksConversion FOOTNOTES
Hyperlinks will be converted into the footnotes containing the link.


BIBLIO

public static final LinksConversion BIBLIO
Hyperlinks will be converted into the bibliography items.


HYPERTEX

public static final LinksConversion HYPERTEX
Hyperlinks will be converted using the hyperref package which is built on hypertex package. Hyperlinks starting with "#" are also included.


IGNORE

public static final LinksConversion IGNORE
Hyperlinks are ignored.

Method Detail

values

public static final LinksConversion[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(LinksConversion c : LinksConversion.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static LinksConversion 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