Package org.pentaho.di.www
Class CarteObjectEntry
- java.lang.Object
-
- org.pentaho.di.www.CarteObjectEntry
-
- All Implemented Interfaces:
Comparable<CarteObjectEntry>,Comparator<CarteObjectEntry>
public class CarteObjectEntry extends Object implements Comparator<CarteObjectEntry>, Comparable<CarteObjectEntry>
A carte object entry in the transformation or job maps- Author:
- matt
-
-
Constructor Summary
Constructors Constructor Description CarteObjectEntry()CarteObjectEntry(String name, String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompare(CarteObjectEntry o1, CarteObjectEntry o2)intcompareTo(CarteObjectEntry o)booleanequals(Object obj)StringgetId()StringgetName()inthashCode()voidsetId(String id)voidsetName(String name)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Comparator
reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
-
-
-
Method Detail
-
equals
public boolean equals(Object obj)
- Specified by:
equalsin interfaceComparator<CarteObjectEntry>- Overrides:
equalsin classObject
-
compare
public int compare(CarteObjectEntry o1, CarteObjectEntry o2)
- Specified by:
comparein interfaceComparator<CarteObjectEntry>
-
compareTo
public int compareTo(CarteObjectEntry o)
- Specified by:
compareToin interfaceComparable<CarteObjectEntry>
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getId
public String getId()
- Returns:
- the id
-
setId
public void setId(String id)
- Parameters:
id- the id to set
-
-