Class FolderReference

java.lang.Object
com.flir.thermalsdk.live.importing.FolderReference
All Implemented Interfaces:
Comparable<FolderReference>

public class FolderReference extends Object implements Comparable<FolderReference>
Abstract folder path on Camera's filesystem.
  • Constructor Details

    • FolderReference

      public FolderReference(Location location, String path)
  • Method Details

    • getLocation

      public Location getLocation()
      Get base part of the folder path.
    • getPath

      public String getPath()
      Get relative path to the location. Example: Both "" and "/" would refer to the folder of location. Note: The path is expressed in a camera-compatible format using forward slashes (/) as the separator. "/some-folder/" would be a valid path even if Atlas Android SDK runs on a Windows system, so utilities like java.io.File.separator should be avoided here.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • compareTo

      public int compareTo(FolderReference that)
      Specified by:
      compareTo in interface Comparable<FolderReference>