Package org.alfresco.repo.tagging
Class TagDetailsImpl
- java.lang.Object
-
- org.alfresco.repo.tagging.TagDetailsImpl
-
- All Implemented Interfaces:
Comparable<TagDetails>,TagDetails
public class TagDetailsImpl extends Object implements TagDetails
Contains the details of a tag within a specific tag scope.- Author:
- Roy Wetherall
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(TagDetails o)booleanequals(Object obj)intgetCount()Get the tag countStringgetName()Get the name of the taginthashCode()StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:TagDetailsGet the name of the tag- Specified by:
getNamein interfaceTagDetails- Returns:
- String tag name
- See Also:
TagDetails.getName()
-
getCount
public int getCount()
Description copied from interface:TagDetailsGet the tag count- Specified by:
getCountin interfaceTagDetails- Returns:
- int tag count
- See Also:
TagDetails.getCount()
-
hashCode
public int hashCode()
- Overrides:
hashCodein classObject- See Also:
Object.hashCode()
-
equals
public boolean equals(Object obj)
- Overrides:
equalsin classObject- See Also:
Object.equals(java.lang.Object)
-
compareTo
public int compareTo(TagDetails o)
- Specified by:
compareToin interfaceComparable<TagDetails>- See Also:
Comparable.compareTo(java.lang.Object)
-
-