In Java Emun items can't be assigned a value like that, you'd need something like:
public enum Classname {
UIViewAutoresizingNone( 0 ),
UIViewAutoresizingFlexibleLeftMargin ( 1 << 0 ),
UIViewAutoresizingFlexibleWidth( 1 << 1 ),
UIViewAutoresizingFlexibleRightMargin( 1 << 2 ),
UIViewAutoresizingFlexibleTopMargin( 1 << 3 ),
UIViewAutoresizingFlexibleHeight( 1 << 4),
UIViewAutoresizingFlexibleBottomMargin( 1 << 5 ),
private final double value;
// constructor
private Classname( double v ) {
this.value = v;
}
public double value() {
return value;
}
}
Then you would a value like this in your other code:
double x = Classname.UIViewAutoresizingNone.value;
This is asssuming you need to be able to access the value from other code and you weren't just adding it to make sure each enum value was different. For the latter case in Java you don't need to do this at all. For example, this will work:
public enum Classname {
UIViewAutoresizingNone,
UIViewAutoresizingFlexibleLeftMargin,
UIViewAutoresizingFlexibleWidth,
....