fr.faylixe.googlecodejam.client.common.HTMLConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of googlecodejam-client Show documentation
Show all versions of googlecodejam-client Show documentation
Java client API for Google Code Jam contest
package fr.faylixe.googlecodejam.client.common;
/**
* Simple class that exposes HTML String related constants value.
*
* @author fv
*/
public final class HTMLConstant {
/** HTML tag H3. **/
public static final String H3 = "h3";
/** HTML tag IMG. **/
public static final String IMG = "img";
/** HTML tag A. **/
public static final String ANCHOR = "a";
/** HTML tag TR. **/
public static final String TR = "tr";
/** HTML tag TD. **/
public static final String TD = "td";
/** HTML attribute HREF. **/
public static final String HREF = "href";
/** HTML attribute SRC. **/
public static final String SRC = "src";
/**
* Private constructor for avoiding instantiation.
*/
private HTMLConstant() {
// Do nothing.
}
}