25 package org.direct_bt;
 
   53         Type(
final int v) { value = (byte)v; }
 
   64     public void set(
final Type bit) { 
mask = (byte) ( 
mask | bit.value ); }
 
   69         final StringBuilder out = 
new StringBuilder();
 
   74             out.append(
Type.
Read.name()); count++;
 
   77             if( 0 < count ) { out.append(
", "); }
 
   81             if( 0 < count ) { out.append(
", "); }
 
   85             if( 0 < count ) { out.append(
", "); }
 
   89             if( 0 < count ) { out.append(
", "); }
 
   93             if( 0 < count ) { out.append(
", "); }
 
   97             if( 0 < count ) { out.append(
", "); }
 
  104         return out.toString();