forked from brianfrankcooper/YCSB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[core] Fix checkstyle for Core miscellaneous (brianfrankcooper#901)
- Loading branch information
Showing
17 changed files
with
1,003 additions
and
1,029 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
88 changes: 46 additions & 42 deletions
88
core/src/main/java/com/yahoo/ycsb/ByteArrayByteIterator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,56 @@ | ||
/** | ||
* Copyright (c) 2010 Yahoo! Inc. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you | ||
* may not use this file except in compliance with the License. You | ||
* may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
* implied. See the License for the specific language governing | ||
* permissions and limitations under the License. See accompanying | ||
* LICENSE file. | ||
/** | ||
* Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you | ||
* may not use this file except in compliance with the License. You | ||
* may obtain a copy of the License at | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
* implied. See the License for the specific language governing | ||
* permissions and limitations under the License. See accompanying | ||
* LICENSE file. | ||
*/ | ||
package com.yahoo.ycsb; | ||
|
||
/** | ||
* A ByteIterator that iterates through a byte array. | ||
*/ | ||
public class ByteArrayByteIterator extends ByteIterator { | ||
byte[] str; | ||
int off; | ||
final int len; | ||
public ByteArrayByteIterator(byte[] s) { | ||
this.str = s; | ||
this.off = 0; | ||
this.len = s.length; | ||
} | ||
private byte[] str; | ||
private int off; | ||
private final int len; | ||
|
||
public ByteArrayByteIterator(byte[] s) { | ||
this.str = s; | ||
this.off = 0; | ||
this.len = s.length; | ||
} | ||
|
||
public ByteArrayByteIterator(byte[] s, int off, int len) { | ||
this.str = s; | ||
this.off = off; | ||
this.len = off + len; | ||
} | ||
public ByteArrayByteIterator(byte[] s, int off, int len) { | ||
this.str = s; | ||
this.off = off; | ||
this.len = off + len; | ||
} | ||
|
||
@Override | ||
public boolean hasNext() { | ||
return off < len; | ||
} | ||
@Override | ||
public boolean hasNext() { | ||
return off < len; | ||
} | ||
|
||
@Override | ||
public byte nextByte() { | ||
byte ret = str[off]; | ||
off++; | ||
return ret; | ||
} | ||
@Override | ||
public byte nextByte() { | ||
byte ret = str[off]; | ||
off++; | ||
return ret; | ||
} | ||
|
||
@Override | ||
public long bytesLeft() { | ||
return len - off; | ||
} | ||
@Override | ||
public long bytesLeft() { | ||
return len - off; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.