FilterAttribute.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.data.filter;
00002
00003 import java.io.Serializable;
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 public class FilterAttribute implements Serializable
00015 {
00019 private static final long serialVersionUID = 1399047856674915771L;
00020
00021
00022
00023
00024
00025
00026
00027 static public enum Type {Inclusive, Exclusive};
00028
00029
00030
00031
00032
00033 public Boolean enable = true;
00034
00035
00036
00037
00038 public Type filterType = Type.Inclusive;
00039
00040
00041
00042
00043
00044
00045 public String getFilterType()
00046 {
00047 return filterType.name();
00048 }
00049
00050
00051
00052
00053
00054 public String toString()
00055 {
00056 return "(" + enable + "," + filterType + ")";
00057 }
00058 }