-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
55 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
20 changes: 13 additions & 7 deletions
20
visual-java/src/main/java/com/saucelabs/visual/model/DiffingOption.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
package com.saucelabs.visual.model; | ||
|
||
public enum DiffingOption { | ||
Content, | ||
Dimensions, | ||
Position, | ||
Structure, | ||
Style, | ||
Visual, | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
public class DiffingOption { | ||
public static final String Content = "content"; | ||
public static final String Dimensions = "dimensions"; | ||
public static final String Position = "position"; | ||
public static final String Structure = "structure"; | ||
public static final String Style = "style"; | ||
public static final String Visual = "visual"; | ||
|
||
public static final List<String> DiffingOptionValues = | ||
Arrays.asList(Content, Dimensions, Position, Structure, Style, Visual); | ||
} |
This file contains 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