Package com.openstego.desktop.util.dwt
Class Filter
- java.lang.Object
-
- com.openstego.desktop.util.dwt.Filter
-
public class Filter extends Object
Object to store Filter data
-
-
Field Summary
Fields Modifier and Type Field Description static int
METHOD_CUTOFF
Constant for filter method = cutoffstatic int
METHOD_INVCUTOFF
Constant for filter method = inv_cutoffstatic int
METHOD_INVMIRROR
Constant for filter method = inv_mirrorstatic int
METHOD_INVPERIODICAL
Constant for filter method = inv_periodicalstatic int
METHOD_MIRROR
Constant for filter method = mirror,inv_mirrorstatic int
METHOD_PERIODICAL
Constant for filter method = periodicalstatic int
TYPE_ANTISYMM
Constant for filter type = AntiSymmstatic int
TYPE_NOSYMM
Constant for filter type = NoSymmstatic int
TYPE_SYMM
Constant for filter type = Symm
-
Constructor Summary
Constructors Constructor Description Filter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
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
setType(String type)
Set method for type
-
-
-
Field Detail
-
TYPE_NOSYMM
public static final int TYPE_NOSYMM
Constant for filter type = NoSymm- See Also:
- Constant Field Values
-
TYPE_SYMM
public static final int TYPE_SYMM
Constant for filter type = Symm- See Also:
- Constant Field Values
-
TYPE_ANTISYMM
public static final int TYPE_ANTISYMM
Constant for filter type = AntiSymm- See Also:
- Constant Field Values
-
METHOD_CUTOFF
public static final int METHOD_CUTOFF
Constant for filter method = cutoff- See Also:
- Constant Field Values
-
METHOD_INVCUTOFF
public static final int METHOD_INVCUTOFF
Constant for filter method = inv_cutoff- See Also:
- Constant Field Values
-
METHOD_PERIODICAL
public static final int METHOD_PERIODICAL
Constant for filter method = periodical- See Also:
- Constant Field Values
-
METHOD_INVPERIODICAL
public static final int METHOD_INVPERIODICAL
Constant for filter method = inv_periodical- See Also:
- Constant Field Values
-
METHOD_MIRROR
public static final int METHOD_MIRROR
Constant for filter method = mirror,inv_mirror- See Also:
- Constant Field Values
-
METHOD_INVMIRROR
public static final int METHOD_INVMIRROR
Constant for filter method = inv_mirror- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public int getType()
Get method for type- Returns:
- type
-
setType
public void setType(String type)
Set method for type- Parameters:
type
- Value to be set
-
getStart
public int getStart()
Get method for start- Returns:
- start
-
setStart
public void setStart(int start)
Set method for start- Parameters:
start
- Value to be set
-
getEnd
public int getEnd()
Get method for end- Returns:
- end
-
setEnd
public void setEnd(int end)
Set method for end- Parameters:
end
- Value to be set
-
isHiPass
public boolean isHiPass()
Get method for hiPass- Returns:
- hiPass
-
setHiPass
public void setHiPass(boolean hiPass)
Set method for hiPass- Parameters:
hiPass
- Value to be set
-
getData
public double[] getData()
Get method for data- Returns:
- data
-
setData
public void setData(double[] data)
Set method for data- Parameters:
data
- Value to be set
-
-