Java Doc for LocalAttributeMap.java in  » Workflow-Engines » spring-webflow-1.0.4 » org » springframework » webflow » core » collection » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Workflow Engines » spring webflow 1.0.4 » org.springframework.webflow.core.collection 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.webflow.core.collection.LocalAttributeMap

All known Subclasses:   org.springframework.webflow.core.collection.LocalSharedAttributeMap,
LocalAttributeMap
public class LocalAttributeMap implements MutableAttributeMap,Serializable(Code)
A generic, mutable attribute map with string keys.
author:
   Keith Donald



Constructor Summary
public  LocalAttributeMap()
     Creates a new attribute map, initially empty.
public  LocalAttributeMap(int size, int loadFactor)
     Creates a new attribute map, initially empty.
public  LocalAttributeMap(String attributeName, Object attributeValue)
     Creates a new attribute map with a single entry.
public  LocalAttributeMap(Map map)
     Creates a new attribute map wrapping the specified map.

Method Summary
public  MapasMap()
    
public  MutableAttributeMapclear()
    
public  booleancontains(String attributeName)
    
public  booleancontains(String attributeName, Class requiredType)
    
protected  MapcreateTargetMap()
     Factory method that returns the target map storing the data in this attribute map.
protected  MapcreateTargetMap(int size, int loadFactor)
     Factory method that returns the target map storing the data in this attribute map.
public  booleanequals(Object o)
    
public  Objectget(String attributeName)
    
public  Objectget(String attributeName, Object defaultValue)
    
public  Objectget(String attributeName, Class requiredType)
    
public  Objectget(String attributeName, Class requiredType, Object defaultValue)
    
public  Object[]getArray(String attributeName, Class requiredType)
    
public  BooleangetBoolean(String attributeName)
    
public  BooleangetBoolean(String attributeName, Boolean defaultValue)
    
public  CollectiongetCollection(String attributeName)
    
public  CollectiongetCollection(String attributeName, Class requiredType)
    
public  IntegergetInteger(String attributeName)
    
public  IntegergetInteger(String attributeName, Integer defaultValue)
    
public  LonggetLong(String attributeName)
    
public  LonggetLong(String attributeName, Long defaultValue)
    
protected  MapgetMapInternal()
     Returns the wrapped, modifiable map implementation.
public  NumbergetNumber(String attributeName, Class requiredType)
    
public  NumbergetNumber(String attributeName, Class requiredType, Number defaultValue)
    
public  ObjectgetRequired(String attributeName)
    
public  ObjectgetRequired(String attributeName, Class requiredType)
    
public  Object[]getRequiredArray(String attributeName, Class requiredType)
    
public  BooleangetRequiredBoolean(String attributeName)
    
public  CollectiongetRequiredCollection(String attributeName)
    
public  CollectiongetRequiredCollection(String attributeName, Class requiredType)
    
public  IntegergetRequiredInteger(String attributeName)
    
public  LonggetRequiredLong(String attributeName)
    
public  NumbergetRequiredNumber(String attributeName, Class requiredType)
    
public  StringgetRequiredString(String attributeName)
    
public  StringgetString(String attributeName)
    
public  StringgetString(String attributeName, String defaultValue)
    
public  inthashCode()
    
protected  voidinitAttributes(Map attributes)
     Initializes this attribute map.
public  booleanisEmpty()
    
public  Objectput(String attributeName, Object attributeValue)
    
public  MutableAttributeMapputAll(AttributeMap attributes)
    
public  Objectremove(String attributeName)
    
public  MutableAttributeMapreplaceWith(AttributeMap attributes)
    
public  intsize()
    
public  StringtoString()
    
public  AttributeMapunion(AttributeMap attributes)
    


Constructor Detail
LocalAttributeMap
public LocalAttributeMap()(Code)
Creates a new attribute map, initially empty.



LocalAttributeMap
public LocalAttributeMap(int size, int loadFactor)(Code)
Creates a new attribute map, initially empty.
Parameters:
  size - the initial size
Parameters:
  loadFactor - the load factor



LocalAttributeMap
public LocalAttributeMap(String attributeName, Object attributeValue)(Code)
Creates a new attribute map with a single entry.



LocalAttributeMap
public LocalAttributeMap(Map map)(Code)
Creates a new attribute map wrapping the specified map.




Method Detail
asMap
public Map asMap()(Code)



clear
public MutableAttributeMap clear() throws UnsupportedOperationException(Code)



contains
public boolean contains(String attributeName)(Code)



contains
public boolean contains(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



createTargetMap
protected Map createTargetMap()(Code)
Factory method that returns the target map storing the data in this attribute map. the target map



createTargetMap
protected Map createTargetMap(int size, int loadFactor)(Code)
Factory method that returns the target map storing the data in this attribute map.
Parameters:
  size - the initial size of the map
Parameters:
  loadFactor - the load factor the target map



equals
public boolean equals(Object o)(Code)



get
public Object get(String attributeName)(Code)



get
public Object get(String attributeName, Object defaultValue)(Code)



get
public Object get(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



get
public Object get(String attributeName, Class requiredType, Object defaultValue) throws IllegalStateException(Code)



getArray
public Object[] getArray(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



getBoolean
public Boolean getBoolean(String attributeName) throws IllegalArgumentException(Code)



getBoolean
public Boolean getBoolean(String attributeName, Boolean defaultValue) throws IllegalArgumentException(Code)



getCollection
public Collection getCollection(String attributeName) throws IllegalArgumentException(Code)



getCollection
public Collection getCollection(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



getInteger
public Integer getInteger(String attributeName) throws IllegalArgumentException(Code)



getInteger
public Integer getInteger(String attributeName, Integer defaultValue) throws IllegalArgumentException(Code)



getLong
public Long getLong(String attributeName) throws IllegalArgumentException(Code)



getLong
public Long getLong(String attributeName, Long defaultValue) throws IllegalArgumentException(Code)



getMapInternal
protected Map getMapInternal()(Code)
Returns the wrapped, modifiable map implementation.



getNumber
public Number getNumber(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



getNumber
public Number getNumber(String attributeName, Class requiredType, Number defaultValue) throws IllegalArgumentException(Code)



getRequired
public Object getRequired(String attributeName) throws IllegalArgumentException(Code)



getRequired
public Object getRequired(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



getRequiredArray
public Object[] getRequiredArray(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



getRequiredBoolean
public Boolean getRequiredBoolean(String attributeName) throws IllegalArgumentException(Code)



getRequiredCollection
public Collection getRequiredCollection(String attributeName) throws IllegalArgumentException(Code)



getRequiredCollection
public Collection getRequiredCollection(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



getRequiredInteger
public Integer getRequiredInteger(String attributeName) throws IllegalArgumentException(Code)



getRequiredLong
public Long getRequiredLong(String attributeName) throws IllegalArgumentException(Code)



getRequiredNumber
public Number getRequiredNumber(String attributeName, Class requiredType) throws IllegalArgumentException(Code)



getRequiredString
public String getRequiredString(String attributeName) throws IllegalArgumentException(Code)



getString
public String getString(String attributeName) throws IllegalArgumentException(Code)



getString
public String getString(String attributeName, String defaultValue) throws IllegalArgumentException(Code)



hashCode
public int hashCode()(Code)



initAttributes
protected void initAttributes(Map attributes)(Code)
Initializes this attribute map.
Parameters:
  attributes - the attributes



isEmpty
public boolean isEmpty()(Code)



put
public Object put(String attributeName, Object attributeValue)(Code)



putAll
public MutableAttributeMap putAll(AttributeMap attributes)(Code)



remove
public Object remove(String attributeName)(Code)



replaceWith
public MutableAttributeMap replaceWith(AttributeMap attributes) throws UnsupportedOperationException(Code)



size
public int size()(Code)



toString
public String toString()(Code)



union
public AttributeMap union(AttributeMap attributes)(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.