blob: 732247e02577f2bf7019ccf24b82998c5a81c5fe [file] [log] [blame]
package org.apache.beam.sdk.extensions.sql.meta;
public enum ProjectSupport {
NONE,
WITHOUT_FIELD_REORDERING,
WITH_FIELD_REORDERING;
public boolean isSupported() {
return !this.equals(NONE);
}
public boolean withFieldReordering() {
return this.equals(WITH_FIELD_REORDERING);
}
}