/edu/uncc/parsets/data/DataType.java

https://code.google.com/p/parsets/ · Java · 69 lines · 17 code · 7 blank · 45 comment · 6 complexity · 5ca0f61633d28bd4a605836ee522c135 MD5 · raw file

  1. package edu.uncc.parsets.data;
  2. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
  3. * Copyright (c) 2009, Robert Kosara, Caroline Ziemkiewicz,
  4. * and others (see Authors.txt for full list)
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. *
  10. * * Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * * Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * * Neither the name of UNC Charlotte nor the names of its contributors
  16. * may be used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY ITS AUTHORS ''AS IS'' AND ANY
  20. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  21. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. * DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
  23. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  24. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  25. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  26. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  28. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  30. /**
  31. * The type of data per dimension. Each DimensionDescriptor know its data type, so we can treat it
  32. * correctly.
  33. *
  34. */
  35. public enum DataType {
  36. /**
  37. * Categorical data. The values are read and treated as strings, and there are only a few of them.
  38. * There is no inherent ordering.
  39. */
  40. categorical,
  41. /**
  42. * Numerical data. This type of data is continuous, and there are many different values. The data
  43. * is treated as floats internally, even if they really are integers, to keep things simpler.
  44. */
  45. numerical,
  46. /**
  47. * Textual data. This is similar to categorical, but there are more strings and we treat them as
  48. * text, so there is a possible ordering.
  49. */
  50. textual;
  51. public static final String dataTypeNames[] = {"Categories", "Numbers", "Text"};
  52. public static DataType typeFromString(String typeString) {
  53. if (typeString.equals("categorical"))
  54. return categorical;
  55. else if (typeString.equals("int") || typeString.equals("float"))
  56. return numerical;
  57. else if (typeString.equals("text"))
  58. return textual;
  59. else
  60. return null;
  61. }
  62. }