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

org.dc.riot.lol.rx.service.interfaces.CSA Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.dc.riot.lol.rx.service.interfaces;

/**
 * CSA means Comma Separated Array
 * 
 * @author Dc
 * @since 1.0.0
 *
 * @param 
 */
class CSA {
	
	protected T[] array;
	
	@SafeVarargs
	CSA(T... ts) {
		this.array = ts;
	}

	@Override
	public String toString() {
		if (array != null && array.length > 0) {
			String value = array[0].toString();
			for (int i=1; i {
		Long(java.lang.Long... ls) {
			super(ls);
		}

		Long(long... primvs) {
			if (primvs != null) {
				array = new java.lang.Long[primvs.length];
				for (int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy