/**
 * EntityName.java
 * Created Jun 18, 2008
 * Copyright (c) TANDBERG Television 2007-2008
 */
package com.tandbergtv.watchpoint.pmm.title.search;

/**
 * A list of entity names used while searching
 * 
 * @author Sahil Verma
 */
public enum EntityName {

	TITLE("title"),
	METADATA("metadata"),
	PLANNER("planner"),
	PITCH("pitch"),
	PROGRESS("progress"),
	;
	
	private String name;

	EntityName(String name) {
		this.name = name;
	}
	
	/* (non-Javadoc)
	 * @see java.lang.Enum#toString()
	 */
	public String toString() {
		return this.name;
	}
}
