Tagged Questions
The enumset tag has no wiki summary.
4
votes
5answers
155 views
Converting from EnumSet<A> to Set<B> when A inherits from B
The title pretty much explains the question. I have an interface method:
Set<Field> getFieldSet()
and I have a class, User which looks something like this
class User {
enum Fields ...
3
votes
1answer
44 views
Dealing with enums implementing common interface (iterate, deserialize)
I have an Android application that loads a data from web sources and displays it. I organized each API method those sources support in enum constants split per source. Let's say, SourceA provides ...
3
votes
1answer
344 views
Combining Java EnumSets
If I have an Enum, I can create an EnumSet using the handy EnumSet class
enum Suit { CLUBS, DIAMONDS, HEARTS, SPADES }
EnumSet<Suit> reds = EnumSet.of(Suit.HEARTS, Suit.DIAMONDS);
...
3
votes
3answers
2k views
convert a two Byte bit mask into a EnumSet
I am reading a binary file that has values stored in bit masks, both 1 Byte bit masks and 2 Byte bit masks. Each bit in the masks act as a switch that indicates where an Event has transpired.
...
2
votes
3answers
306 views
Best practice of using flags in java method
What's the best practice for specifying flags in a java method?
I've seen SWT using int as bitfields, like:
(example partially from Effective Java, 2nd Ed. page 159):
public class Text {
public ...
1
vote
3answers
383 views
java enum with enum in constructor
Is it possible to let a enum in java take a set of enums as as argument? If yes, then how do I implement it?
When using this I whant to be able to say something like: Take a ...
1
vote
1answer
291 views
Mapping EnumSet in Hibernate
How to store EnumSet in the DB (using Hibernate)?
@Entity
public class A
{
public static enum SOME_ENUM { A, B, C };
private EnumSet<SOME_ENUM> myEnumSet = EnumSet.of(SOME_ENUM.A, ...
1
vote
2answers
56 views
How can I mimic a multi-tiered menuing system using Java enums?
I need to accomplish the following (this is a simplified version):
enum Animals{
enum Cats{tabby("some value"), siamese("some value")},
enum Dogs{poodle("some value"), dachsund("some value")},
...
0
votes
1answer
100 views
How can I combine 2 bits in a single field using an EnumSet?
Given a binary string coded on 1 byte, is it possible to map several of that byte's bits into an enum value ?
e.g. : suppose I want to cut my field into this :
bit1 and bit2 = field1
bit3 = field2
...
0
votes
1answer
86 views
Problem with constructor of a generic class using enumset
I want to develope a class in java. The problem is that the constructor doesn't work
The class is this:
public class EnumSetPlus<E extends Enum<E>> {
//Map
private EnumSet<E> ...
0
votes
4answers
102 views
java enums ordering
Im using java enums to define how to render a modal window with buttons (Vaadin handles the rendering). My problem is that when I run the gui my buttons comes in a randomized order each time. So my ...
0
votes
3answers
480 views
Implementing a bitfield using java enums
I maintain a large document archive and I often use bit fields to record the status of my documents during processing or when validating them. My legacy code simply uses static int constants such as:
...
0
votes
1answer
165 views
Enumset wrapper for AbstractActions
I'd like to load a series of Swing Actions into a container at runtime and access them by a constant name as is possible with an Enum. The purpose of this would be to both restrict the Actions ...
0
votes
1answer
767 views
How to map EnumSet (or List of Enums) in an entity using JPA2
I have entity Person:
@Entity<br>
@Table(schema="", name="PERSON")<br>
public class Person {<br>
List`<`PaymentType`>` paymentTypesList;<br>
<br>
//some other ...