Uses of Class
org.deepfs.fsml.MetaElem

Packages that use MetaElem
org.deepfs.fsml This package contains the core classes of the DeepFS project. 
 

Uses of MetaElem in org.deepfs.fsml
 

Methods in org.deepfs.fsml that return MetaElem
static MetaElem MetaElem.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MetaElem[] MetaElem.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.deepfs.fsml that return types with arguments of type MetaElem
 TreeMap<MetaElem,ArrayList<String>> DeepFile.getMeta()
          Returns all metadata key-value pairs or null if metadata extraction is disabled.
 

Methods in org.deepfs.fsml with parameters of type MetaElem
 void DeepFile.addMeta(MetaElem elem, byte[] value)
          Adds a metadata key-value pair for the current file.
 void DeepFile.addMeta(MetaElem elem, double value)
          Adds a metadata key-value pair for the current file.
 void DeepFile.addMeta(MetaElem elem, Duration value)
          Adds a metadata key-value pair for the current file.
 void DeepFile.addMeta(MetaElem elem, int value)
          Adds a metadata key-value pair for the current file.
 void DeepFile.addMeta(MetaElem elem, long value)
          Adds a metadata key-value pair for the current file.
 void DeepFile.addMeta(MetaElem elem, short value)
          Adds a metadata key-value pair for the current file.
 void DeepFile.addMeta(MetaElem elem, String value)
          Adds a metadata key-value pair for the current file.
 void DeepFile.addMeta(MetaElem elem, XMLGregorianCalendar xgc)
          Adds a metadata key-value pair for the current file.
 String[] DeepFile.getValues(MetaElem elem)
          Returns the string values for the MetaElem.
 boolean DeepFile.isMetaSet(MetaElem elem)
          Returns true, if a value is set for the given metadata element.