comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/base/Result.java @ 884:12f88239fb33

Updated Javadocs to the Listed Classes. Also done some Codecleanup and removed unused Methods from the Code. geo-backend/trunk@842 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 26 Mar 2010 15:23:03 +0000
parents 8aad9d098b08
children 8b442223741c
comparison
equal deleted inserted replaced
883:6d568397740c 884:12f88239fb33
12 * the Data of an ResultEntry 12 * the Data of an ResultEntry
13 * @author Tim Englich <tim.englich@intevation.de> 13 * @author Tim Englich <tim.englich@intevation.de>
14 * 14 *
15 */ 15 */
16 public interface Result extends Serializable{ 16 public interface Result extends Serializable{
17 17
18 /** 18 /**
19 * Returns the ResultDescriptor which provides the 19 * Returns the ResultDescriptor which provides the
20 * ResultMetadatse 20 * ResultMetadatse
21 * @return the ResultDescriptor 21 * @return the ResultDescriptor
22 */ 22 */
23 public ResultDescriptor getResultDescriptor(); 23 public ResultDescriptor getResultDescriptor();
24 24
25 /** 25 /**
26 * Returns the Columnvalue as a String 26 * Returns the Columnvalue as a String
27 * @param columnName the Name of the column 27 * @param columnName the Name of the column
28 * @return the Columnvalue as a String 28 * @return the Columnvalue as a String
29 */ 29 */
30 public String getString(String columnName); 30 public String getString(String columnName);
31 31
32 /**
33 * Returns the Columnvalue as a String
34 * @param column the Position of the Column that should be returned.
35 * @return the Columnvalue as a String
36 */
37 public String getString(int column);
32 38
33 public String getString(int column);
34
35 /** 39 /**
36 * Returns the Columnvalue as a Date 40 * Returns the Columnvalue as a Date
37 * @param columnName the Name of the column 41 * @param columnName the Name of the column
38 * @return the Columnvalue as a Date 42 * @return the Columnvalue as a Date
39 */ 43 */
40 public Date getDate(String columnName); 44 public Date getDate(String columnName);
41 45
46 /**
47 * Returns the Columnvalue as a Date
48 * @param column the Position of the Column that should be returned.
49 * @return the Columnvalue as a Date
50 */
42 public Date getDate(int column); 51 public Date getDate(int column);
43 52
44 /** 53 /**
45 * Returns the Columnvalue as a Integer 54 * Returns the Columnvalue as a Integer
46 * @param columnName the Name of the column 55 * @param columnName the Name of the column
47 * @return the Columnvalue as a Integer 56 * @return the Columnvalue as a Integer
48 */ 57 */
49 public Integer getInteger(String columnName); 58 public Integer getInteger(String columnName);
50 59
60 /**
61 * Returns the Columnvalue as a Integer
62 * @param column the Position of the Column that should be returned.
63 * @return the Columnvalue as a Integer
64 */
51 public Integer getInteger(int column); 65 public Integer getInteger(int column);
52 66
53 /** 67 /**
54 * Returns the Columnvalue as a Float 68 * Returns the Columnvalue as a Float
55 * @param columnName the Name of the column 69 * @param columnName the Name of the column
56 * @return the Columnvalue as a Float 70 * @return the Columnvalue as a Float
57 */ 71 */
58 public Float getFloat(String columnName); 72 public Float getFloat(String columnName);
59 73
74 /**
75 * Returns the Columnvalue as a Float
76 * @param column the Position of the Column that should be returned.
77 * @return the Columnvalue as a Float
78 */
60 public Float getFloat(int column); 79 public Float getFloat(int column);
61 80
62 /** 81 /**
63 * Returns the Columnvalue as a Double 82 * Returns the Columnvalue as a Double
64 * @param columnName the Name of the column 83 * @param columnName the Name of the column
65 * @return the Columnvalue as a Double 84 * @return the Columnvalue as a Double
66 */ 85 */
67 public Double getDouble(String columnName); 86 public Double getDouble(String columnName);
68 87
88 /**
89 * Returns the Columnvalue as a Double
90 * @param column the Position of the Column that should be returned.
91 * @return the Columnvalue as a Double
92 */
69 public Double getDouble(int column); 93 public Double getDouble(int column);
70 94
71 /** 95 /**
72 * Returns the Columnvalue as a Object 96 * Returns the Columnvalue as a Object
73 * @param columnName the Name of the column 97 * @param columnName the Name of the column
74 * @return the Columnvalue as a Object 98 * @return the Columnvalue as a Object
75 */ 99 */
76 public Object getObject(String columnName); 100 public Object getObject(String columnName);
77 101
102 /**
103 * Returns the Columnvalue as a Object
104 * @param column the Position of the Column that should be returned.
105 * @return the Columnvalue as a Object
106 */
78 public Object getObject(int column); 107 public Object getObject(int column);
79 108
80 /** 109 /**
81 * Adds an new Coumnvalue to the Result. 110 * Adds an new Coumnvalue to the Result.
82 * @param columnName the Name of the Column 111 * @param columnName the Name of the Column
83 * @param value the Value of the Column 112 * @param value the Value of the Column
84 */ 113 */

http://dive4elements.wald.intevation.org