package com.perforce.config;
public enum CaseSensitivity {
NONE(0), FIRST(1), LOWER(2), UPPER(3);
final int id;
CaseSensitivity(int i) {
id = i;
}
public int getValue() {
return id;
}
public static Object parse(String property) {
if (property != null) {
for (CaseSensitivity b : CaseSensitivity.values()) {
if (property.equalsIgnoreCase(b.name())) {
return b;
}
}
}
return null;
}
}
# |
Change |
User |
Description |
Committed |
|
#1
|
13876 |
Paul Allen |
Rename/move file(s) |
|
|
//guest/paul_allen/p4convert-maven/src/com/perforce/config/CaseSensitivity.java |
#1
|
13873 |
Paul Allen |
Branching using p4convert-maven |
|
|
//guest/perforce_software/p4convert/src/com/perforce/config/CaseSensitivity.java |
#1
|
9807 |
Paul Allen |
Initial import of p4-convert (from change 894340) |
|
|