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

org.mentalog.config.ByteArrayConfigParam Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.mentalog.config;

public class ByteArrayConfigParam extends ConfigParam {

	public ByteArrayConfigParam(String name, byte[] defValue) {
		super(name, defValue);
	}

	@Override
	protected byte[] parseString(String s) {
		return s.getBytes();
	}

	public byte[] bytes() {
		return value();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy