#
vincentlu
2026-04-07 844f7fd6325ef5c37465b9e48318fbd608ffe42c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.acs.common.enums;
 
public enum ClockwiseType {
 
    CW(1),
    CCW(0),
    ;
 
    public final int value;
 
    ClockwiseType(int value) {
        this.value = value;
    }
 
}