de.sayayi.lib.message.part.parameter.key.ConfigKeyString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of message-format Show documentation
Show all versions of message-format Show documentation
Highly configurable message format library supporting message definition through annotations
The newest version!
/*
* Copyright 2020 Jeroen Gremmen
*
* 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
*
* https://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 de.sayayi.lib.message.part.parameter.key;
import de.sayayi.lib.message.pack.PackInputStream;
import de.sayayi.lib.message.pack.PackOutputStream;
import org.jetbrains.annotations.Contract;
import org.jetbrains.annotations.NotNull;
import java.io.IOException;
import static de.sayayi.lib.message.part.parameter.key.ConfigKey.CompareType.EQ;
import static java.util.Objects.requireNonNull;
/**
* @author Jeroen Gremmen
* @since 0.4.0 (renamed in 0.8.0)
*/
public final class ConfigKeyString implements ConfigKey
{
/** Configuration string key comparison type. */
private final @NotNull CompareType compareType;
/** Configuration key string. */
private final @NotNull String string;
/**
* Constructs a configuration key string.
*
* @param string configuration key string, not {@code null}
*
* @since 0.10.0
*/
public ConfigKeyString(@NotNull String string) {
this(EQ, string);
}
/**
* Constructs a configuration key string with comparison type.
*
* @param compareType configuration key comparison type, not {@code null}
* @param string configuration key string, not {@code null}
*/
public ConfigKeyString(@NotNull CompareType compareType, @NotNull String string)
{
this.compareType = requireNonNull(compareType, "compareType must not be null");
this.string = requireNonNull(string, "string must not be null");
}
@Override
public @NotNull CompareType getCompareType() {
return compareType;
}
/**
* Returns the config key string value.
*
* @return config key string value, never {@code null}
*/
@Contract(pure = true)
public @NotNull String getString() {
return string;
}
/**
* {@inheritDoc}
*
* @return always {@link Type#STRING Type#STRING}
*/
@Override
public @NotNull Type getType() {
return Type.STRING;
}
@Override
public boolean equals(Object o)
{
if (!(o instanceof ConfigKeyString))
return false;
final ConfigKeyString that = (ConfigKeyString)o;
return compareType == that.compareType && string.equals(that.string);
}
@Override
public int hashCode() {
return (59 + compareType.hashCode()) * 59 + string.hashCode();
}
@Override
public String toString() {
return compareType.asPrefix() + '\'' + string.replace("'", "\\'") + '\'';
}
/**
* @param packStream data output pack target
*
* @throws IOException if an I/O error occurs
*
* @since 0.8.0
*
* @hidden
*/
@SuppressWarnings("JavadocDeclaration")
public void pack(@NotNull PackOutputStream packStream) throws IOException
{
packStream.writeEnum(compareType);
packStream.writeString(string);
}
/**
* @param packStream source data input, not {@code null}
*
* @return unpacked string map key, never {@code null}
*
* @throws IOException if an I/O error occurs
*
* @since 0.8.0
*
* @hidden
*/
@SuppressWarnings("JavadocDeclaration")
public static @NotNull ConfigKeyString unpack(@NotNull PackInputStream packStream) throws IOException
{
return new ConfigKeyString(packStream.readEnum(CompareType.class),
requireNonNull(packStream.readString()));
}
}