blob: cc42eb255daab99a97081fcac900bc249b0a1c72 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.commons.imaging.common;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Arrays;
public class BinaryConstant implements Cloneable {
private final byte[] value;
public BinaryConstant(byte[] value) {
this.value = value.clone();
}
@Override
public BinaryConstant clone() throws CloneNotSupportedException {
return (BinaryConstant) super.clone();
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (!(obj instanceof BinaryConstant)) {
return false;
}
BinaryConstant other = (BinaryConstant)obj;
return equals(other.value);
}
public boolean equals(byte[] bytes) {
return Arrays.equals(value, bytes);
}
public boolean equals(byte[] bytes, int offset, int length) {
if (value.length != length) {
return false;
}
for (int i = 0; i < length; i++) {
if (value[i] != bytes[offset + i]) {
return false;
}
}
return true;
}
@Override
public int hashCode() {
return Arrays.hashCode(value);
}
public byte get(int i) {
return value[i];
}
public int size() {
return value.length;
}
public byte[] toByteArray() {
return value.clone();
}
public void writeTo(OutputStream os) throws IOException {
for (int i = 0; i < value.length; i++) {
os.write(value[i]);
}
}
}