Class DirectivesField
java.lang.Object
org.eolang.jeo.representation.directives.DirectivesField
- All Implemented Interfaces:
Iterable<org.xembly.Directive>
Field directives.
Any java field will be transformed into the following EO object.
[access descriptor signature value] > field
private final int bar = 1;
field 18 "I" "" "01" > bar
- Since:
- 0.1
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.DirectivesField
(int access, String name, String descriptor, String signature, Object value) Constructor.DirectivesField
(int access, String name, String descriptor, String signature, Object value, DirectivesAnnotations annotations) Constructor.DirectivesField
(DirectivesAnnotation... annotations) Constructor. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
DirectivesField
public DirectivesField()Constructor. -
DirectivesField
Constructor.- Parameters:
annotations
- Annotations.
-
DirectivesField
Constructor.- Parameters:
access
- Accessname
- Namedescriptor
- Descriptorsignature
- Signaturevalue
- Initial value
-
DirectivesField
public DirectivesField(int access, String name, String descriptor, String signature, Object value, DirectivesAnnotations annotations) Constructor.- Parameters:
access
- Access modifiersname
- Namedescriptor
- Descriptorsignature
- Signaturevalue
- Initial valueannotations
- Annotations
-
-
Method Details