LongField.java

10 lines | 160 B Blame History Raw Download
package com.shopizer.search.services.field;

public class LongField extends Field {
	
	public Long getValue() {
		return (Long)super.getValue();
	}

}