FieldAccess enum

Field accessibility information.

Inheritance

Constructors

FieldAccess()
const

Values

privateScope → const FieldAccess

Specifies that the field cannot be referenced.

private → const FieldAccess

Specifies that the field is accessible only by its parent type.

familyAndAssembly → const FieldAccess

Specifies that the field is accessible by derived classes in its assembly.

assembly → const FieldAccess

Specifies that the field is accessible by all types in its assembly.

family → const FieldAccess

Specifies that the field is accessible only by its type and derived classes.

familyOrAssembly → const FieldAccess

Specifies that the field is accessible by derived classes and by all types in its assembly.

public → const FieldAccess

Specifies that the field is accessible by all types with visibility of this scope.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<FieldAccess>
A constant List of the values in this enum, in order of their declaration.