Package pygar.documents
Class EncryptedFieldTable.Row
java.lang.Object
pygar.documents.EncryptedFieldTable.Row
- Enclosing class:
- EncryptedFieldTable
public static class EncryptedFieldTable.Row
extends java.lang.Object
The Row is the item stored in the table. The first column, "name", is
the index or key to the table. The use of the vmin and vmax fields is
described in the documentation for class ConcealReal
- See Also:
FieldCryptoXmlTxt0.ConcealReal
-
Field Summary
Fields Modifier and Type Field Description EncryptedFieldTable.EFTYPE
ftype
The type of the field in the Pygar partial encryption systemjava.lang.String
name
The name of the field.boolean
rangeSet
The following is true if vmin and vmax are set and false otherwisejava.lang.String
remark
An optional comment about the fielddouble
vmax
For floating point fields, specify the estimated maximum value of the field.double
vmin
For floating point fields, specify the estimated minimum value of the field. -
Constructor Summary
Constructors Constructor Description Row(java.lang.String name, EncryptedFieldTable.EFTYPE ftype, java.lang.String remark)
The Row contains two required fields: name and ftype.Row(java.lang.String name, EncryptedFieldTable.EFTYPE ftype, java.lang.String remark, double vmin, double vmax)
-
Method Summary
-
Field Details
-
name
public java.lang.String nameThe name of the field. If XML is used, the name of the XML tag -
ftype
The type of the field in the Pygar partial encryption system -
remark
public java.lang.String remarkAn optional comment about the field -
rangeSet
public boolean rangeSetThe following is true if vmin and vmax are set and false otherwise -
vmin
public double vminFor floating point fields, specify the estimated minimum value of the field. -
vmax
public double vmaxFor floating point fields, specify the estimated maximum value of the field.
-
-
Constructor Details
-
Row
The Row contains two required fields: name and ftype. The choiceList can be null and the remark can be an empty string.- Parameters:
name
- the partially qualified name of the XML fieldftype
- the type of encryption to be applied to the fieldremark
- an explanation of the field in the XML document
-
Row
public Row(java.lang.String name, EncryptedFieldTable.EFTYPE ftype, java.lang.String remark, double vmin, double vmax)
-