Package org.apache.hop.www
Class HopServerObjectEntry
- java.lang.Object
-
- org.apache.hop.www.HopServerObjectEntry
-
- All Implemented Interfaces:
Comparable<HopServerObjectEntry>,Comparator<HopServerObjectEntry>
public class HopServerObjectEntry extends Object implements Comparator<HopServerObjectEntry>, Comparable<HopServerObjectEntry>
A carte object entry in the pipeline or workflow maps
-
-
Constructor Summary
Constructors Constructor Description HopServerObjectEntry()HopServerObjectEntry(String name, String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompare(HopServerObjectEntry o1, HopServerObjectEntry o2)intcompareTo(HopServerObjectEntry 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<HopServerObjectEntry>- Overrides:
equalsin classObject
-
compare
public int compare(HopServerObjectEntry o1, HopServerObjectEntry o2)
- Specified by:
comparein interfaceComparator<HopServerObjectEntry>
-
compareTo
public int compareTo(HopServerObjectEntry o)
- Specified by:
compareToin interfaceComparable<HopServerObjectEntry>
-
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
-
-