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

com.thegoate.logging.volume.amp.ObjectAmplifier Maven / Gradle / Ivy

package com.thegoate.logging.volume.amp;

import com.thegoate.annotations.IsDefault;

/**
 * Created by Eric Angeli on 7/1/2020.
 */
@GoateAmplifier
@IsDefault
public class ObjectAmplifier extends BasicAmplifier{

	public ObjectAmplifier(Object message) {
		super(message);
	}

	@Override
	public String amplify(Object message) {
		return message!=null?(""+message):null;
	}

	@Override
	public boolean isType(Object check) {
		return false;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy