Skip to content

Commit 88fb6ac

Browse files
Made some changes
1 parent 6677bc4 commit 88fb6ac

File tree

1 file changed

+20
-0
lines changed
  • Programming on Java Lab №6/src/Common/Data

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package Common.Data;
2+
3+
import java.io.Serializable;
4+
5+
/**
6+
* Created by IntelliJ IDEA.
7+
* Author: Behruz Mansurov
8+
*/
9+
public enum Status implements Serializable {
10+
FIRED,
11+
HIRED,
12+
RECOMMENDED_FOR_PROMOTION,
13+
REGULAR,
14+
PROBATION;
15+
16+
static final long serialVersionUID = 7211001911511381179L;
17+
18+
Status() {
19+
}
20+
}

0 commit comments

Comments
 (0)