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

xy.reflect.ui.info.ValueReturnMode Maven / Gradle / Ivy

package xy.reflect.ui.info;

import java.util.Arrays;
import java.util.Collections;

public enum ValueReturnMode {
	DIRECT_OR_PROXY, CALCULATED, INDETERMINATE;

	public static ValueReturnMode combine(ValueReturnMode parent, ValueReturnMode child) {
		return Collections.max(Arrays.asList(parent, child));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy