CourseType enum
Course type for graduation credit requirements (課程標準).
Symbols indicate both the credit category and whether it's required/elective:
- Shape: ○● (Dept), △▲ (University), ☆★ (Elective)
- Fill: Empty (Common), Filled (Major)
Values
- deptCommonRequired → const CourseType
-
○ Dept. Common Required Credits (系共同必修).
const CourseType('○') - universityCommonRequired → const CourseType
-
△ University Common Required Credits (校共同必修).
const CourseType('△') - commonElective → const CourseType
-
☆ Common Elective Credits (共同選修).
const CourseType('☆') - deptMajorRequired → const CourseType
-
● Dept. Major Required Credits (系專業必修).
const CourseType('●') - universityMajorRequired → const CourseType
-
▲ University Major Required Credits (校專業必修).
const CourseType('▲') - majorElective → const CourseType
-
★ Major Elective Credits (專業選修).
const CourseType('★')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- symbol → String
-
The symbol used on the syllabus page (修 column).
final
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<
CourseType> - A constant List of the values in this enum, in order of their declaration.