Java Doc for ContentType.java in  » Web-Server » simple » simple » util » net » 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 » Web Server » simple » simple.util.net 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


simple.util.net.ContentType

All known Subclasses:   simple.util.parse.ContentParser,
ContentType
public interface ContentType (Code)
This provides access to the MIME type parts, that is the type subtype and an optional charset parameter. The charset parameter is one of many parameters that can be assiciated with a MIME type. This however only provides access to the charset value.

The getCharset will return val if the MIME type represented is type/subtype; charset=val. The type and subtype are set to the String value null if the setPrimary or setSecondary are given a null String.
author:
   Niall Gallagher





Method Summary
public  StringgetCharset()
     This is used to retrive the charset of this MIME type.
public  StringgetPrimary()
     This is used to retrive the type of this MIME type.
public  StringgetSecondary()
     This is used to retrive the subtype of this MIME type.
public  voidsetCharset(String charset)
     This will set the charset to whatever value is in the String object.
public  voidsetPrimary(String type)
     This sets the type to whatever value is in the String object.
public  voidsetSecondary(String type)
     Sets the subtype to whatever value is in the String object.
public  StringtoString()
     This will return the String value of the MIME type.



Method Detail
getCharset
public String getCharset()(Code)
This is used to retrive the charset of this MIME type. The charset part within the MIME type is an optional parameter. For example type/subtype;charset=value . This will return the value of the charset value. If there is no charset param then this will return null otherwise the type String. the charset value for the MIME type



getPrimary
public String getPrimary()(Code)
This is used to retrive the type of this MIME type. The type part within the MIME type defines the generic type. For example type/subtype;param1=value1. This will return the value of the type part. If there is no type part then this will return null otherwise the type String. the type part of the MIME type



getSecondary
public String getSecondary()(Code)
This is used to retrive the subtype of this MIME type. The subtype part within the MIME type defines the specific type. For example type/subtype;param1=value1. This will return the value of the subtype part. If there is no subtype part then this will return null otherwise the type String. the subtype part of the MIME type



setCharset
public void setCharset(String charset)(Code)
This will set the charset to whatever value is in the String object. If the String object is null then this toString method will not contain the charset.

If charset is null then the toString method will be type/subtype. If the charset value is non-null this will contain the charset parameter with that value.
Parameters:
  charset - the value to add to the MIME type




setPrimary
public void setPrimary(String type)(Code)
This sets the type to whatever value is in the String object. If the String object is null the this object's toString method will contain the value null.

If type is null then the toString method will be null/subtype;param=value. If the type is non-null this will contain the value of the String.
Parameters:
  type - the type to add to the MIME type




setSecondary
public void setSecondary(String type)(Code)
Sets the subtype to whatever value is in the String object. If the String object is null the this object's toString method will contain the value null.

If subtype is null then the toString method will be type/null;param=value. If the type is non-null this will contain the value of the String.
Parameters:
  type - the type to add to the MIME type




toString
public String toString()(Code)
This will return the String value of the MIME type. This will return the MIME type with the type, subtype and if there is a charset value specified then a charset parameter.

The charset parameter is an optional parameter to the MIME type. An example a MIME type is type/subtype; charset=value. If the type or subtype is null then the MIME type will be wither null/subtype, type/null or if both are null null/null. the String representation of the MIME type




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