Class MethodAliasInfo

java.lang.Object
org.apache.derby.catalog.types.MethodAliasInfo
All Implemented Interfaces:
Externalizable, Serializable, AliasInfo, Formatable, TypedFormat
Direct Known Subclasses:
RoutineAliasInfo

public class MethodAliasInfo extends Object implements AliasInfo, Formatable
Describe a method alias.
See Also:
  • Field Details

    • methodName

      private String methodName
      This class implements Formatable. That means that it can write itself to and from a formatted stream. If you add more fields to this class, make sure that you also write/read them with the writeExternal()/readExternal() methods. If, inbetween releases, you add more fields to this class, then you should bump the version number emitted by the getTypeFormatId() method.
  • Constructor Details

    • MethodAliasInfo

      public MethodAliasInfo()
      Public niladic constructor. Needed for Formatable interface to work.
    • MethodAliasInfo

      public MethodAliasInfo(String methodName)
      Create a MethodAliasInfo
      Parameters:
      methodName - The name of the method for the alias.
  • Method Details