com.supermap.services.tilesource

Class TileVersion

  • java.lang.Object
    • com.supermap.services.tilesource.TileVersion


  • public class TileVersion
    extends java.lang.Object
    

    Slice version A slice can have multiple slices.

    Since:
    6.1.3
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      java.lang.String desc
      Description
      java.lang.String name
      Version number.
      java.lang.String parent
      Parent version number.
      long timestamp
      The version created time.
      VersionUpdate update
      Parent version based on the update information.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      TileVersion copy() 
      boolean equals(java.lang.Object obj)
      Compares whether the current object TileVersion is the same as the incoming object
      int hashCode()
      Gets the hash code value for this object TileVersion
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • name

        public java.lang.String name
        
        Version number.
      • desc

        public java.lang.String desc
        
        Description
      • parent

        public java.lang.String parent
        
        Parent version number. If empty, indicates that the current version is the original version.
      • update

        public VersionUpdate update
        
        Parent version based on the update information.
      • timestamp

        public long timestamp
        
        The version created time.
    • Constructor Detail

      • TileVersion

        public TileVersion()
        
      • TileVersion

        public TileVersion(TileVersion tileVersion)
        
      • TileVersion

        public TileVersion(java.lang.String name,
                   java.lang.String desc,
                   java.lang.String parent,
                   VersionUpdate update,
                   long timestamp)
        
    • Method Detail

      • hashCode

        public int hashCode()
        

        Gets the hash code value for this object TileVersion

        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals(java.lang.Object obj)
        

        Compares whether the current object TileVersion is the same as the incoming object

        Overrides:
        equals in class java.lang.Object
        Parameters:
        obj - the object to be compared.