-
Fields in MySTARS declared as AU
Modifier and Type |
Field |
Description |
private AU |
Course.acadUnits |
Number of AUs credited for passing the course (default = 1).
|
Methods in MySTARS that return AU
Modifier and Type |
Method |
Description |
static AU |
AU.getAU(int acadUnit) |
A helper method that converts an input integer value to the appropriate AU value.
|
AU |
Course.getCourseAU() |
Return the number of AUs credited upon completion of the Course.
|
static AU |
AU.valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AU[] |
AU.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Methods in MySTARS with parameters of type AU
Modifier and Type |
Method |
Description |
private void |
Student.addAU(AU acadUnits) |
Adds the specified number of AU s to the student's registered AUs.
|
private void |
Student.removeAU(AU acadUnits) |
Removes the specified number of AU s from the student's registered AUs.
|
void |
Course.setCourseAU(AU acadUnits) |
Set the number of AUs to be credited upon completion of the Course.
|
Constructors in MySTARS with parameters of type AU
Constructor |
Description |
Course(java.lang.String courseCode,
java.lang.String courseName,
AU acadUnits) |
Constructor for course object, to be created without a description, school and course status.
|
Course(java.lang.String courseCode,
java.lang.String courseName,
AU acadUnits,
java.lang.String description,
java.lang.String school) |
Constructor for course object, to be created with a description and school, but without course status.
|
Course(java.lang.String courseCode,
java.lang.String courseName,
AU acadUnits,
java.lang.String description,
java.lang.String school,
CourseStatus courseStatus) |
Constructor for course object, to be created with a description, school and course status.
|
Course(java.lang.String courseCode,
java.lang.String courseName,
AU acadUnits,
java.lang.String description,
java.lang.String school,
CourseStatus courseStatus,
CourseIndex courseIndex) |
Constructor for course object, creates course with description, school, course status, and an initial course index.
|