-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathData.java
42 lines (30 loc) · 1.1 KB
/
Data.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Abstract Layer for Accessing Data Item
//
public abstract class Data {
protected Object value;
// Default constructor
public Data() {
}
// Method for getting the data type
public abstract String Type();
// Method of getting the size of the data type
public abstract Integer Size();
// Method for getting the value of the data item
public abstract Object Get();
// Method for setting the value of the data item
public abstract void Set( Object v );
// Method for string representation of the data item
public abstract String AsString();
// Method for equal operator for data type
public abstract boolean EQ( Object v );
// Method for not equal operator for data type
public abstract boolean NE( Object v );
// Method for less than operator for data type
public abstract boolean LT( Object v );
// Method for greater than operator for data type
public abstract boolean GT( Object v );
// Method for less than or equal operator for data type
public abstract boolean LE( Object v );
// Method for greater than or equal operator for data type
public abstract boolean GE( Object v );
}