Package com.groiss.ds

Interface KeyValuePair<K,V>

All Known Subinterfaces:
Agent, BatchJob, ClassifierAssignment, DMSDocForm, DMSFolder, DMSFolderForm, DMSForm, DMSLink, DMSNote, DMSObject, DMSWebLink, Exportable, Function, Keyword, LogEntry, MailQueueItem, OrgClass, OrgTree, OrgUnit, Permission, PermissionList, Persistent, PersistentVersion, Report, Right, Role, TimerEntry, User, UserRole, View
All Known Implementing Classes:
BasicEvent, CheckedPersistent, ComparablePair, DirectoryServer, EvaluationResult, ExportablePersistentObject, Lock, Pair, Parameter, Partner, PersistentObject, ProcessInstanceView, ProcessRelation, Recipient

public interface KeyValuePair<K,V>
This interface is implemented by some classes like PersistantObject, which have a unique key (object id) and a value - the object itself or a string representation. We use it for representing objects in select lists.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the Key of the Pair.
    Get the Value of the Pair.
  • Method Details

    • getKey

      K getKey()
      Get the Key of the Pair.
    • getValue

      V getValue()
      Get the Value of the Pair.