2014-08-17 14:42:10 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
2014-12-27 11:11:54 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Enumeration for target visibility.
|
|
|
|
*
|
|
|
|
*/
|
2014-08-17 14:42:10 +03:00
|
|
|
public enum Visibility {
|
|
|
|
|
2015-02-06 12:48:28 +02:00
|
|
|
VISIBLE("visible"), INVISIBLE("invisible"), UNDEFINED("");
|
2014-08-17 14:42:10 +03:00
|
|
|
|
2015-02-06 12:48:28 +02:00
|
|
|
private String title;
|
2014-10-08 13:42:12 +01:00
|
|
|
|
2015-02-06 12:48:28 +02:00
|
|
|
Visibility(String title) {
|
|
|
|
this.title = title;
|
|
|
|
}
|
2014-10-08 13:42:12 +01:00
|
|
|
|
2015-02-06 12:48:28 +02:00
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return title;
|
2014-08-17 14:42:10 +03:00
|
|
|
}
|
|
|
|
}
|