Serialized Form


Package net.sourceforge.fuzzyservices.beans

Class net.sourceforge.fuzzyservices.beans.Antecedent extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

linguisticVariableName

String linguisticVariableName
The name of a linguistic variable for this antecedent.


linguisticTermName

String linguisticTermName
The name of a linguistic term which is part of the linguistic variable.


compatibilityOperator

Operator compatibilityOperator
The operator for computing the compatibility between a fact and this antecedent.

Class net.sourceforge.fuzzyservices.beans.Consequent extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

linguisticVariableName

String linguisticVariableName
The name of a linguistic variable belongs to the consequent.


linguisticTermName

String linguisticTermName
The name of a linguistic term which is part of the linguistic variable.

Class net.sourceforge.fuzzyservices.beans.Defuzzificator extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

type

byte type
The defuzzificator type. Default is TYPE_CENTER_OF_AREA.

Class net.sourceforge.fuzzyservices.beans.Fact extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


linguisticVariableName

String linguisticVariableName
The name of a linguistic variable as reference for this fact.


value

FuzzySet value
The value is stored as a fuzzy set.

Class net.sourceforge.fuzzyservices.beans.FactArrayEditorPanel extends JPanel implements Serializable

Serialized Fields

factListEditorPanel

net.sourceforge.fuzzyservices.swing.FactListEditorPanel factListEditorPanel

factBaseModel

net.sourceforge.fuzzyservices.swing.FactBaseModel factBaseModel

Class net.sourceforge.fuzzyservices.beans.FactBase extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


name

String name
Name property.


facts

List<E> facts
Facts property. A fact base contains an array of facts. It is internal an array list because of JPA support.

Class net.sourceforge.fuzzyservices.beans.FuzzyCalculator extends Object implements Serializable

serialVersionUID: 1L

Class net.sourceforge.fuzzyservices.beans.FuzzyController extends Object implements Serializable

serialVersionUID: 1L

Class net.sourceforge.fuzzyservices.beans.FuzzyInterval extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


membershipFunction

MembershipFunction membershipFunction
The membership function property.

Class net.sourceforge.fuzzyservices.beans.FuzzyLRInterval extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


membershipFunction

MembershipFunction membershipFunction
The membership function property.

Class net.sourceforge.fuzzyservices.beans.FuzzyLRNumber extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


membershipFunction

MembershipFunction membershipFunction
The membership function property.

Class net.sourceforge.fuzzyservices.beans.FuzzyNumber extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


membershipFunction

MembershipFunction membershipFunction
The membership function property.

Class net.sourceforge.fuzzyservices.beans.FuzzySet extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


membershipFunction

MembershipFunction membershipFunction
The membership function property.

Class net.sourceforge.fuzzyservices.beans.FuzzySetEditorPanel extends JPanel implements Serializable

Serialized Fields

membershipFunctionPanel

net.sourceforge.fuzzyservices.swing.MembershipFunctionPanel membershipFunctionPanel

membershipFunctionModel

net.sourceforge.fuzzyservices.swing.MembershipFunctionModel membershipFunctionModel

Class net.sourceforge.fuzzyservices.beans.LinguisticTerm extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


name

String name
Name property.


fuzzySet

FuzzySet fuzzySet
Fuzzy set property.

Class net.sourceforge.fuzzyservices.beans.LinguisticTermArrayEditorPanel extends JPanel implements Serializable

Serialized Fields

linguisticVariablePanel

net.sourceforge.fuzzyservices.swing.LinguisticVariablePanel linguisticVariablePanel

linguisticVariableTabbedPane

net.sourceforge.fuzzyservices.swing.LinguisticVariableTabbedPane linguisticVariableTabbedPane

linguisticVariableModel

net.sourceforge.fuzzyservices.swing.LinguisticVariableModel linguisticVariableModel

Class net.sourceforge.fuzzyservices.beans.LinguisticVariable extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


name

String name
Name property.


linguisticTerms

List<E> linguisticTerms
A linguistic variable consists of an array of linguistic terms. It is internal an array list because of JPA support.

Class net.sourceforge.fuzzyservices.beans.MembershipFunction extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


points

List<E> points
Set of points specifying the mathematical membership function.

Class net.sourceforge.fuzzyservices.beans.MembershipFunctionEditorPanel extends JPanel implements Serializable

Serialized Fields

membershipFunctionPanel

net.sourceforge.fuzzyservices.swing.MembershipFunctionPanel membershipFunctionPanel

membershipFunctionTableEditorPanel

net.sourceforge.fuzzyservices.swing.MembershipFunctionTableEditorPanel membershipFunctionTableEditorPanel

membershipFunctionModel

net.sourceforge.fuzzyservices.swing.MembershipFunctionModel membershipFunctionModel

Class net.sourceforge.fuzzyservices.beans.MembershipFunctionPoint extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

x

float x
The x value.


degreeOfMembership

float degreeOfMembership
The degree of membership.

Class net.sourceforge.fuzzyservices.beans.Operator extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

type

String type
The operator type is characterized by his name.

See Also:
net.sourceforge.fuzzyservices.core.operator.OperatorManager#getOperator

parameter

float parameter
Depending on selected type the operator has got a parameter.

Class net.sourceforge.fuzzyservices.beans.OperatorEditorPanel extends JPanel implements Serializable

Serialized Fields

operatorPanel

net.sourceforge.fuzzyservices.swing.OperatorPanel operatorPanel

operatorModel

net.sourceforge.fuzzyservices.swing.OperatorModel operatorModel

Class net.sourceforge.fuzzyservices.beans.Rule extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


antecedents

List<E> antecedents
Antecedents property as if-clause of this rule. It is internal an array list because of JPA support.


consequents

List<E> consequents
Consequents property as then-clause of this rule. It is internal an array list because of JPA support.


aggregationOperator

Operator aggregationOperator
The aggregation operator property.


certaintyOperator

Operator certaintyOperator
The certainty operator property.


inferenceOperator

Operator inferenceOperator
The inference operator property.


certainty

float certainty
The certainty property. It is a real number in the area of [0,1]. The default is 0.

Class net.sourceforge.fuzzyservices.beans.RuleArrayEditorPanel extends JPanel implements Serializable

Serialized Fields

ruleListEditorPanel

net.sourceforge.fuzzyservices.swing.RuleListEditorPanel ruleListEditorPanel

ruleBaseModel

net.sourceforge.fuzzyservices.swing.RuleBaseModel ruleBaseModel

Class net.sourceforge.fuzzyservices.beans.RuleBase extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

int id
Unique technical identifier. Only for persistence is used.


name

String name
Name property.


rules

List<E> rules
Rules property. A rule base contains an array of rules. It is internal an array list because of JPA support.


accumulationOperator

Operator accumulationOperator
The operator for accumulating the matching results.

Class net.sourceforge.fuzzyservices.beans.SimpleAttributePanel extends JPanel implements Serializable

Serialized Fields

jTextField1

JTextField jTextField1

simpleAttribute1

SimpleAttribute simpleAttribute1

simpleBean1

SimpleBean simpleBean1

Class net.sourceforge.fuzzyservices.beans.TestPanel extends JPanel implements Serializable



Copyright © 2007-2012 Fuzzy Services. All Rights Reserved.