QueryType.java

  1. /*
  2.  * Copyright 2017 greg.
  3.  *
  4.  * This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
  5.  * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/
  6.  * or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
  7.  *
  8.  * You are free to:
  9.  *     Share - copy and redistribute the material in any medium or format
  10.  *     Adapt - remix, transform, and build upon the material
  11.  *
  12.  *     The licensor cannot revoke these freedoms as long as you follow the license terms.              
  13.  *     Under the following terms:
  14.  *                
  15.  *         Attribution -
  16.  *             You must give appropriate credit, provide a link to the license, and indicate if changes were made.
  17.  *             You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  18.  *         NonCommercial -
  19.  *             You may not use the material for commercial purposes.
  20.  *         ShareAlike -
  21.  *             If you remix, transform, or build upon the material,
  22.  *             you must distribute your contributions under the same license as the original.
  23.  *         No additional restrictions -
  24.  *             You may not apply legal terms or technological measures that legally restrict others from doing anything the
  25.  *             license permits.
  26.  *
  27.  * Check the Creative Commons website for any details, legalese, and updates.
  28.  */
  29. package nz.co.gregs.dbvolution.internal.query;

  30. /**
  31.  *
  32.  * @author greg
  33.  */
  34. public enum QueryType {

  35.     COUNT,
  36.     SELECT,
  37.     REVERSESELECT,
  38.     ROWSFORPAGE,
  39.     GENERATESQLFORSELECT,
  40.     GENERATESQLFORCOUNT,
  41.     SELECTFROMRAWSQL
  42. };