コード例 #1
0
ファイル: Constants.java プロジェクト: Amsoft-Systems/gitblit
 public boolean atLeast(AccessRestrictionType type) {
   return this.ordinal() >= type.ordinal();
 }
コード例 #2
0
ファイル: Constants.java プロジェクト: Amsoft-Systems/gitblit
 public boolean exceeds(AccessRestrictionType type) {
   return this.ordinal() > type.ordinal();
 }