PageRenderTime 41ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/lib/docs/enum/docs/api/index-all.html

http://mp-rechnungs-und-kundenverwaltung.googlecode.com/
HTML | 173 lines | 161 code | 6 blank | 6 comment | 0 complexity | 92f4bcdd99dba9f45bedfd4d6883eea4 MD5 | raw file
Possible License(s): LGPL-3.0, Apache-2.0, GPL-3.0, GPL-2.0, AGPL-3.0, JSON, BSD-3-Clause
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
  2. <!--NewPage-->
  3. <HTML>
  4. <HEAD>
  5. <!-- Generated by javadoc on Sat May 19 22:22:59 EDT 2001 -->
  6. <TITLE>
  7. Flexible Enums in Java (Version 0.1-dev): Index
  8. </TITLE>
  9. <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
  10. </HEAD>
  11. <BODY BGCOLOR="white">
  12. <!-- ========== START OF NAVBAR ========== -->
  13. <A NAME="navbar_top"><!-- --></A>
  14. <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
  15. <TR>
  16. <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
  17. <A NAME="navbar_top_firstrow"><!-- --></A>
  18. <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  19. <TR ALIGN="center" VALIGN="top">
  20. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  21. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  22. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="com/plotnix/enum/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  23. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  24. <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  25. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  26. </TR>
  27. </TABLE>
  28. </TD>
  29. <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
  30. </EM>
  31. </TD>
  32. </TR>
  33. <TR>
  34. <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  35. &nbsp;PREV&nbsp;
  36. &nbsp;NEXT</FONT></TD>
  37. <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  38. <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp;
  39. &nbsp;<A HREF="index-all.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
  40. </TR>
  41. </TABLE>
  42. <!-- =========== END OF NAVBAR =========== -->
  43. <A HREF="#_C_">C</A> <A HREF="#_E_">E</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <HR>
  44. <A NAME="_C_"><!-- --></A><H2>
  45. <B>C</B></H2>
  46. <DL>
  47. <DT><A HREF="com/plotnix/enum/package-summary.html"><B>com.plotnix.enum</B></A> - package com.plotnix.enum<DD>&nbsp;</DL>
  48. <HR>
  49. <A NAME="_E_"><!-- --></A><H2>
  50. <B>E</B></H2>
  51. <DL>
  52. <DT><A HREF="com/plotnix/enum/Enum.html"><B>Enum</B></A> - class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>.<DD>Enum represents a value characterized by the following properties:
  53. It has an integer value that uniquely identifies it among
  54. other Enums belonging to the same class.<DT><A HREF="com/plotnix/enum/Enum.html#Enum()"><B>Enum()</B></A> -
  55. Constructor for class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  56. <DD>Initialize the Enum, using default integer and string values.
  57. <DT><A HREF="com/plotnix/enum/Enum.html#enum(java.lang.Class)"><B>enum(Class)</B></A> -
  58. Static method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  59. <DD>Returns an array of all Enums of the specified class in the order
  60. they were created.
  61. <DT><A HREF="com/plotnix/enum/Enum.html#enum(java.lang.Class, int)"><B>enum(Class, int)</B></A> -
  62. Static method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  63. <DD>Returns the Enum of the specified class that has the specified integer value,
  64. or null if there is no such Enum.
  65. <DT><A HREF="com/plotnix/enum/Enum.html#enum(java.lang.Class, java.lang.String)"><B>enum(Class, String)</B></A> -
  66. Static method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  67. <DD>Returns the Enum of the specified class that has the specified st,
  68. or null if there is no such Enum.
  69. <DT><A HREF="com/plotnix/enum/Enum.html#Enum(int)"><B>Enum(int)</B></A> -
  70. Constructor for class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  71. <DD>Initialize the Enum with an integer value.
  72. <DT><A HREF="com/plotnix/enum/Enum.html#Enum(int, java.lang.String)"><B>Enum(int, String)</B></A> -
  73. Constructor for class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  74. <DD>Initialize the Enum with an integer value and a default label.
  75. <DT><A HREF="com/plotnix/enum/Enum.html#Enum(java.lang.String)"><B>Enum(String)</B></A> -
  76. Constructor for class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  77. <DD>Initialize the Enum with a string value.
  78. <DT><A HREF="com/plotnix/enum/Enum.html#Enum(java.lang.String, java.lang.String)"><B>Enum(String, String)</B></A> -
  79. Constructor for class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  80. <DD>Initialize the Enum with a string value and a default label.
  81. </DL>
  82. <HR>
  83. <A NAME="_I_"><!-- --></A><H2>
  84. <B>I</B></H2>
  85. <DL>
  86. <DT><A HREF="com/plotnix/enum/Enum.html#initIntegerEnum(java.lang.Class)"><B>initIntegerEnum(Class)</B></A> -
  87. Static method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  88. <DD>&nbsp;
  89. <DT><A HREF="com/plotnix/enum/Enum.html#intValue()"><B>intValue()</B></A> -
  90. Method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  91. <DD>Returns the Enum's integer value.
  92. </DL>
  93. <HR>
  94. <A NAME="_L_"><!-- --></A><H2>
  95. <B>L</B></H2>
  96. <DL>
  97. <DT><A HREF="com/plotnix/enum/Enum.html#loadEnum(java.lang.Class)"><B>loadEnum(Class)</B></A> -
  98. Static method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  99. <DD>Loads properties from an <i>enumClass</i>.properties resource file.
  100. <DT><A HREF="com/plotnix/enum/Enum.html#loadIntegerEnum(java.lang.Class)"><B>loadIntegerEnum(Class)</B></A> -
  101. Static method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  102. <DD>Loads properties from an <i>enumClass</i>.properties resource file.
  103. </DL>
  104. <HR>
  105. <A NAME="_R_"><!-- --></A><H2>
  106. <B>R</B></H2>
  107. <DL>
  108. <DT><A HREF="com/plotnix/enum/Enum.html#readResolve()"><B>readResolve()</B></A> -
  109. Method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  110. <DD>Ensures uniqueness of Enums during deserialization.
  111. </DL>
  112. <HR>
  113. <A NAME="_S_"><!-- --></A><H2>
  114. <B>S</B></H2>
  115. <DL>
  116. <DT><A HREF="com/plotnix/enum/Enum.html#stringValue()"><B>stringValue()</B></A> -
  117. Method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  118. <DD>Returns the string value of this Enum.
  119. </DL>
  120. <HR>
  121. <A NAME="_T_"><!-- --></A><H2>
  122. <B>T</B></H2>
  123. <DL>
  124. <DT><A HREF="com/plotnix/enum/Enum.html#toString()"><B>toString()</B></A> -
  125. Method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  126. <DD>Returns this Enum's human readable description in the default locale.
  127. <DT><A HREF="com/plotnix/enum/Enum.html#toString(java.util.Locale)"><B>toString(Locale)</B></A> -
  128. Method in class com.plotnix.enum.<A HREF="com/plotnix/enum/Enum.html">Enum</A>
  129. <DD>Returns this Enum's human readable description in the specified locale.
  130. </DL>
  131. <HR>
  132. <A HREF="#_C_">C</A> <A HREF="#_E_">E</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A>
  133. <!-- ========== START OF NAVBAR ========== -->
  134. <A NAME="navbar_bottom"><!-- --></A>
  135. <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
  136. <TR>
  137. <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
  138. <A NAME="navbar_bottom_firstrow"><!-- --></A>
  139. <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  140. <TR ALIGN="center" VALIGN="top">
  141. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  142. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  143. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="com/plotnix/enum/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  144. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  145. <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  146. <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  147. </TR>
  148. </TABLE>
  149. </TD>
  150. <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
  151. </EM>
  152. </TD>
  153. </TR>
  154. <TR>
  155. <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  156. &nbsp;PREV&nbsp;
  157. &nbsp;NEXT</FONT></TD>
  158. <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  159. <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp;
  160. &nbsp;<A HREF="index-all.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
  161. </TR>
  162. </TABLE>
  163. <!-- =========== END OF NAVBAR =========== -->
  164. <HR>
  165. Copyright (c) 2001 - PLOTNIX, Inc
  166. </BODY>
  167. </HTML>