Subversion Repositories SmartDukaan

Rev

Rev 32246 | Rev 32311 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32246 Rev 32300
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.warehouse;
1
package com.spice.profitmandi.dao.entity.warehouse;
2
 
2
 
3
public enum DebitNoteType {
3
public enum DebitNoteType {
4
 
4
 
-
 
5
    priceMismatch("Price Mismatch"), qtyMismatch("Qty Mismatch");
-
 
6
 
5
    priceMismatch, qtyMismatch
7
    private final String value;
-
 
8
 
-
 
9
    private DebitNoteType(String value) {
-
 
10
        this.value = value;
-
 
11
    }
-
 
12
 
-
 
13
    public String getValue() {
-
 
14
        return value;
-
 
15
    }
6
 
16
 
7
}
17
}