Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ailabs-software/b235bb549b927872144ce20c59a8130d to your computer and use it in GitHub Desktop.
Save ailabs-software/b235bb549b927872144ce20c59a8130d to your computer and use it in GitHub Desktop.
CardinalDirectionType.java
public enum CardinalDirectionType
{
North ("n-resize"),
NorthEast ("ne-resize"),
East ("e-resize"),
SouthEast ("se-resize"),
South ("s-resize"),
SouthWest ("sw-resize"),
West ("w-resize"),
NorthWest ("nw-resize");
public final String styleName;
private CardinalDirectionType(String styleName)
{
this.styleName = styleName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment