org.tolven.trim.ex
Class ADSlotMap

java.lang.Object
  extended by org.tolven.trim.ex.ADSlotMap
All Implemented Interfaces:
java.util.Map<java.lang.String,AD>

public class ADSlotMap
extends java.lang.Object
implements java.util.Map<java.lang.String,AD>

This class returns an EntityName (EN) with the use code specified in the map parameter.

 ...name.EN['L']
 
returns the EN with a use code of L (legal name) or null if none exists.

Author:
John Churin

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K,V>
 
Constructor Summary
ADSlotMap(ADSlotEx adSlotEx)
           
 
Method Summary
 void clear()
           
 boolean containsKey(java.lang.Object key)
           
 boolean containsValue(java.lang.Object value)
           
 java.util.Set<java.util.Map.Entry<java.lang.String,AD>> entrySet()
           
 AD get(java.lang.Object key)
           
 boolean isEmpty()
           
 java.util.Set<java.lang.String> keySet()
           
 AD put(java.lang.String key, AD value)
           
 void putAll(java.util.Map<? extends java.lang.String,? extends AD> m)
           
 AD remove(java.lang.Object key)
           
 int size()
           
 java.util.Collection<AD> values()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

ADSlotMap

public ADSlotMap(ADSlotEx adSlotEx)
Method Detail

get

public AD get(java.lang.Object key)
Specified by:
get in interface java.util.Map<java.lang.String,AD>

clear

public void clear()
Specified by:
clear in interface java.util.Map<java.lang.String,AD>

containsKey

public boolean containsKey(java.lang.Object key)
Specified by:
containsKey in interface java.util.Map<java.lang.String,AD>

containsValue

public boolean containsValue(java.lang.Object value)
Specified by:
containsValue in interface java.util.Map<java.lang.String,AD>

entrySet

public java.util.Set<java.util.Map.Entry<java.lang.String,AD>> entrySet()
Specified by:
entrySet in interface java.util.Map<java.lang.String,AD>

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface java.util.Map<java.lang.String,AD>

keySet

public java.util.Set<java.lang.String> keySet()
Specified by:
keySet in interface java.util.Map<java.lang.String,AD>

put

public AD put(java.lang.String key,
              AD value)
Specified by:
put in interface java.util.Map<java.lang.String,AD>

putAll

public void putAll(java.util.Map<? extends java.lang.String,? extends AD> m)
Specified by:
putAll in interface java.util.Map<java.lang.String,AD>

remove

public AD remove(java.lang.Object key)
Specified by:
remove in interface java.util.Map<java.lang.String,AD>

size

public int size()
Specified by:
size in interface java.util.Map<java.lang.String,AD>

values

public java.util.Collection<AD> values()
Specified by:
values in interface java.util.Map<java.lang.String,AD>