com.atlassian.jira.issue.transport
Interface FieldParams

All Known Subinterfaces:
ActionParams, CollectionParams, CustomFieldParams, FieldTransportParams, StringParams
All Known Implementing Classes:
ActionParamsImpl, CustomFieldParamsImpl, IssueNavigatorActionParams, NullCustomFieldParams, StringParamsImpl

public interface FieldParams

A parent interface for transport objects in JIRA. All FieldParams share the logic of a String key with a multi-dimesional value. e.g. array, lists, FieldParams. Keys may be null. The interface does not mandate what objects the multi-dimensional value contain. This is up to the implementers and sub-interfaces to mandate


Method Summary
 boolean containsKey(String key)
           
 Set<String> getAllKeys()
           
 Map<String,?> getKeysAndValues()
           
 boolean isEmpty()
           
 

Method Detail

getAllKeys

Set<String> getAllKeys()

getKeysAndValues

Map<String,?> getKeysAndValues()

containsKey

boolean containsKey(String key)

isEmpty

boolean isEmpty()


Copyright © 2002-2010 Atlassian. All Rights Reserved.