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

org.unlaxer.jaddress.parser.ListIndex Maven / Gradle / Ivy

package org.unlaxer.jaddress.parser;

import org.unlaxer.jaddress.model.IntegerValue;

public class ListIndex  extends IntegerValue{

	private static final long serialVersionUID = 2142036429340539893L;
	
	public ListIndex(int value) {
		super(value);
	}
	
	public static ListIndex of(int index) {
		return new ListIndex(index);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy