aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/rsacomb/RSASuffix.scala
blob: f15d01becee9f0d43b745ed3141a478126b8f169 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package rsacomb

sealed trait RSASuffix {
  def getSuffix: String;
}

object RSASuffix {

  case object None extends RSASuffix {
    def getSuffix: String = ""
  }

  case object Forward extends RSASuffix {
    def getSuffix: String = "_f"
  }

  case object Backward extends RSASuffix {
    def getSuffix: String = "_b"
  }
}