Package com.openstego.desktop.util.dwt
Class Filter
java.lang.Object
com.openstego.desktop.util.dwt.Filter
Object to store Filter data
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Constant for filter method = cutoffstatic final int
Constant for filter method = inv_cutoffstatic final int
Constant for filter method = inv_mirrorstatic final int
Constant for filter method = inv_periodicalstatic final int
Constant for filter method = mirror,inv_mirrorstatic final int
Constant for filter method = periodicalstatic final int
Constant for filter type = AntiSymmstatic final int
Constant for filter type = NoSymmstatic final int
Constant for filter type = Symm -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble[]
getData()
Get method for dataint
getEnd()
Get method for endint
getStart()
Get method for startint
getType()
Get method for typeboolean
isHiPass()
Get method for hiPassvoid
setData
(double[] data) Set method for datavoid
setEnd
(int end) Set method for endvoid
setHiPass
(boolean hiPass) Set method for hiPassvoid
setStart
(int start) Set method for startvoid
Set method for type
-
Field Details
-
TYPE_NOSYMM
public static final int TYPE_NOSYMMConstant for filter type = NoSymm- See Also:
-
TYPE_SYMM
public static final int TYPE_SYMMConstant for filter type = Symm- See Also:
-
TYPE_ANTISYMM
public static final int TYPE_ANTISYMMConstant for filter type = AntiSymm- See Also:
-
METHOD_CUTOFF
public static final int METHOD_CUTOFFConstant for filter method = cutoff- See Also:
-
METHOD_INVCUTOFF
public static final int METHOD_INVCUTOFFConstant for filter method = inv_cutoff- See Also:
-
METHOD_PERIODICAL
public static final int METHOD_PERIODICALConstant for filter method = periodical- See Also:
-
METHOD_INVPERIODICAL
public static final int METHOD_INVPERIODICALConstant for filter method = inv_periodical- See Also:
-
METHOD_MIRROR
public static final int METHOD_MIRRORConstant for filter method = mirror,inv_mirror- See Also:
-
METHOD_INVMIRROR
public static final int METHOD_INVMIRRORConstant for filter method = inv_mirror- See Also:
-
-
Constructor Details
-
Filter
public Filter()
-
-
Method Details
-
getType
public int getType()Get method for type- Returns:
- type
-
setType
Set method for type- Parameters:
type
-
-
getStart
public int getStart()Get method for start- Returns:
- start
-
setStart
public void setStart(int start) Set method for start- Parameters:
start
-
-
getEnd
public int getEnd()Get method for end- Returns:
- end
-
setEnd
public void setEnd(int end) Set method for end- Parameters:
end
-
-
isHiPass
public boolean isHiPass()Get method for hiPass- Returns:
- hiPass
-
setHiPass
public void setHiPass(boolean hiPass) Set method for hiPass- Parameters:
hiPass
-
-
getData
public double[] getData()Get method for data- Returns:
- data
-
setData
public void setData(double[] data) Set method for data- Parameters:
data
-
-