All Superinterfaces:
EFactory, EModelElement, EObject, Notifier
All Known Implementing Classes:
MarkovEntityFactoryImpl

public interface MarkovEntityFactory extends EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.
See Also:
Generated class or method.
  • Field Details

    • eINSTANCE

      static final MarkovEntityFactory eINSTANCE
      The singleton instance of the factory.
      Generated class or method.
  • Method Details

    • createMarkovModel

      <A, R> MarkovModel<A,R> createMarkovModel()
      Returns a new object of class 'Markov Model'.
      Returns:
      a new object of class 'Markov Model'.
      Generated class or method.
    • createState

      State createState()
      Returns a new object of class 'State'.
      Returns:
      a new object of class 'State'.
      Generated class or method.
    • createObservation

      Observation createObservation()
      Returns a new object of class 'Observation'.
      Returns:
      a new object of class 'Observation'.
      Generated class or method.
    • createTransition

      <A> Transition<A> createTransition()
      Returns a new object of class 'Transition'.
      Returns:
      a new object of class 'Transition'.
      Generated class or method.
    • createReward

      <R> Reward<R> createReward()
      Returns a new object of class 'Reward'.
      Returns:
      a new object of class 'Reward'.
      Generated class or method.
    • createAction

      <A> Action<A> createAction()
      Returns a new object of class 'Action'.
      Returns:
      a new object of class 'Action'.
      Generated class or method.
    • getMarkovEntityPackage

      MarkovEntityPackage getMarkovEntityPackage()
      Returns the package supported by this factory.
      Returns:
      the package supported by this factory.
      Generated class or method.