Created
June 6, 2017 01:01
-
-
Save ailabs-software/b235bb549b927872144ce20c59a8130d to your computer and use it in GitHub Desktop.
CardinalDirectionType.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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