ARFFAttributes class

Represents an attribute in an ARFF (Attribute-Relation File Format) file.

This class stores information about a specific attribute, including its name, type, and, if applicable, its nominal values.

Constructors

ARFFAttributes(String name, String type, [List<String>? nominalValues])
Creates an ARFF attribute with the given name, type, and optional nominalValues.

Properties

hashCode int
The hash code for this object.
no setterinherited
name String
The name of the attribute.
final
nominalValues List<String>?
A list of nominal values if the attribute type is 'nominal'.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String
The type of the attribute (e.g., 'numeric', 'nominal').
final

Methods

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

Operators

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