cn.wjybxx.dson.DsonHeader Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2023-2024 wjybxx([email protected])
*
* 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 cn.wjybxx.dson;
import javax.annotation.Nonnull;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* 1.Header不可以再持有header,否则陷入死循环
* 2.Header的结构应该是简单清晰的,可简单编解码
*
* @author wjybxx
* date - 2023/5/27
*/
@SuppressWarnings("unused")
public class DsonHeader extends AbstractDsonObject {
public DsonHeader() {
this(new LinkedHashMap<>(4));
}
public DsonHeader(Map valueMap) {
super(new LinkedHashMap<>(valueMap));
}
@Nonnull
@Override
public final DsonType getDsonType() {
return DsonType.HEADER;
}
/** @return this */
@Override
public DsonHeader append(K key, DsonValue value) {
put(key, value);
return this;
}
@Override
public String toString() {
return "DsonHeader{" +
"valueMap=" + valueMap +
'}';
}
// header常见属性名
public static final String NAMES_CLASS_NAME = "clsName";
public static final String NAMES_LOCAL_ID = "localId";
}