Interface NameFormattingStrategy

All Known Implementing Classes:
DefaultNameFormattingStrategy, LowercaseNameFormattingStrategy

public interface NameFormattingStrategy
NameFormattingStrategy that can be used in the NamingContext in the OData VDM generator. Implement this interface to create a custom NameFormattingStrategy and set in the NamingContext's constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the input string formatted according to the rules of the respective implementation of this interface.
  • Method Details

    • applyFormat

      @Nonnull String applyFormat(@Nonnull String input)
      Returns the input string formatted according to the rules of the respective implementation of this interface.
      Parameters:
      input - The string that should be formatted.
      Returns:
      A formatted string.