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