RLPark 1.0.0
Reinforcement Learning Framework in Java

DropEndBit.java

Go to the documentation of this file.
00001 package rlpark.plugin.robot.internal.disco.drops;
00002 
00003 import rlpark.plugin.robot.internal.sync.LiteByteBuffer;
00004 
00005 
00006 
00007 public class DropEndBit extends DropData {
00008   public DropEndBit(String label) {
00009     super(label, true);
00010   }
00011 
00012   @Override
00013   public DropData clone(String label, int index) {
00014     return new DropEndBit(label);
00015   }
00016 
00017   @Override
00018   public void putData(LiteByteBuffer buffer) {
00019   }
00020 
00021   @Override
00022   public int size() {
00023     return ByteSize;
00024   }
00025 
00026 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark