コード例 #1
0
ファイル: ByteCount.java プロジェクト: nimbis/platformlayer
 public ByteCount minus(ByteCount b) {
   return new ByteCount(this.getTotalBytes() - b.getTotalBytes());
 }
コード例 #2
0
ファイル: ByteCount.java プロジェクト: nimbis/platformlayer
 public ByteCount add(ByteCount b) {
   return new ByteCount(this.getTotalBytes() + b.getTotalBytes());
 }
コード例 #3
0
ファイル: ByteCount.java プロジェクト: nimbis/platformlayer
 public static ByteCount min(ByteCount a, ByteCount b) {
   if (a.getTotalBytes() <= b.getTotalBytes()) return a;
   return b;
 }