All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kuangkie.ops.RecordOps Maven / Gradle / Ivy

The newest version!
package com.kuangkie.ops;

import java.util.Collection;
import java.util.Map;

import com.kuangkie.common.FGOSerializable;
import com.kuangkie.rrc.record.FGAttribute;
import com.kuangkie.rrc.record.FGLeafRecord;

public interface RecordOps extends FGOSerializable{

	Collection getOpsAttributes();

	Map getAddedBytesMap();

	byte[] getAddedBytes(String bytesKey);

	FGAttribute getOpsAttribute(String attrName);

	Collection getOpsLeafNames();

	Collection getOpsLeafs(String name);

	Collection getAllOpsLeaf();

	FGLeafRecord getOpsLeaf(String code);

	Collection getAddedLeafNames();

	Collection getAddedLeafs(String name);

	FGLeafRecord getAddedLeaf(String code);

	Collection getAllAddedLeaf();

	Collection getRemovedLeafNames();

	Collection getRemovedLeafs(String name);

	String getRecordCode();

	String getRecordName();

	boolean isValuable();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy