Java Doc for ParametersHeader.java in  » 6.0-JDK-Modules » j2me » gov » nist » siplite » header » 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 » 6.0 JDK Modules » j2me » gov.nist.siplite.header 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gov.nist.core.GenericObject
      gov.nist.siplite.header.Header
         gov.nist.siplite.header.ParametersHeader

All known Subclasses:   gov.nist.siplite.header.EventHeader,  gov.nist.siplite.header.AuthenticationHeader,  gov.nist.siplite.header.AddressParametersHeader,  gov.nist.siplite.header.AcceptContactHeader,  gov.nist.siplite.header.ExtensionHeader,  gov.nist.siplite.header.ViaHeader,  gov.nist.siplite.header.SubscriptionStateHeader,  gov.nist.siplite.header.ContentTypeHeader,
ParametersHeader
abstract public class ParametersHeader extends Header (Code)
Parameters header. Suitable for extension by headers that have parameters. This code is in the public domain.
version:
   JAIN-SIP-1.1


Field Summary
protected  NameValueListparameters
     Contents of the parameter list.

Constructor Summary
protected  ParametersHeader()
     Default constructor.
protected  ParametersHeader(String hdrName)
     Constructor with initial header name.

Method Summary
abstract protected  StringencodeBody()
     Encodes the contents as a string.
protected  StringencodeWithSep()
     Encodes the parameters as a string.
public  NameValuegetNameValue(String parameterName)
     This is for the benifit of the TCK.
public  StringgetParameter(String name)
     Returns the value of the named parameter, or null if it is not set.
protected  booleangetParameterAsBoolean(String parameterName)
     Gets the parameter value as a boolean.
protected  intgetParameterAsHexInt(String parameterName)
     Gets the parameter as an integer when it is entered as a hex.
Parameters:
  parameterName - -- The parameter name to fetch.
protected  intgetParameterAsInt(String parameterName)
     Gets the parameter as an integer value.
Parameters:
  parameterName - -- the parameter name to fetch.
protected  longgetParameterAsLong(String parameterName)
     Gets the parameter as a long value.
Parameters:
  parameterName - -- the parameter name to fetch.
protected  URIgetParameterAsURI(String parameterName)
     Gets the parameter value as a URI.
public  VectorgetParameterNames()
     Returns an Vector over the names (Strings) of all parameters present in this ParametersHeader.
public  ObjectgetParameterValue(String name)
     Returns the parameter as an object (dont convert to string).
Parameters:
  name - is the name of the parameter to get.
public  NameValueListgetParameters()
     get the parameter list.
public  booleanhasParameter(String parameterName)
     Returns true if has a parameter.
Parameters:
  parameterName - is the name of the parameter.
public  booleanhasParameters()
     Returns true if you have a parameter and false otherwise.
public  voidremoveParameter(String name)
     Removes the specified parameter from Parameters of this ParametersHeader.
public  voidremoveParameters()
     Removes all parameters.
public  voidsetParameter(String name, String value)
     Sets the value of the specified parameter.
protected  voidsetParameter(String name, int value)
     Sets the value of the specified parameter.
protected  voidsetParameter(String name, boolean value)
     Sets the value of the specified parameter.
protected  voidsetParameter(String name, Object value)
     Sets the value of the specified parameter.
public  voidsetParameter(NameValue nameValue)
     Sets the parameter given a name and value.
public  voidsetParameters(NameValueList parameters)
     Sets the parameter list.
public  voidsetQuotedParameter(String name, String value)
     Sets the value of the specified parameter.

Field Detail
parameters
protected NameValueList parameters(Code)
Contents of the parameter list.




Constructor Detail
ParametersHeader
protected ParametersHeader()(Code)
Default constructor.



ParametersHeader
protected ParametersHeader(String hdrName)(Code)
Constructor with initial header name.
Parameters:
  hdrName - an initial header name




Method Detail
encodeBody
abstract protected String encodeBody()(Code)
Encodes the contents as a string. encoded string of object contents.



encodeWithSep
protected String encodeWithSep()(Code)
Encodes the parameters as a string. encoded string of object contents.



getNameValue
public NameValue getNameValue(String parameterName)(Code)
This is for the benifit of the TCK.
Parameters:
  parameterName - the parameter name the name value pair for the given parameter name.



getParameter
public String getParameter(String name)(Code)
Returns the value of the named parameter, or null if it is not set. A zero-length String indicates flag parameter.
Parameters:
  name - name of parameter to retrieve the value of specified parameter



getParameterAsBoolean
protected boolean getParameterAsBoolean(String parameterName)(Code)
Gets the parameter value as a boolean.
Parameters:
  parameterName - the parameter name boolean value of the parameter.



getParameterAsHexInt
protected int getParameterAsHexInt(String parameterName)(Code)
Gets the parameter as an integer when it is entered as a hex.
Parameters:
  parameterName - -- The parameter name to fetch. -1 if the parameter is not defined in the header.



getParameterAsInt
protected int getParameterAsInt(String parameterName)(Code)
Gets the parameter as an integer value.
Parameters:
  parameterName - -- the parameter name to fetch. -1 if the parameter is not defined in the header.



getParameterAsLong
protected long getParameterAsLong(String parameterName)(Code)
Gets the parameter as a long value.
Parameters:
  parameterName - -- the parameter name to fetch. -1 if the parameter is not defined or the parameter as a long.



getParameterAsURI
protected URI getParameterAsURI(String parameterName)(Code)
Gets the parameter value as a URI.
Parameters:
  parameterName - -- the parameter name value of the parameter as a URI or null if the parameternot present.



getParameterNames
public Vector getParameterNames()(Code)
Returns an Vector over the names (Strings) of all parameters present in this ParametersHeader. an Iterator over all the parameter names



getParameterValue
public Object getParameterValue(String name)(Code)
Returns the parameter as an object (dont convert to string).
Parameters:
  name - is the name of the parameter to get. the object associated with the name.



getParameters
public NameValueList getParameters()(Code)
get the parameter list. parameter list



hasParameter
public boolean hasParameter(String parameterName)(Code)
Returns true if has a parameter.
Parameters:
  parameterName - is the name of the parameter. true if the parameter exists and false if not.



hasParameters
public boolean hasParameters()(Code)
Returns true if you have a parameter and false otherwise. true if the parameters list is non-empty.



removeParameter
public void removeParameter(String name)(Code)
Removes the specified parameter from Parameters of this ParametersHeader. This method returns silently if the parameter is not part of the ParametersHeader.
Parameters:
  name - - a String specifying the parameter name



removeParameters
public void removeParameters()(Code)
Removes all parameters.



setParameter
public void setParameter(String name, String value)(Code)
Sets the value of the specified parameter. If the parameter already had a value it will be overwritten. A zero-length String indicates flag parameter.
Parameters:
  name - - a String specifying the parameter name
Parameters:
  value - - a String specifying the parameter value
throws:
  ParseException - which signals that an error has been reachedunexpectedly while parsing the parameter name or value.



setParameter
protected void setParameter(String name, int value)(Code)
Sets the value of the specified parameter. If the parameter already had a value it will be overwritten.
Parameters:
  name - - a String specifying the parameter name
Parameters:
  value - - an int specifying the parameter value
throws:
  ParseException - which signals that an error has been reachedunexpectedly while parsing the parameter name or value.



setParameter
protected void setParameter(String name, boolean value)(Code)
Sets the value of the specified parameter. If the parameter already had a value it will be overwritten.
Parameters:
  name - - a String specifying the parameter name
Parameters:
  value - - a boolean specifying the parameter value
throws:
  ParseException - which signals that an error has been reachedunexpectedly while parsing the parameter name or value.



setParameter
protected void setParameter(String name, Object value)(Code)
Sets the value of the specified parameter. If the parameter already had a value it will be overwritten. A zero-length String indicates flag parameter.
Parameters:
  name - - a String specifying the parameter name
Parameters:
  value - - a String specifying the parameter value
throws:
  ParseException - which signals that an error has been reachedunexpectedly while parsing the parameter name or value.



setParameter
public void setParameter(NameValue nameValue)(Code)
Sets the parameter given a name and value.
Parameters:
  nameValue - - the name value of the parameter to set.



setParameters
public void setParameters(NameValueList parameters)(Code)
Sets the parameter list.
Parameters:
  parameters - the name value list to set as the parameter list.



setQuotedParameter
public void setQuotedParameter(String name, String value) throws ParseException(Code)
Sets the value of the specified parameter. If the parameter already had a value it will be overwritten. A zero-length String indicates flag parameter.
Parameters:
  name - - a String specifying the parameter name
Parameters:
  value - - a String specifying the parameter value
throws:
  ParseException - which signals that an error has been reachedunexpectedly while parsing the parameter name or value.



Fields inherited from gov.nist.siplite.header.Header
final public static String ACCEPT(Code)(Java Doc)
final public static String ACCEPT_CONTACT(Code)(Java Doc)
final public static String ACCEPT_ENCODING(Code)(Java Doc)
final public static String ACCEPT_LANGUAGE(Code)(Java Doc)
final public static String ALERT_INFO(Code)(Java Doc)
final public static String ALLOW(Code)(Java Doc)
final public static String ALLOW_EVENTS(Code)(Java Doc)
final public static String AUTHENTICATION_INFO(Code)(Java Doc)
final public static String AUTHORIZATION(Code)(Java Doc)
final public static String CALL_ID(Code)(Java Doc)
final public static String CALL_INFO(Code)(Java Doc)
final public static String CONTACT(Code)(Java Doc)
final public static String CONTENT_DISPOSITION(Code)(Java Doc)
final public static String CONTENT_ENCODING(Code)(Java Doc)
final public static String CONTENT_LANGUAGE(Code)(Java Doc)
final public static String CONTENT_LENGTH(Code)(Java Doc)
final public static String CONTENT_TYPE(Code)(Java Doc)
final public static String CSEQ(Code)(Java Doc)
final public static String DATE(Code)(Java Doc)
final public static String ENCRYPTION(Code)(Java Doc)
final public static String ERROR_INFO(Code)(Java Doc)
final public static String EVENT(Code)(Java Doc)
final public static String EXPIRES(Code)(Java Doc)
final public static String EXTENSION(Code)(Java Doc)
final public static String FROM(Code)(Java Doc)
final public static String HIDE(Code)(Java Doc)
final public static String IN_REPLY_TO(Code)(Java Doc)
final public static String MAX_FORWARDS(Code)(Java Doc)
final public static String MIME_VERSION(Code)(Java Doc)
final public static String MIN_EXPIRES(Code)(Java Doc)
final public static String ORGANIZATION(Code)(Java Doc)
final public static String PRIORITY(Code)(Java Doc)
final public static String PROXY_AUTHENTICATE(Code)(Java Doc)
final public static String PROXY_AUTHORIZATION(Code)(Java Doc)
final public static String PROXY_REQUIRE(Code)(Java Doc)
final public static String RACK(Code)(Java Doc)
final public static String RECORD_ROUTE(Code)(Java Doc)
final public static String REFER_TO(Code)(Java Doc)
final public static String REQUIRE(Code)(Java Doc)
final public static String RESPONSE_KEY(Code)(Java Doc)
final public static String RETRY_AFTER(Code)(Java Doc)
final public static String ROUTE(Code)(Java Doc)
final public static String RSEQ(Code)(Java Doc)
final public static String SERVER(Code)(Java Doc)
final public static String SIP_ETAG(Code)(Java Doc)
final public static String SIP_IF_MATCH(Code)(Java Doc)
final public static String SUBJECT(Code)(Java Doc)
final public static String SUBSCRIPTION_STATE(Code)(Java Doc)
final public static String SUPPORTED(Code)(Java Doc)
final public static String TIMESTAMP(Code)(Java Doc)
final public static String TO(Code)(Java Doc)
final public static String UNSUPPORTED(Code)(Java Doc)
final public static String USER_AGENT(Code)(Java Doc)
final public static String VIA(Code)(Java Doc)
final public static String WARNING(Code)(Java Doc)
final public static String WARN_AGENT(Code)(Java Doc)
final public static String WWW_AUTHENTICATE(Code)(Java Doc)
public String headerName(Code)(Java Doc)
public String headerValue(Code)(Java Doc)
final public static String[] parameterLessHeaders(Code)(Java Doc)

Methods inherited from gov.nist.siplite.header.Header
public Object clone()(Code)(Java Doc)
public String encode()(Code)(Java Doc)
abstract protected String encodeBody()(Code)(Java Doc)
public static String encodeCalendar(Calendar date)(Code)(Java Doc)
public String getHeaderName()(Code)(Java Doc)
public String getHeaderValue()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
abstract public NameValueList getParameters()(Code)(Java Doc)
public static byte getStringHash(String s)(Code)(Java Doc)
abstract public Object getValue()(Code)(Java Doc)
public static boolean isAuthorization(String name)(Code)(Java Doc)
public static boolean isParameterLess(String name)(Code)(Java Doc)
public static boolean isReliableTagPresent(String strOptionTags)(Code)(Java Doc)
public void setHeaderName(String name)(Code)(Java Doc)
public void setHeaderValue(String value)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from gov.nist.core.GenericObject
abstract public Object clone()(Code)(Java Doc)
public static int compareToIgnoreCase(String s1, String s2)(Code)(Java Doc)
abstract public String encode()(Code)(Java Doc)
public static boolean equalsIgnoreCase(String s1, String s2)(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(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.