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

org.jooq.conf.RenderImplicitWindowRange Maven / Gradle / Ivy


package org.jooq.conf;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for RenderImplicitWindowRange. * *

The following schema fragment specifies the expected content contained within this class. *

 * <simpleType name="RenderImplicitWindowRange">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="OFF"/>
 *     <enumeration value="ROWS_UNBOUNDED_PRECEDING"/>
 *     <enumeration value="ROWS_ALL"/>
 *     <enumeration value="RANGE_UNBOUNDED_PRECEDING"/>
 *     <enumeration value="RANGE_ALL"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "RenderImplicitWindowRange") @XmlEnum public enum RenderImplicitWindowRange { OFF, ROWS_UNBOUNDED_PRECEDING, ROWS_ALL, RANGE_UNBOUNDED_PRECEDING, RANGE_ALL; public String value() { return name(); } public static RenderImplicitWindowRange fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy