8 lines
88 B
Java
8 lines
88 B
Java
package at.technikumwien.movies;
|
|
|
|
public enum Sex {
|
|
FEMALE,
|
|
MALE,
|
|
DIVERSE
|
|
}
|