net.openhft.chronicle.bytes.HexDumpBytesDescription Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2016-2022 chronicle.software
*
* https://chronicle.software
*
* 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.
*/
package net.openhft.chronicle.bytes;
import net.openhft.chronicle.core.io.ClosedIllegalStateException;
import net.openhft.chronicle.core.io.ThreadingIllegalStateException;
import static net.openhft.chronicle.core.Jvm.uncheckedCast;
/**
* This interface is for additional description to be added to HexDumpBytes
*/
public interface HexDumpBytesDescription> {
/**
* Do these Bytes support saving comments as descriptions for fields.
*
* @return true if comments are for field descriptions
*/
default boolean retainedHexDumpDescription() {
return false;
}
/**
* Add comment as appropriate for the toHexString format
*
* @param comment to add (or ignore)
* @return this
* @throws ClosedIllegalStateException If the resource has been released or closed.
* @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way
*/
default B writeHexDumpDescription(CharSequence comment)
throws ClosedIllegalStateException, ThreadingIllegalStateException {
return uncheckedCast(this);
}
/**
* Adjust the indent for nested data
*
* @param n +1 indent in, -1 reduce indenting
* @return this.
*/
default B adjustHexDumpIndentation(int n)
throws IllegalStateException {
return uncheckedCast(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy