Java Doc for Type.java in  » Workflow-Engines » obe-1.0 » org » obe » xpdl » model » data » 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 » obe 1.0 » org.obe.xpdl.model.data 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.obe.xpdl.model.data.Type

All known Subclasses:   org.obe.xpdl.model.data.EnumerationType,  org.obe.xpdl.model.data.DeclaredType,  org.obe.xpdl.model.data.ExternalReference,  org.obe.xpdl.model.data.BasicType,  org.obe.xpdl.model.data.MultiValuedType,  org.obe.xpdl.model.data.ComplexType,  org.obe.xpdl.model.data.SchemaType,
Type
public interface Type (Code)
Standard interface implemented by any data type.
author:
   Adrian Price


Field Summary
 intARRAY_TYPE
    
 intBOOLEAN_TYPE
     Basic boolean type.
 intDATETIME_TYPE
     Basic date/time type.
 intDECLARED_TYPE
     A reference to a Package-level TypeDeclaration. N.B.
 intDEFAULT_TYPE
     Preserves the existing type - use only when the type has already been assigned.
 intENUMERATION_TYPE
    
 intEXTERNAL_REFERENCE_TYPE
     An object whose definition is external (e.g., as a Java class).
 intFLOAT_TYPE
     Basic 64-bit signed double-precision type.
 intINTEGER_TYPE
     Basic 32-bit integer type.
 intLIST_TYPE
    
 intPERFORMER_TYPE
     Basic performer name type (basically a string).
 intRECORD_TYPE
    
 intREFERENCE_TYPE
    
 intSCHEMA_TYPE
     An XML document whose structure is defined by an XML Schema.
 intSTRING_TYPE
     Basic string type.
 intUNDEFINED_TYPE
     Indicates that the type is currently undefined.
 intUNION_TYPE
    


Method Summary
 TypegetImpliedType()
     Returns the actual type implied by this type.
 booleanisAssignableFrom(Type fromType)
     Checks type compatibility in an assignment.
Parameters:
  fromType - The type of the 'rvalue'.
 intvalue()
     The data type's ordinal value.

Field Detail
ARRAY_TYPE
int ARRAY_TYPE(Code)
Type.EXTERNAL_REFERENCE_TYPEType.SCHEMA_TYPE



BOOLEAN_TYPE
int BOOLEAN_TYPE(Code)
Basic boolean type.



DATETIME_TYPE
int DATETIME_TYPE(Code)
Basic date/time type.



DECLARED_TYPE
int DECLARED_TYPE(Code)
A reference to a Package-level TypeDeclaration. N.B. DECLARED_TYPE must not be used directly when setting attributes. It is always a reference to another type.



DEFAULT_TYPE
int DEFAULT_TYPE(Code)
Preserves the existing type - use only when the type has already been assigned.



ENUMERATION_TYPE
int ENUMERATION_TYPE(Code)
Type.EXTERNAL_REFERENCE_TYPEType.SCHEMA_TYPE



EXTERNAL_REFERENCE_TYPE
int EXTERNAL_REFERENCE_TYPE(Code)
An object whose definition is external (e.g., as a Java class).



FLOAT_TYPE
int FLOAT_TYPE(Code)
Basic 64-bit signed double-precision type.



INTEGER_TYPE
int INTEGER_TYPE(Code)
Basic 32-bit integer type.



LIST_TYPE
int LIST_TYPE(Code)
Type.EXTERNAL_REFERENCE_TYPEType.SCHEMA_TYPE



PERFORMER_TYPE
int PERFORMER_TYPE(Code)
Basic performer name type (basically a string).



RECORD_TYPE
int RECORD_TYPE(Code)
Type.EXTERNAL_REFERENCE_TYPEType.SCHEMA_TYPE



REFERENCE_TYPE
int REFERENCE_TYPE(Code)
Type.EXTERNAL_REFERENCE_TYPEType.SCHEMA_TYPE



SCHEMA_TYPE
int SCHEMA_TYPE(Code)
An XML document whose structure is defined by an XML Schema.



STRING_TYPE
int STRING_TYPE(Code)
Basic string type.



UNDEFINED_TYPE
int UNDEFINED_TYPE(Code)
Indicates that the type is currently undefined. This value is only returned by DeclaredType.value .



UNION_TYPE
int UNION_TYPE(Code)
Type.EXTERNAL_REFERENCE_TYPEType.SCHEMA_TYPE





Method Detail
getImpliedType
Type getImpliedType()(Code)
Returns the actual type implied by this type. Some types behave as references to other types. The implied type.



isAssignableFrom
boolean isAssignableFrom(Type fromType)(Code)
Checks type compatibility in an assignment.
Parameters:
  fromType - The type of the 'rvalue'. true if a value of type fromType canbe assigned or converted to a value of type toType.



value
int value()(Code)
The data type's ordinal value. Ordinal value: Type.STRING_TYPE, Type.FLOAT_TYPE,Type.INTEGER_TYPE, Type.REFERENCE_TYPE, Type.DATETIME_TYPE,Type.BOOLEAN_TYPE, Type.PERFORMER_TYPE, Type.DECLARED_TYPE,Type.SCHEMA_TYPE, Type.EXTERNAL_REFERENCE_TYPE,Type.RECORD_TYPE, Type.UNION_TYPE, Type.ENUMERATION_TYPE,Type.ARRAY_TYPE, Type.LIST_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.