Package com.openstego.desktop.util.dwt
Class FilterGH
- java.lang.Object
-
- com.openstego.desktop.util.dwt.FilterGH
-
public class FilterGH extends Object
Object to store FilterGH data
-
-
Field Summary
Fields Modifier and Type Field Description static int
TYPE_BIORTHOGONAL
Constant for filterGH type = Bi-orthogonalstatic int
TYPE_ORTHOGONAL
Constant for filterGH type = Orthogonalstatic int
TYPE_OTHER
Constant for filterGH type = Other
-
Constructor Summary
Constructors Constructor Description FilterGH()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Filter
getG()
Get method for filter gFilter
getGi()
Get method for filter giFilter
getH()
Get method for filter hFilter
getHi()
Get method for filter hiInteger
getId()
Get method for idString
getName()
Get method for nameint
getType()
Get method for typevoid
setG(Filter g)
Set method for filter gvoid
setGi(Filter gi)
Set method for filter givoid
setH(Filter h)
Set method for filter hvoid
setHi(Filter hi)
Set method for filter hivoid
setId(Integer id)
Set method for idvoid
setName(String name)
Set method for namevoid
setType(String type)
Set method for type
-
-
-
Field Detail
-
TYPE_ORTHOGONAL
public static final int TYPE_ORTHOGONAL
Constant for filterGH type = Orthogonal- See Also:
- Constant Field Values
-
TYPE_BIORTHOGONAL
public static final int TYPE_BIORTHOGONAL
Constant for filterGH type = Bi-orthogonal- See Also:
- Constant Field Values
-
TYPE_OTHER
public static final int TYPE_OTHER
Constant for filterGH type = Other- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public Integer getId()
Get method for id- Returns:
- id
-
setId
public void setId(Integer id)
Set method for id- Parameters:
id
- Value to be set
-
getName
public String getName()
Get method for name- Returns:
- name
-
setName
public void setName(String name)
Set method for name- Parameters:
name
- Value to be set
-
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
-
getG
public Filter getG()
Get method for filter g- Returns:
- filter g
-
setG
public void setG(Filter g)
Set method for filter g- Parameters:
g
- Value to be set
-
getH
public Filter getH()
Get method for filter h- Returns:
- filter h
-
setH
public void setH(Filter h)
Set method for filter h- Parameters:
h
- Value to be set
-
getGi
public Filter getGi()
Get method for filter gi- Returns:
- filter gi
-
setGi
public void setGi(Filter gi)
Set method for filter gi- Parameters:
gi
- Value to be set
-
getHi
public Filter getHi()
Get method for filter hi- Returns:
- filter hi
-
setHi
public void setHi(Filter hi)
Set method for filter hi- Parameters:
hi
- Value to be set
-
-