-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathObjectStreamField.php
More file actions
136 lines (124 loc) Β· 3.95 KB
/
ObjectStreamField.php
File metadata and controls
136 lines (124 loc) Β· 3.95 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\io;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
// use PHPJava\Packages\java\lang\Comparable;
/**
* The `ObjectStreamField` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class ObjectStreamField extends Object_ // implements Comparable
{
/**
* Compare this field with another ObjectStreamField.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#compareTo
* @param null|mixed $a
* @throws NotImplementedException
*/
public function compareTo($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Get the name of this field.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getName
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Offset of field within instance data.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getOffset
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getOffset($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Get the type of the field.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getType
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getType($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns character encoding of field type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getTypeCode
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getTypeCode($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Return the JVM type signature.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getTypeString
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getTypeString($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Return true if this field has a primitive type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#isPrimitive
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isPrimitive($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns boolean value indicating whether or not the serializable field represented by this ObjectStreamField instance is unshared.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#isUnshared
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isUnshared($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Offset within instance data.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#setOffset
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function setOffset($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Return a string that describes this field.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#toString
* @param null|mixed $a
* @throws NotImplementedException
*/
public function toString($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}